aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/actionpack.gemspec
blob: cc8351a489577d39aec9f6a65033dfe1fb96242b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
version = File.read(File.expand_path('../../RAILS_VERSION', __FILE__)).strip

Gem::Specification.new do |s|
  s.platform    = Gem::Platform::RUBY
  s.name        = 'actionpack'
  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.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.files        = Dir['CHANGELOG.md', 'README.rdoc', 'MIT-LICENSE', 'lib/**/*']
  s.require_path = 'lib'
  s.requirements << 'none'

  s.add_dependency 'activesupport', version
  s.add_dependency 'builder',       '~> 3.1.0'
  s.add_dependency 'rack',          '~> 1.5.2'
  s.add_dependency 'rack-test',     '~> 0.6.2'
  s.add_dependency 'erubis',        '~> 2.7.0'

  s.add_development_dependency 'activemodel', version
  s.add_development_dependency 'tzinfo',      '~> 0.3.37'
end