# -*- encoding: utf-8 -*- lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'remedy/version' Gem::Specification.new do |gem| gem.name = "remedy" gem.version = Remedy::VERSION gem.authors = ["Anthony M. Cook"] gem.email = ["github@anthonymcook.com"] gem.description = %q{Pure Ruby console interaction library in the vein of Curses with MVC-style seperation of concerns.} gem.summary = %q{Pure Ruby Console Interaction Library} gem.licenses = ['MIT'] gem.homepage = "http://github.com/acook/remedy" gem.files = `git ls-files`.split($/) gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.require_paths = ["lib"] gem.add_development_dependency 'rspec' end