Skip to content

Instantly share code, notes, and snippets.

@ThisIsMissEm
Created August 7, 2010 06:13
Show Gist options
  • Select an option

  • Save ThisIsMissEm/512502 to your computer and use it in GitHub Desktop.

Select an option

Save ThisIsMissEm/512502 to your computer and use it in GitHub Desktop.
Last login: Thu Aug 5 12:50:55 on ttys001
gem ~/: gem install rails --prerelease
Successfully installed activesupport-3.0.0.rc
Successfully installed activemodel-3.0.0.rc
Successfully installed rack-mount-0.6.9
Successfully installed tzinfo-0.3.22
Successfully installed abstract-1.0.0
Successfully installed erubis-2.6.6
Successfully installed actionpack-3.0.0.rc
Successfully installed arel-0.4.0
Successfully installed activerecord-3.0.0.rc
Successfully installed activeresource-3.0.0.rc
Successfully installed mail-2.2.5
Successfully installed actionmailer-3.0.0.rc
Successfully installed thor-0.14.0
Successfully installed railties-3.0.0.rc
Successfully installed bundler-1.0.0.rc.3
Successfully installed rails-3.0.0.rc
16 gems installed
Installing ri documentation for activesupport-3.0.0.rc...
Installing ri documentation for activemodel-3.0.0.rc...
Installing ri documentation for rack-mount-0.6.9...
Installing ri documentation for tzinfo-0.3.22...
Installing ri documentation for abstract-1.0.0...
Installing ri documentation for erubis-2.6.6...
Installing ri documentation for actionpack-3.0.0.rc...
Installing ri documentation for arel-0.4.0...
Installing ri documentation for activerecord-3.0.0.rc...
Installing ri documentation for activeresource-3.0.0.rc...
Installing ri documentation for mail-2.2.5...
Installing ri documentation for actionmailer-3.0.0.rc...
Installing ri documentation for thor-0.14.0...
Installing ri documentation for railties-3.0.0.rc...
Installing ri documentation for bundler-1.0.0.rc.3...
Installing ri documentation for rails-3.0.0.rc...
Installing RDoc documentation for activesupport-3.0.0.rc...
Installing RDoc documentation for activemodel-3.0.0.rc...
Installing RDoc documentation for rack-mount-0.6.9...
Installing RDoc documentation for tzinfo-0.3.22...
Installing RDoc documentation for abstract-1.0.0...
Installing RDoc documentation for erubis-2.6.6...
Installing RDoc documentation for actionpack-3.0.0.rc...
Installing RDoc documentation for arel-0.4.0...
Installing RDoc documentation for activerecord-3.0.0.rc...
Installing RDoc documentation for activeresource-3.0.0.rc...
Installing RDoc documentation for mail-2.2.5...
Installing RDoc documentation for actionmailer-3.0.0.rc...
Installing RDoc documentation for thor-0.14.0...
Installing RDoc documentation for railties-3.0.0.rc...
Installing RDoc documentation for bundler-1.0.0.rc.3...
Installing RDoc documentation for rails-3.0.0.rc...
~/: cd var/tmp/
tmp/: rails new test
Invalid application name test. Please give a name which does not match one of the reserved rails words.
tmp/: rails new testapp
create
create README
create Rakefile
create config.ru
create .gitignore
create Gemfile
create app
create app/controllers/application_controller.rb
create app/helpers/application_helper.rb
create app/views/layouts/application.html.erb
create app/mailers
create app/models
create config
create config/routes.rb
create config/application.rb
create config/environment.rb
create config/environments
create config/environments/development.rb
create config/environments/production.rb
create config/environments/test.rb
create config/initializers
create config/initializers/backtrace_silencers.rb
create config/initializers/inflections.rb
create config/initializers/mime_types.rb
create config/initializers/secret_token.rb
create config/initializers/session_store.rb
create config/locales
create config/locales/en.yml
create config/boot.rb
create config/database.yml
create db
create db/seeds.rb
create doc
create doc/README_FOR_APP
create lib
create lib/tasks
create lib/tasks/.gitkeep
create log
create log/server.log
create log/production.log
create log/development.log
create log/test.log
create public
create public/404.html
create public/422.html
create public/500.html
create public/favicon.ico
create public/index.html
create public/robots.txt
create public/images
create public/images/rails.png
create public/stylesheets
create public/stylesheets/.gitkeep
create public/javascripts
create public/javascripts/application.js
create public/javascripts/controls.js
create public/javascripts/dragdrop.js
create public/javascripts/effects.js
create public/javascripts/prototype.js
create public/javascripts/rails.js
create script
create script/rails
create test
create test/performance/browsing_test.rb
create test/test_helper.rb
create test/fixtures
create test/functional
create test/integration
create test/unit
create tmp
create tmp/sessions
create tmp/sockets
create tmp/cache
create tmp/pids
create vendor/plugins
create vendor/plugins/.gitkeep
tmp/:
@ThisIsMissEm
Copy link
Author

The first output gives an invalid app name, the second builds fine.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment