1
0
Fork 0
mirror of https://github.com/pry/pry-rails.git synced 2022-11-09 12:36:03 -05:00
pry--pry-rails/pry-rails.gemspec
Mike MacDonald 17d1699abb add license info to gemspec
Automated tools look here, so it's best to have this info.
2013-02-19 15:21:17 -05:00

26 lines
898 B
Ruby

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "pry-rails/version"
Gem::Specification.new do |s|
s.name = "pry-rails"
s.version = PryRails::VERSION
s.authors = ["Robin Wenglewski"]
s.email = ["robin@wenglewski.de"]
s.homepage = "https://github.com/rweng/pry-rails"
s.summary = %q{Use Pry as your rails console}
s.license = "MIT"
# s.description = %q{TODO: Write a gem description}
# s.rubyforge_project = "pry-rails"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_dependency "pry", ">= 0.9.10"
s.add_development_dependency "appraisal"
s.add_development_dependency "minitest"
s.add_development_dependency "rr"
end