diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-02-18 10:58:25 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-02-18 10:58:25 +0000 |
commit | bc8e41247b2bdc37da8be4e963caf99451418cd2 (patch) | |
tree | adf19267c602b0b14ae5596d93a81b1cae353437 /railties/Rakefile | |
parent | 45acc8c760baf8a677cb947aa5814f4d30b13b41 (diff) | |
download | rails-bc8e41247b2bdc37da8be4e963caf99451418cd2.tar.gz rails-bc8e41247b2bdc37da8be4e963caf99451418cd2.tar.bz2 rails-bc8e41247b2bdc37da8be4e963caf99451418cd2.zip |
Integrated Action Service with the existing elements
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@660 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/Rakefile')
-rw-r--r-- | railties/Rakefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/railties/Rakefile b/railties/Rakefile index 855075bfc0..f64f15b149 100644 --- a/railties/Rakefile +++ b/railties/Rakefile @@ -15,7 +15,7 @@ PKG_DESTINATION = ENV["RAILS_PKG_DESTINATION"] || "../#{PKG_NAME}" BASE_DIRS = %w( app config/environments db doc log lib public script test vendor ) -APP_DIRS = %w( models controllers helpers views views/layouts ) +APP_DIRS = %w( apis models controllers helpers views views/layouts ) PUBLIC_DIRS = %w( images javascripts stylesheets _doc ) TEST_DIRS = %w( fixtures unit functional mocks mocks/development mocks/testing ) @@ -246,6 +246,7 @@ spec = Gem::Specification.new do |s| s.add_dependency('activerecord', '>= 1.6.0') s.add_dependency('actionpack', '>= 1.4.0') s.add_dependency('actionmailer', '>= 0.6.1') + s.add_dependency('actionservice', '>= 0.4.0') s.rdoc_options << '--exclude' << '.' s.has_rdoc = false |