Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

root/branches/2-1-caching/railties/Rakefile

Revision 8330, 12.0 kB (checked in by david, 10 months ago)

Make ready for 2.0.1

Line 
1 require 'rake'
2 require 'rake/testtask'
3 require 'rake/rdoctask'
4 require 'rake/gempackagetask'
5 require 'rake/contrib/rubyforgepublisher'
6
7 require 'date'
8 require 'rbconfig'
9
10 require File.join(File.dirname(__FILE__), 'lib/rails', 'version')
11
12 PKG_BUILD       = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
13 PKG_NAME        = 'rails'
14 PKG_VERSION     = Rails::VERSION::STRING + PKG_BUILD
15 PKG_FILE_NAME   = "#{PKG_NAME}-#{PKG_VERSION}"
16 PKG_DESTINATION = ENV["RAILS_PKG_DESTINATION"] || "../#{PKG_NAME}"
17
18 RELEASE_NAME  = "REL #{PKG_VERSION}"
19
20 RUBY_FORGE_PROJECT = "rails"
21 RUBY_FORGE_USER    = "webster132"
22
23
24 task :default => :test
25
26 ## This is required until the regular test task
27 ## below passes.  It's not ideal, but at least
28 ## we can see the failures
29 task :test do
30   Dir['test/**/*_test.rb'].all? do |file|
31     system("ruby #{file}")
32   end or raise "Failures"
33 end
34
35 Rake::TestTask.new("regular_test") do |t|
36   t.libs << 'test'
37   t.pattern = 'test/**/*_test.rb'
38   t.warning = true
39   t.verbose = true
40 end
41
42
43 BASE_DIRS = %w(
44   app
45   config/environments
46   config/initializers
47   components
48   db
49   doc
50   log
51   lib
52   lib/tasks
53   public
54   script
55   script/performance
56   script/process
57   test
58   vendor
59   vendor/plugins
60   tmp/sessions
61   tmp/cache
62   tmp/sockets
63   tmp/pids
64 )
65
66 APP_DIRS    = %w( models controllers helpers views views/layouts )
67 PUBLIC_DIRS = %w( images javascripts stylesheets )
68 TEST_DIRS   = %w( fixtures unit functional mocks mocks/development mocks/test )
69
70 LOG_FILES    = %w( server.log development.log test.log production.log )
71 HTML_FILES   = %w( 422.html 404.html 500.html index.html robots.txt favicon.ico images/rails.png
72                    javascripts/prototype.js javascripts/application.js
73                    javascripts/effects.js javascripts/dragdrop.js javascripts/controls.js )
74 BIN_FILES    = %w( about console destroy generate performance/benchmarker performance/profiler process/reaper process/spawner process/inspector runner server plugin )
75
76 VENDOR_LIBS = %w( actionpack activerecord actionmailer activesupport activeresource railties )
77
78
79 desc "Generates a fresh Rails package with documentation"
80 task :fresh_rails => [ :clean, :make_dir_structure, :initialize_file_stubs, :copy_vendor_libraries, :copy_ties_content, :generate_documentation ]
81
82 desc "Generates a fresh Rails package using GEMs with documentation"
83 task :fresh_gem_rails => [ :clean, :make_dir_structure, :initialize_file_stubs, :copy_ties_content, :copy_gem_environment ]
84
85 desc "Generates a fresh Rails package without documentation (faster)"
86 task :fresh_rails_without_docs => [ :clean, :make_dir_structure, :initialize_file_stubs, :copy_vendor_libraries, :copy_ties_content ]
87
88 desc "Generates a fresh Rails package without documentation (faster)"
89 task :fresh_rails_without_docs_using_links => [ :clean, :make_dir_structure, :initialize_file_stubs, :link_vendor_libraries, :copy_ties_content ]
90
91 desc "Generates minimal Rails package using symlinks"
92 task :dev => [ :clean, :make_dir_structure, :initialize_file_stubs, :link_vendor_libraries, :copy_ties_content ]
93
94 desc "Packages the fresh Rails package with documentation"
95 task :package => [ :clean, :fresh_rails ] do
96   system %{cd ..; tar -czvf #{PKG_NAME}-#{PKG_VERSION}.tgz #{PKG_NAME}}
97   system %{cd ..; zip -r #{PKG_NAME}-#{PKG_VERSION}.zip #{PKG_NAME}}
98 end
99
100 task :clean do
101   rm_rf PKG_DESTINATION
102 end
103
104 # Get external spinoffs -------------------------------------------------------------------
105
106 desc "Updates railties to the latest version of the javascript spinoffs"
107 task :update_js do
108   for js in %w( prototype controls dragdrop effects )
109     rm "html/javascripts/#{js}.js"
110     cp "./../actionpack/lib/action_view/helpers/javascripts/#{js}.js", "html/javascripts"
111   end
112 end
113
114 # Make directory structure ----------------------------------------------------------------
115
116 def make_dest_dirs(dirs, path = '.')
117   mkdir_p dirs.map { |dir| File.join(PKG_DESTINATION, path.to_s, dir) }
118 end
119
120 desc "Make the directory structure for the new Rails application"
121 task :make_dir_structure => [ :make_base_dirs, :make_app_dirs, :make_public_dirs, :make_test_dirs ]
122
123 task(:make_base_dirs)   { make_dest_dirs BASE_DIRS              }
124 task(:make_app_dirs)    { make_dest_dirs APP_DIRS,    'app'     }
125 task(:make_public_dirs) { make_dest_dirs PUBLIC_DIRS, 'public'  }
126 task(:make_test_dirs)   { make_dest_dirs TEST_DIRS,   'test'    }
127
128
129 # Initialize file stubs -------------------------------------------------------------------
130
131 desc "Initialize empty file stubs (such as for logging)"
132 task :initialize_file_stubs => [ :initialize_log_files ]
133
134 task :initialize_log_files do
135   log_dir = File.join(PKG_DESTINATION, 'log')
136   chmod 0777, log_dir
137   LOG_FILES.each do |log_file|
138     log_path = File.join(log_dir, log_file)
139     touch log_path
140     chmod 0666, log_path
141   end
142 end
143
144
145 # Copy Vendors ----------------------------------------------------------------------------
146
147 desc "Copy in all the Rails packages to vendor"
148 task :copy_vendor_libraries do
149   mkdir File.join(PKG_DESTINATION, 'vendor', 'rails')
150   VENDOR_LIBS.each { |dir| cp_r File.join('..', dir), File.join(PKG_DESTINATION, 'vendor', 'rails', dir) }
151   FileUtils.rm_r(Dir.glob(File.join(PKG_DESTINATION, 'vendor', 'rails', "**", ".svn")))
152 end
153
154 desc "Link in all the Rails packages to vendor"
155 task :link_vendor_libraries do
156   mkdir File.join(PKG_DESTINATION, 'vendor', 'rails')
157   VENDOR_LIBS.each { |dir| ln_s File.join('..', '..', '..', dir), File.join(PKG_DESTINATION, 'vendor', 'rails', dir) }
158 end
159
160
161 # Copy Ties Content -----------------------------------------------------------------------
162
163 # :link_apache_config
164 desc "Make copies of all the default content of ties"
165 task :copy_ties_content => [
166   :copy_rootfiles, :copy_dispatches, :copy_html_files, :copy_application,
167   :copy_configs, :copy_binfiles, :copy_test_helpers, :copy_app_doc_readme ]
168
169 task :copy_dispatches do
170   copy_with_rewritten_ruby_path("dispatches/dispatch.rb", "#{PKG_DESTINATION}/public/dispatch.rb")
171   chmod 0755, "#{PKG_DESTINATION}/public/dispatch.rb"
172
173   copy_with_rewritten_ruby_path("dispatches/dispatch.rb", "#{PKG_DESTINATION}/public/dispatch.cgi")
174   chmod 0755, "#{PKG_DESTINATION}/public/dispatch.cgi"
175
176   copy_with_rewritten_ruby_path("dispatches/dispatch.fcgi", "#{PKG_DESTINATION}/public/dispatch.fcgi")
177   chmod 0755, "#{PKG_DESTINATION}/public/dispatch.fcgi"
178
179   # copy_with_rewritten_ruby_path("dispatches/gateway.cgi", "#{PKG_DESTINATION}/public/gateway.cgi")
180   # chmod 0755, "#{PKG_DESTINATION}/public/gateway.cgi"
181 end
182
183 task :copy_html_files do
184   HTML_FILES.each { |file| cp File.join('html', file), File.join(PKG_DESTINATION, 'public', file) }
185 end
186
187 task :copy_application do
188   cp "helpers/application.rb", "#{PKG_DESTINATION}/app/controllers/application.rb"
189   cp "helpers/application_helper.rb", "#{PKG_DESTINATION}/app/helpers/application_helper.rb"
190 end
191
192 task :copy_configs do
193   app_name = "rails"
194   socket = nil
195   require 'erb'
196   File.open("#{PKG_DESTINATION}/config/database.yml", 'w') {|f| f.write ERB.new(IO.read("configs/databases/mysql.yml"), nil, '-').result(binding)}
197  
198   cp "configs/routes.rb", "#{PKG_DESTINATION}/config/routes.rb"
199
200   cp "configs/apache.conf", "#{PKG_DESTINATION}/public/.htaccess"
201
202   cp "configs/initializers/inflections.rb", "#{PKG_DESTINATION}/config/initializers/inflections.rb"
203   cp "configs/initializers/mime_types.rb",  "#{PKG_DESTINATION}/config/initializers/mime_types.rb"
204
205   cp "environments/boot.rb",        "#{PKG_DESTINATION}/config/boot.rb"
206   cp "environments/environment.rb", "#{PKG_DESTINATION}/config/environment.rb"
207   cp "environments/production.rb",  "#{PKG_DESTINATION}/config/environments/production.rb"
208   cp "environments/development.rb", "#{PKG_DESTINATION}/config/environments/development.rb"
209   cp "environments/test.rb",        "#{PKG_DESTINATION}/config/environments/test.rb"
210 end
211
212 task :copy_binfiles do
213   BIN_FILES.each do |file|
214     dest_file = File.join(PKG_DESTINATION, 'script', file)
215     copy_with_rewritten_ruby_path(File.join('bin', file), dest_file)
216     chmod 0755, dest_file
217   end
218 end
219
220 task :copy_rootfiles do
221   cp "fresh_rakefile", "#{PKG_DESTINATION}/Rakefile"
222   cp "README", "#{PKG_DESTINATION}/README"
223   cp "CHANGELOG", "#{PKG_DESTINATION}/CHANGELOG"
224 end
225
226 task :copy_test_helpers do
227   cp "helpers/test_helper.rb", "#{PKG_DESTINATION}/test/test_helper.rb"
228 end
229
230 task :copy_app_doc_readme do
231   cp "doc/README_FOR_APP", "#{PKG_DESTINATION}/doc/README_FOR_APP"
232 end
233
234 task :link_apache_config do
235   chdir(File.join(PKG_DESTINATION, 'config')) {
236     ln_s "../public/.htaccess", "apache.conf"
237   }
238 end
239
240 def copy_with_rewritten_ruby_path(src_file, dest_file)
241   ruby = File.join(Config::CONFIG['bindir'], Config::CONFIG['ruby_install_name'])
242
243   File.open(dest_file, 'w') do |df|
244     File.open(src_file) do |sf|
245       line = sf.gets
246       if (line =~ /#!.+ruby\s*/) != nil
247         df.puts("#!#{ruby}")
248       else
249         df.puts(line)
250       end
251       df.write(sf.read)
252     end
253   end
254 end
255
256
257 # Generate documentation ------------------------------------------------------------------
258
259 desc "Generate documentation for the framework and for the empty application"
260 task :generate_documentation => [ :generate_app_doc, :generate_rails_framework_doc ]
261
262 task :generate_rails_framework_doc do
263   system %{cd #{PKG_DESTINATION}; rake doc:rails}
264 end
265
266 task :generate_app_doc do
267   File.cp "doc/README_FOR_APP", "#{PKG_DESTINATION}/doc/README_FOR_APP"
268   system %{cd #{PKG_DESTINATION}; rake doc:app}
269 end
270
271 Rake::RDocTask.new { |rdoc|
272   rdoc.rdoc_dir = 'doc'
273   rdoc.title    = "Railties -- Gluing the Engine to the Rails"
274   rdoc.options << '--line-numbers' << '--inline-source' << '--accessor' << 'cattr_accessor=object'
275   rdoc.options << '--charset' << 'utf-8'
276   rdoc.template = "#{ENV['template']}.rb" if ENV['template']
277   rdoc.rdoc_files.include('README', 'CHANGELOG')
278   rdoc.rdoc_files.include('lib/*.rb')
279   rdoc.rdoc_files.include('lib/rails_generator/*.rb')
280   rdoc.rdoc_files.include('lib/commands/**/*.rb')
281 }
282
283 # Generate GEM ----------------------------------------------------------------------------
284
285 task :copy_gem_environment do
286   cp "environments/environment.rb", "#{PKG_DESTINATION}/config/environment.rb"
287   chmod 0755, dest_file
288 end
289
290
291 PKG_FILES = FileList[
292   '[a-zA-Z]*',
293   'bin/**/*',
294   'builtin/**/*',
295   'configs/**/*',
296   'doc/**/*',
297   'dispatches/**/*',
298   'environments/**/*',
299   'helpers/**/*',
300   'generators/**/*',
301   'html/**/*',
302   'lib/**/*'
303 ] - [ 'test' ]
304
305 spec = Gem::Specification.new do |s|
306   s.name = 'rails'
307   s.version = PKG_VERSION
308   s.summary = "Web-application framework with template engine, control-flow layer, and ORM."
309   s.description = <<-EOF
310     Rails is a framework for building web-application using CGI, FCGI, mod_ruby, or WEBrick
311     on top of either MySQL, PostgreSQL, SQLite, DB2, SQL Server, or Oracle with eRuby- or Builder-based templates.
312   EOF
313
314   s.add_dependency('rake', '>= 0.7.2')
315   s.add_dependency('activesupport',    '= 2.0.1' + PKG_BUILD)
316   s.add_dependency('activerecord',     '= 2.0.1' + PKG_BUILD)
317   s.add_dependency('actionpack',       '= 2.0.1' + PKG_BUILD)
318   s.add_dependency('actionmailer',     '= 2.0.1' + PKG_BUILD)
319   s.add_dependency('activeresource',   '= 2.0.1' + PKG_BUILD)
320
321   s.rdoc_options << '--exclude' << '.'
322   s.has_rdoc = false
323
324   s.files = PKG_FILES.to_a.delete_if {|f| f.include?('.svn')}
325   s.require_path = 'lib'
326   s.bindir = "bin"                               # Use these for applications.
327   s.executables = ["rails"]
328   s.default_executable = "rails"
329
330   s.author = "David Heinemeier Hansson"
331   s.email = "david@loudthinking.com"
332   s.homepage = "http://www.rubyonrails.org"
333   s.rubyforge_project = "rails"
334 end
335
336 Rake::GemPackageTask.new(spec) do |pkg|
337   pkg.gem_spec = spec
338 end
339
340
341 # Publishing -------------------------------------------------------
342 desc "Publish the API documentation"
343 task :pgem => [:gem] do
344   Rake::SshFilePublisher.new("davidhh@wrath.rubyonrails.org", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload
345   `ssh davidhh@wrath.rubyonrails.org './gemupdate.sh'`
346 end
347
348 desc "Publish the release files to RubyForge."
349 task :release => [ :package ] do
350   require 'rubyforge'
351
352   packages = %w( gem ).collect{ |ext| "pkg/#{PKG_NAME}-#{PKG_VERSION}.#{ext}" }
353
354   rubyforge = RubyForge.new
355   rubyforge.login
356   rubyforge.add_release(PKG_NAME, PKG_NAME, "REL #{PKG_VERSION}", *packages)
357 end
Note: See TracBrowser for help on using the browser.