aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/generator/templates/app/Rakefile
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2009-06-15 21:09:34 +0200
committerJosé Valim <jose.valim@gmail.com>2009-06-19 16:10:42 +0200
commit489f42215223bda3a0a2d8f9b740007a6ee3fc54 (patch)
treee31789294be49231f2bd9eb6a5a64b791c264dd2 /railties/lib/generator/templates/app/Rakefile
parent8037fee9ff1dd13c421e6689229457c1ef084074 (diff)
downloadrails-489f42215223bda3a0a2d8f9b740007a6ee3fc54.tar.gz
rails-489f42215223bda3a0a2d8f9b740007a6ee3fc54.tar.bz2
rails-489f42215223bda3a0a2d8f9b740007a6ee3fc54.zip
Initial scratch of application generator.
Diffstat (limited to 'railties/lib/generator/templates/app/Rakefile')
-rwxr-xr-xrailties/lib/generator/templates/app/Rakefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/railties/lib/generator/templates/app/Rakefile b/railties/lib/generator/templates/app/Rakefile
new file mode 100755
index 0000000000..3bb0e8592a
--- /dev/null
+++ b/railties/lib/generator/templates/app/Rakefile
@@ -0,0 +1,10 @@
+# Add your own tasks in files placed in lib/tasks ending in .rake,
+# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
+
+require(File.join(File.dirname(__FILE__), 'config', 'boot'))
+
+require 'rake'
+require 'rake/testtask'
+require 'rake/rdoctask'
+
+require 'tasks/rails'