Skip to content

Commit

Permalink
add license to gemspec (and consequently the gem)
Browse files Browse the repository at this point in the history
  • Loading branch information
dchelimsky committed Dec 2, 2011
1 parent e826bc6 commit 9ce037e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions rspec.gemspec
Expand Up @@ -7,16 +7,17 @@ Gem::Specification.new do |s|
s.name = "rspec"
s.version = RSpec::Version::STRING
s.platform = Gem::Platform::RUBY
s.license = "MIT"
s.authors = ["Steven Baker", "David Chelimsky"]
s.email = "rspec-users@rubyforge.org"
s.homepage = "http://github.com/rspec"
s.summary = "rspec-#{RSpec::Version::STRING}"
s.description = "BDD for Ruby"

s.rubygems_version = "1.3.7"
s.rubyforge_project = "rspec"

s.files = `git ls-files`.split("\n")
s.files = `git ls-files -- lib/*`.split("\n")
s.files += ["License.txt"]
s.test_files = `git ls-files -- {spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.extra_rdoc_files = [ "README.markdown" ]
Expand Down

0 comments on commit 9ce037e

Please sign in to comment.