aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/actionview.gemspec
diff options
context:
space:
mode:
authorPiotr Sarnacki <drogus@gmail.com>2012-05-31 18:21:56 +0200
committerŁukasz Strzałkowski <lukasz.strzalkowski@gmail.com>2013-06-20 17:23:15 +0200
commit78b0934dd1bb84e8f093fb8ef95ca99b297b51cd (patch)
tree1890417e0422938367c93ad30316798144e0ed3f /actionview/actionview.gemspec
parent7c69a829a311a31109939cff19b700b36b97d5c4 (diff)
downloadrails-78b0934dd1bb84e8f093fb8ef95ca99b297b51cd.tar.gz
rails-78b0934dd1bb84e8f093fb8ef95ca99b297b51cd.tar.bz2
rails-78b0934dd1bb84e8f093fb8ef95ca99b297b51cd.zip
Add bare actionview gem to the root directory
This commit creates structure for Action View gem and is first of a series of commits extracting Action View from Action Pack.
Diffstat (limited to 'actionview/actionview.gemspec')
-rw-r--r--actionview/actionview.gemspec27
1 files changed, 27 insertions, 0 deletions
diff --git a/actionview/actionview.gemspec b/actionview/actionview.gemspec
new file mode 100644
index 0000000000..84185f81f0
--- /dev/null
+++ b/actionview/actionview.gemspec
@@ -0,0 +1,27 @@
+version = File.read(File.expand_path("../../RAILS_VERSION", __FILE__)).strip
+
+Gem::Specification.new do |s|
+ s.platform = Gem::Platform::RUBY
+ s.name = 'actionview'
+ s.version = version
+ s.summary = 'Rendering framework putting the V in MVC (part of Rails).'
+ s.description = ''
+
+ 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 'activemodel', version
+
+ s.add_dependency 'builder', '~> 3.1.0'
+ s.add_dependency 'erubis', '~> 2.7.0'
+end