Skip to content

Commit

Permalink
Some readme fixes as required.
Browse files Browse the repository at this point in the history
  • Loading branch information
arunagw committed May 10, 2011
1 parent 8e55afb commit 9870afb
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion actionmailer/README.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -157,5 +157,5 @@ API documentation is at

Bug reports and feature requests can be filed with the rest for the Ruby on Rails project here:

* https://rails.lighthouseapp.com/projects/8994-ruby-on-rails/tickets
* https://github.com/rails/rails/issues

2 changes: 1 addition & 1 deletion actionpack/README.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -338,4 +338,4 @@ API documentation is at

Bug reports and feature requests can be filed with the rest for the Ruby on Rails project here:

* https://rails.lighthouseapp.com/projects/8994-ruby-on-rails/tickets
* https://github.com/rails/rails/issues
2 changes: 1 addition & 1 deletion activerecord/README.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -219,4 +219,4 @@ API documentation is at

Bug reports and feature requests can be filed with the rest for the Ruby on Rails project here:

* https://rails.lighthouseapp.com/projects/8994-ruby-on-rails/tickets
* https://github.com/rails/rails/issues
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ module Rails
module Generators
class AssetsGenerator < NamedBase
class_option :javascripts, :type => :boolean, :desc => "Generate JavaScripts"
class_option :stylesheets, :type => :boolean, :desc => "Generate stylesheets"
class_option :stylesheets, :type => :boolean, :desc => "Generate Stylesheets"

class_option :javascript_engine, :desc => "Engine for JavaScripts"
class_option :stylesheet_engine, :desc => "Engine for stylesheets"
class_option :stylesheet_engine, :desc => "Engine for Stylesheets"

def create_javascript_files
return unless options.javascripts?
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ class ScaffoldGenerator < ResourceGenerator #metagenerator
remove_hook_for :resource_controller
remove_class_option :actions

class_option :stylesheets, :type => :boolean, :desc => "Generate stylesheets"
class_option :stylesheet_engine, :desc => "Engine for stylesheets"
class_option :stylesheets, :type => :boolean, :desc => "Generate Stylesheets"
class_option :stylesheet_engine, :desc => "Engine for Stylesheets"

hook_for :scaffold_controller, :required => true

Expand Down

0 comments on commit 9870afb

Please sign in to comment.