From 2ce875dfbdebeca33c32dcdc50bf9932dc2aa857 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Mendon=C3=A7a=20Fran=C3=A7a?= Date: Mon, 8 Jul 2013 14:51:19 -0300 Subject: Add license to the gemspec --- actionmailer/actionmailer.gemspec | 3 +++ actionpack/actionpack.gemspec | 3 +++ activemodel/activemodel.gemspec | 2 ++ activerecord/activerecord.gemspec | 2 ++ activeresource/activeresource.gemspec | 2 ++ activesupport/activesupport.gemspec | 2 ++ rails.gemspec | 2 ++ railties/railties.gemspec | 3 +++ 8 files changed, 19 insertions(+) diff --git a/actionmailer/actionmailer.gemspec b/actionmailer/actionmailer.gemspec index 8b2e754fde..20a2d0d510 100644 --- a/actionmailer/actionmailer.gemspec +++ b/actionmailer/actionmailer.gemspec @@ -6,6 +6,9 @@ Gem::Specification.new do |s| s.version = version 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.license = 'MIT' + s.required_ruby_version = '>= 1.8.7' s.author = 'David Heinemeier Hansson' diff --git a/actionpack/actionpack.gemspec b/actionpack/actionpack.gemspec index f01842575e..cd906c0cdc 100644 --- a/actionpack/actionpack.gemspec +++ b/actionpack/actionpack.gemspec @@ -6,6 +6,9 @@ Gem::Specification.new do |s| s.version = version 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.license = 'MIT' + s.required_ruby_version = '>= 1.8.7' s.author = 'David Heinemeier Hansson' diff --git a/activemodel/activemodel.gemspec b/activemodel/activemodel.gemspec index 283c3ee324..a4f0836282 100644 --- a/activemodel/activemodel.gemspec +++ b/activemodel/activemodel.gemspec @@ -7,6 +7,8 @@ Gem::Specification.new do |s| s.summary = 'A toolkit for building modeling frameworks (part of Rails).' s.description = 'A toolkit for building modeling frameworks like Active Record and Active Resource. Rich support for attributes, callbacks, validations, observers, serialization, internationalization, and testing.' + s.license = 'MIT' + s.required_ruby_version = '>= 1.8.7' s.author = 'David Heinemeier Hansson' diff --git a/activerecord/activerecord.gemspec b/activerecord/activerecord.gemspec index 384dcd85b8..7e93d8afae 100644 --- a/activerecord/activerecord.gemspec +++ b/activerecord/activerecord.gemspec @@ -7,6 +7,8 @@ Gem::Specification.new do |s| s.summary = 'Object-relational mapper framework (part of Rails).' 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.license = 'MIT' + s.required_ruby_version = '>= 1.8.7' s.author = 'David Heinemeier Hansson' diff --git a/activeresource/activeresource.gemspec b/activeresource/activeresource.gemspec index f5c26f38df..ea3a1b436a 100644 --- a/activeresource/activeresource.gemspec +++ b/activeresource/activeresource.gemspec @@ -7,6 +7,8 @@ Gem::Specification.new do |s| s.summary = 'REST modeling framework (part of Rails).' s.description = 'REST on Rails. Wrap your RESTful web app with Ruby classes and work with them like Active Record models.' + s.license = 'MIT' + s.required_ruby_version = '>= 1.8.7' s.author = 'David Heinemeier Hansson' diff --git a/activesupport/activesupport.gemspec b/activesupport/activesupport.gemspec index fb3575b865..e131ca7d68 100644 --- a/activesupport/activesupport.gemspec +++ b/activesupport/activesupport.gemspec @@ -7,6 +7,8 @@ Gem::Specification.new do |s| s.summary = 'A toolkit of support libraries and Ruby core extensions extracted from the Rails framework.' 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.license = 'MIT' + s.required_ruby_version = '>= 1.8.7' s.author = 'David Heinemeier Hansson' diff --git a/rails.gemspec b/rails.gemspec index 3377b4e175..a5da04218d 100644 --- a/rails.gemspec +++ b/rails.gemspec @@ -7,6 +7,8 @@ Gem::Specification.new do |s| s.summary = 'Full-stack web application framework.' s.description = 'Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.' + s.license = 'MIT' + s.required_ruby_version = '>= 1.8.7' s.required_rubygems_version = ">= 1.3.6" diff --git a/railties/railties.gemspec b/railties/railties.gemspec index 6101b8647a..fdc4d2d748 100644 --- a/railties/railties.gemspec +++ b/railties/railties.gemspec @@ -6,6 +6,9 @@ Gem::Specification.new do |s| s.version = version s.summary = 'Tools for creating, working with, and running Rails applications.' s.description = 'Rails internals: application bootup, plugins, generators, and rake tasks.' + + s.license = 'MIT' + s.required_ruby_version = '>= 1.8.7' s.author = 'David Heinemeier Hansson' -- cgit v1.2.3