commit ebff49dc8379003772d6c465c80ec68a64f68725
parent e9e134d9b13eec7d6ed27080d7d069f43502ff01
Author: Iqbal Ansari <iqbalansari02@yahoo.com>
Date: Wed, 28 Oct 2015 07:46:49 +0530
Add Cask, gitignore
Diffstat:
3 files changed, 46 insertions(+), 1 deletion(-)
diff --git a/.gitignore b/.gitignore
@@ -0,0 +1,6 @@
+# -*- mode: gitignore; -*-
+# Compiled files
+*.elc
+
+# cask packages
+.cask/
diff --git a/Cask b/Cask
@@ -0,0 +1,11 @@
+(source gnu)
+(source melpa)
+
+(package-file "emojify.el")
+(files "*.el" ("images" "images/*"))
+
+(development
+ (depends-on "f")
+ (depends-on "ecukes")
+ (depends-on "ert-runner")
+ (depends-on "el-mock"))
diff --git a/emojify.el b/emojify.el
@@ -1,10 +1,35 @@
-;; -*- lexical-binding: t; -*-
+;;; emojify.el --- Display emojis in Emacs -*- lexical-binding: t; -*-
+
+;; Copyright (C) 2015 Iqbal Ansari
+
+;; Author: Iqbal Ansari <iqbalansari02@yahoo.com>
+;; Keywords: multimedia, convenience
+;; Version: 0.1
+
+;; This program is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
;; Another plugin to waste time in Emacs :sweat: :worried: :unamused: :p :) :p
;;
;; TODO: Custom images
;; Benchmark
;; Cleanup
+
+;;; Code:
+
(require 'json)
(require 'subr-x)
@@ -280,3 +305,6 @@ BEG and END are the beginning and end of the region respectively"
(define-globalized-minor-mode global-emojify-mode
emojify-mode emojify-turn-on-emojify-mode
:init-value nil)
+
+(provide 'emojify)
+;;; emojify.el ends here