outrightmental/renote

View on GitHub
renote.gemspec

Summary

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

Gem::Specification.new do |spec|

  spec.name          = 'renote'
  spec.version       = Renote::VERSION
  spec.authors       = ['Nick Kaye']
  spec.email         = ['nick.c.kaye@gmail.com']
  spec.summary       = %q{Renote is a CLI for note-taking.}
  spec.description   = %q{Use Renote to append keyboard input to a file, until ESCAPE is pressed.}
  spec.homepage      = 'https://github.com/outrightmental/renote'
  spec.license       = 'MIT'

  spec.files         = `git ls-files -z`.split("\x0")
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ['lib']

  spec.add_development_dependency 'bundler', '~> 1.6'
  spec.add_development_dependency 'rake', '~> 10.0'
  spec.add_development_dependency 'coveralls', '~> 0.7'
  spec.add_development_dependency 'rspec', '~> 3.1'

  spec.add_dependency 'require_all', '~> 1.3'
  spec.add_dependency 'state_machine', '~> 1.2'
  spec.add_dependency 'thor', '~> 0.19'

  spec.required_ruby_version = '>= 1.9.3'

end