Sha256: 57fb28b0791568aca4ea92022e3e2be181aef2d7203525a6573601d81b1c27a2
Contents?: true
Size: 1.12 KB
Versions: 4
Compression:
Stored size: 1.12 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "appraisal/version" Gem::Specification.new do |s| s.name = 'appraisal' s.version = Appraisal::VERSION.dup s.platform = Gem::Platform::RUBY s.authors = ['Joe Ferris', 'Prem Sichanugrist'] s.email = ['jferris@thoughtbot.com', 'prem@thoughtbot.com'] s.homepage = 'http://github.com/thoughtbot/appraisal' s.summary = 'Find out what your Ruby gems are worth' s.description = 'Appraisal integrates with bundler and rake to test your library against different versions of dependencies in repeatable scenarios called "appraisals."' s.license = 'MIT' 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_runtime_dependency('rake') s.add_runtime_dependency('bundler') s.add_runtime_dependency('thor', '>= 0.14.0') s.add_development_dependency("activesupport", ">= 3.2.21") s.add_development_dependency('rspec', '~> 3.0') end
Version data entries
4 entries across 4 versions & 2 rubygems
Version | Path |
---|---|
enju_leaf-1.2.1 | vendor/bundle/ruby/2.3/gems/appraisal-2.2.0/appraisal.gemspec |
appraisal-2.2.0 | appraisal.gemspec |
appraisal-2.1.0 | appraisal.gemspec |
appraisal-2.0.2 | appraisal.gemspec |