Skip to content

Commit

Permalink
Add license field to gemspecs, by Matt Griffin
Browse files Browse the repository at this point in the history
  • Loading branch information
betamatt authored and grosser committed May 23, 2012
1 parent c1487f6 commit 6c7b250
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions actionmailer/actionmailer.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Gem::Specification.new do |s|
s.summary = 'Email composition, delivery, and receiving framework (part of Rails).'
s.description = 'Email on Rails. Compose, deliver, receive, and test emails using the familiar controller/view pattern. First-class support for multipart email and attachments.'
s.required_ruby_version = '>= 1.9.3'
s.license = 'MIT'

s.author = 'David Heinemeier Hansson'
s.email = '[email protected]'
Expand Down
1 change: 1 addition & 0 deletions actionpack/actionpack.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Gem::Specification.new do |s|
s.summary = 'Web-flow and rendering framework putting the VC in MVC (part of Rails).'
s.description = 'Web apps on Rails. Simple, battle-tested conventions for building and testing MVC web applications. Works with any Rack-compatible server.'
s.required_ruby_version = '>= 1.9.3'
s.license = 'MIT'

s.author = 'David Heinemeier Hansson'
s.email = '[email protected]'
Expand Down
1 change: 1 addition & 0 deletions activemodel/activemodel.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Gem::Specification.new do |s|
s.description = 'A toolkit for building modeling frameworks like Active Record. Rich support for attributes, callbacks, validations, observers, serialization, internationalization, and testing.'

s.required_ruby_version = '>= 1.9.3'
s.license = 'MIT'

s.author = 'David Heinemeier Hansson'
s.email = '[email protected]'
Expand Down
1 change: 1 addition & 0 deletions activerecord/activerecord.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Gem::Specification.new do |s|
s.description = 'Databases on Rails. Build a persistent domain model by mapping database tables to Ruby classes. Strong conventions for associations, validations, aggregations, migrations, and testing come baked-in.'

s.required_ruby_version = '>= 1.9.3'
s.license = 'MIT'

s.author = 'David Heinemeier Hansson'
s.email = '[email protected]'
Expand Down
1 change: 1 addition & 0 deletions activesupport/activesupport.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Gem::Specification.new do |s|
s.description = 'A toolkit of support libraries and Ruby core extensions extracted from the Rails framework. Rich support for multibyte strings, internationalization, time zones, and testing.'

s.required_ruby_version = '>= 1.9.3'
s.license = 'MIT'

s.author = 'David Heinemeier Hansson'
s.email = '[email protected]'
Expand Down
1 change: 1 addition & 0 deletions rails.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Gem::Specification.new do |s|

s.required_ruby_version = '>= 1.9.3'
s.required_rubygems_version = ">= 1.8.11"
s.license = 'MIT'

s.author = 'David Heinemeier Hansson'
s.email = '[email protected]'
Expand Down
1 change: 1 addition & 0 deletions railties/railties.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Gem::Specification.new do |s|
s.summary = 'Tools for creating, working with, and running Rails applications.'
s.description = 'Rails internals: application bootup, plugins, generators, and rake tasks.'
s.required_ruby_version = '>= 1.9.3'
s.license = 'MIT'

s.author = 'David Heinemeier Hansson'
s.email = '[email protected]'
Expand Down

0 comments on commit 6c7b250

Please sign in to comment.