Created
November 23, 2010 08:21
-
-
Save macarthy/711452 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
script/generate gives me : | |
Rubygems: cucumber, culerity, feature, form, formtastic, formtastic_stylesheets, nifty_authentication, nifty_config, nifty_layout, nifty_scaffold, revisable_migration, session | |
Builtin: controller, helper, integration_test, mailer, metal, migration, model, observer, performance_test, plugin, resource, scaffold, session_migration | |
> bundle exec script/generate | |
Usage: script/generate generator [options] [args] | |
Rails Info: | |
-v, --version Show the Rails version number and quit. | |
-h, --help Show this help message and quit. | |
General Options: | |
-p, --pretend Run but do not make any changes. | |
-f, --force Overwrite files that already exist. | |
-s, --skip Skip files that already exist. | |
-q, --quiet Suppress normal output. | |
-t, --backtrace Debugging: show backtrace on errors. | |
-c, --svn Modify files with subversion. (Note: svn must be in path) | |
-g, --git Modify files with git. (Note: git must be in path) | |
Installed Generators | |
Rubygems: cucumber, culerity, feature, form, formtastic, formtastic_stylesheets, nifty_authentication, nifty_config, nifty_layout, nifty_scaffold, revisable_migration, session | |
Builtin: controller, helper, integration_test, mailer, metal, migration, model, observer, performance_test, plugin, resource, scaffold, session_migration | |
my Gemfile | |
source :gemcutter | |
#gem "mysql2" | |
gem "rails", "2.3.10" | |
#gem "parseexcel", "0.5.2" | |
#gem "ruby-debug" | |
#gem 'will_paginate', '~> 2.3.8', :require => 'will_paginate' | |
#gem "authlogic",'2.1.3' | |
#gem "hpricot" | |
#gem 'less', '1.2.21' | |
#gem 'rubyzip',:require => 'zip/zipfilesystem' | |
#gem "ya2yaml" | |
#gem 'formtastic', '~> 1.1.0' | |
#gem 'inherited_resources','1.0.6' | |
#gem 'routing-filter' | |
#gem 'has_scope' | |
group :development do | |
# bundler requires these gems in development | |
# gem "rails-footnotes" | |
gem 'rspec', '>= 1.3.1', '< 2' | |
gem 'rspec-rails', '>= 1.3.3', '< 2' | |
gem 'cucumber-rails', '>=0.3.2' | |
gem 'database_cleaner', '>=0.5.0' | |
gem 'webrat', '>=0.7.1' | |
gem 'selenium-client', '>=1.2.18' | |
# | |
end | |
group :test do | |
# gem "thoughtbot-shoulda", :require=>'shoulda' | |
gem 'rspec', '>= 1.3.1', '< 2' | |
gem 'rspec-rails', '>= 1.3.3', '< 2' | |
gem 'cucumber-rails', '>=0.3.2' | |
gem 'database_cleaner', '>=0.5.0' | |
gem 'webrat', '>=0.7.1' | |
gem 'selenium-client', '>=1.2.18' | |
# gem 'machinist','>=1.0.6' | |
end | |
~/projects/understanding/valtest > bundle install | |
Fetching source index for http://rubygems.org/ | |
Using rake (0.8.7) | |
Using activesupport (2.3.10) | |
Using rack (1.1.0) | |
Using actionpack (2.3.10) | |
Using actionmailer (2.3.10) | |
Using activerecord (2.3.10) | |
Using activeresource (2.3.10) | |
Using builder (2.1.2) | |
Using diff-lcs (1.1.2) | |
Using json (1.4.6) | |
Using term-ansicolor (1.0.5) | |
Using gherkin (2.2.9) | |
Using cucumber (0.9.4) | |
Using cucumber-rails (0.3.2) | |
Using database_cleaner (0.6.0) | |
Using nokogiri (1.4.4) | |
Using rack-test (0.5.6) | |
Using rails (2.3.10) | |
Using rspec (1.3.1) | |
Using rspec-rails (1.3.3) | |
Using selenium-client (1.2.18) | |
Using webrat (0.7.2) | |
Using bundler (1.0.7) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment