Sha256: 106f72f092c59758f1e86300439614f46c39d842b3de49e806e2789714e451f9

Contents?: true

Size: 1.38 KB

Versions: 1

Compression:

Stored size: 1.38 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'amun/version'

Gem::Specification.new do |spec|
  spec.name          = "amun"
  spec.version       = Amun::VERSION
  spec.authors       = ["Emad Elsaid"]
  spec.email         = ["blazeeboy@gmail.com"]

  spec.summary       = "Emacs like editor, with Ruby core instead of ELisp"
  spec.description   = "A CLI editor built to have an Emacs similar development environment, with ruby in the heart of it instead of Elisp, that will make developing plugins and extensions faster and more enjoyable, this editor is kept to the minimum, anything that could be written as an pluging will be found as a plugin."
  spec.homepage      = "http://www.github.com/blazeeboy/amun"
  spec.license       = "MIT"

  spec.files         = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_dependency "curses", "~> 1.2"
  spec.add_development_dependency "bundler", "~> 1.14"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "minitest", "~> 5.0"
  spec.add_development_dependency "pry"
  spec.add_development_dependency "guard"
  spec.add_development_dependency "guard-minitest"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
amun-0.1.2 amun.gemspec