aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2012-11-08 16:18:09 -0800
committerRafael Mendonça França <rafaelmfranca@gmail.com>2012-11-08 16:18:09 -0800
commitfd16cb3f596bad1bf0ecab9916c009bd7957e401 (patch)
tree8b3d2e0e1c1592ca4db23d40c72462944810080e /activesupport
parent484283968e8ad7dc8a7864b65603671bec4f2850 (diff)
parenta96a1769302c2974c8e0faf66089c8101807715d (diff)
downloadrails-fd16cb3f596bad1bf0ecab9916c009bd7957e401.tar.gz
rails-fd16cb3f596bad1bf0ecab9916c009bd7957e401.tar.bz2
rails-fd16cb3f596bad1bf0ecab9916c009bd7957e401.zip
Merge pull request #8147 from gbchaosmaster/gemspec
Reformat gemspec
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/activesupport.gemspec19
1 files changed, 10 insertions, 9 deletions
diff --git a/activesupport/activesupport.gemspec b/activesupport/activesupport.gemspec
index 30f4ded005..a4216d2cb4 100644
--- a/activesupport/activesupport.gemspec
+++ b/activesupport/activesupport.gemspec
@@ -1,4 +1,4 @@
-version = File.read(File.expand_path("../../RAILS_VERSION", __FILE__)).strip
+version = File.read(File.expand_path('../../RAILS_VERSION', __FILE__)).strip
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
@@ -8,19 +8,20 @@ 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 = 'david@loudthinking.com'
- s.homepage = 'http://www.rubyonrails.org'
+ s.license = 'MIT'
+
+ s.author = 'David Heinemeier Hansson'
+ s.email = 'david@loudthinking.com'
+ s.homepage = 'http://www.rubyonrails.org'
s.files = Dir['CHANGELOG.md', 'MIT-LICENSE', 'README.rdoc', 'lib/**/*']
s.require_path = 'lib'
s.rdoc_options.concat ['--encoding', 'UTF-8']
- s.add_dependency('i18n', '~> 0.6')
- s.add_dependency('multi_json', '~> 1.3')
- s.add_dependency('tzinfo', '~> 0.3.33')
- s.add_dependency('minitest', '~> 4.1')
+ s.add_dependency 'i18n', '~> 0.6'
+ s.add_dependency 'multi_json', '~> 1.3'
+ s.add_dependency 'tzinfo', '~> 0.3.33'
+ s.add_dependency 'minitest', '~> 4.1'
end