rails 0.9.0 → 0.9.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of rails might be problematic. Click here for more details.

Files changed (5) hide show
  1. data/CHANGELOG +8 -1
  2. data/Rakefile +4 -4
  3. data/fresh_rakefile +1 -0
  4. data/lib/breakpoint.rb +10 -11
  5. metadata +5 -5
data/CHANGELOG CHANGED
@@ -1,4 +1,11 @@
1
- *CVS*
1
+ *0.9.1*
2
+
3
+ * Upgraded to Action Pack 1.0.1 for important bug fix
4
+
5
+ * Updated gem dependencies
6
+
7
+
8
+ *0.9.0*
2
9
 
3
10
  * Renamed public/dispatch.servlet to script/server -- it wasn't really dispatching anyway as its delegating calls to public/dispatch.rb
4
11
 
data/Rakefile CHANGED
@@ -9,7 +9,7 @@ require 'date'
9
9
 
10
10
  PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
11
11
  PKG_NAME = 'rails'
12
- PKG_VERSION = '0.9.0' + PKG_BUILD
12
+ PKG_VERSION = '0.9.1' + PKG_BUILD
13
13
  PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
14
14
  PKG_DESTINATION = ENV["RAILS_PKG_DESTINATION"] || "../#{PKG_NAME}"
15
15
 
@@ -220,9 +220,9 @@ spec = Gem::Specification.new do |s|
220
220
  EOF
221
221
 
222
222
  s.add_dependency('rake', '>= 0.4.11')
223
- s.add_dependency('activerecord', '>= 1.1.0')
224
- s.add_dependency('actionpack', '>= 0.9.5')
225
- s.add_dependency('actionmailer', '>= 0.4.0')
223
+ s.add_dependency('activerecord', '>= 1.2.0')
224
+ s.add_dependency('actionpack', '>= 1.0.1')
225
+ s.add_dependency('actionmailer', '>= 0.5.0')
226
226
 
227
227
  s.has_rdoc = false
228
228
 
@@ -43,6 +43,7 @@ Rake::RDocTask.new("apidoc") { |rdoc|
43
43
  rdoc.title = "Rails Framework Documentation"
44
44
  rdoc.options << '--line-numbers --inline-source'
45
45
  rdoc.rdoc_files.include('README')
46
+ rdoc.rdoc_files.include('CHANGELOG')
46
47
  rdoc.rdoc_files.include('vendor/railties/lib/breakpoint.rb')
47
48
  rdoc.rdoc_files.include('vendor/railties/CHANGELOG')
48
49
  rdoc.rdoc_files.include('vendor/railties/MIT-LICENSE')
@@ -114,10 +114,10 @@ module Breakpoint
114
114
  end
115
115
  end
116
116
 
117
- module CommandBundle
117
+ module CommandBundle #:nodoc:
118
118
  # Proxy to a Breakpoint client. Lets you directly execute code
119
119
  # in the context of the client.
120
- class Client
120
+ class Client#:nodoc:
121
121
  def initialize(eval_handler) # :nodoc:
122
122
  @eval_handler = eval_handler
123
123
  end
@@ -205,7 +205,7 @@ module Breakpoint
205
205
  # These exceptions will be raised on failed asserts
206
206
  # if Breakpoint.asserts_cause_exceptions is set to
207
207
  # true.
208
- class FailedAssertError < RuntimeError
208
+ class FailedAssertError < RuntimeError#:nodoc:
209
209
  end
210
210
 
211
211
  # This asserts that the block evaluates to true.
@@ -359,8 +359,7 @@ module Breakpoint
359
359
  #
360
360
  # Detailed information about running DRb through firewalls is
361
361
  # available at http://www.rubygarden.org/ruby?DrbTutorial
362
- def activate_drb(uri = nil, allowed_hosts = ['localhost', '127.0.0.1', '::1'],
363
- ignore_collisions = false)
362
+ def activate_drb(uri = nil, allowed_hosts = ['localhost', '127.0.0.1', '::1'], ignore_collisions = false) #:nodoc:
364
363
 
365
364
  return false if @use_drb
366
365
 
@@ -403,7 +402,7 @@ module Breakpoint
403
402
  end
404
403
 
405
404
  # Deactivates a running Breakpoint service.
406
- def deactivate_drb
405
+ def deactivate_drb #:nodoc:
407
406
  @service.stop_service unless @service.nil?
408
407
  @service = nil
409
408
  @use_drb = false
@@ -412,7 +411,7 @@ module Breakpoint
412
411
 
413
412
  # Returns true when Breakpoints are used over DRb.
414
413
  # Breakpoint.activate_drb causes this to be true.
415
- def use_drb?
414
+ def use_drb? #:nodoc:
416
415
  @use_drb == true
417
416
  end
418
417
  end
@@ -465,7 +464,7 @@ module IRB # :nodoc:
465
464
  end
466
465
  end
467
466
 
468
- class Context
467
+ class Context#:nodoc:
469
468
  alias :old_evaluate :evaluate
470
469
  def evaluate(line, line_no)
471
470
  if line.chomp == "exit" then
@@ -476,7 +475,7 @@ module IRB # :nodoc:
476
475
  end
477
476
  end
478
477
 
479
- class WorkSpace
478
+ class WorkSpace#:nodoc:
480
479
  alias :old_evaluate :evaluate
481
480
 
482
481
  def evaluate(*args)
@@ -494,7 +493,7 @@ module IRB # :nodoc:
494
493
  end
495
494
  end
496
495
 
497
- module InputCompletor
496
+ module InputCompletor#:nodoc:
498
497
  def self.eval(code, context, *more)
499
498
  # Big hack, this assumes that InputCompletor
500
499
  # will only call eval() when it wants code
@@ -505,7 +504,7 @@ module IRB # :nodoc:
505
504
  end
506
505
 
507
506
  module DRb # :nodoc:
508
- class DRbObject
507
+ class DRbObject#:nodoc:
509
508
  undef :inspect
510
509
  undef :clone
511
510
  end
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.1
3
3
  specification_version: 1
4
4
  name: rails
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.9.0
7
- date: 2004-12-16
6
+ version: 0.9.1
7
+ date: 2004-12-17
8
8
  summary: "Web-application framework with template engine, control-flow layer, and ORM."
9
9
  require_paths:
10
10
  - lib
@@ -135,7 +135,7 @@ dependencies:
135
135
  -
136
136
  - ">="
137
137
  - !ruby/object:Gem::Version
138
- version: 1.1.0
138
+ version: 1.2.0
139
139
  version:
140
140
  - !ruby/object:Gem::Dependency
141
141
  name: actionpack
@@ -145,7 +145,7 @@ dependencies:
145
145
  -
146
146
  - ">="
147
147
  - !ruby/object:Gem::Version
148
- version: 0.9.5
148
+ version: 1.0.1
149
149
  version:
150
150
  - !ruby/object:Gem::Dependency
151
151
  name: actionmailer
@@ -155,5 +155,5 @@ dependencies:
155
155
  -
156
156
  - ">="
157
157
  - !ruby/object:Gem::Version
158
- version: 0.4.0
158
+ version: 0.5.0
159
159
  version: