Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Hayk-Saakians-Mac:ror hayk$ rails new bsapp --skip-stylesheets
- create
- create README
- create Rakefile
- create config.ru
- create .gitignore
- create Gemfile
- create app
- create app/assets/images/rails.png
- create app/assets/javascripts/application.js
- create app/assets/stylesheets/application.css
- create app/controllers/application_controller.rb
- create app/helpers/application_helper.rb
- create app/mailers
- create app/models
- create app/views/layouts/application.html.erb
- create app/mailers/.gitkeep
- create app/models/.gitkeep
- 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/initializers/wrap_parameters.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 lib/assets
- create lib/assets/.gitkeep
- create log
- create log/.gitkeep
- 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 script
- create script/rails
- create test/fixtures
- create test/fixtures/.gitkeep
- create test/functional
- create test/functional/.gitkeep
- create test/integration
- create test/integration/.gitkeep
- create test/unit
- create test/unit/.gitkeep
- create test/performance/browsing_test.rb
- create test/test_helper.rb
- create tmp/cache
- create tmp/cache/assets
- create vendor/assets/stylesheets
- create vendor/assets/stylesheets/.gitkeep
- create vendor/plugins
- create vendor/plugins/.gitkeep
- run bundle install
- Fetching gem metadata from http://rubygems.org/.......
- Using rake (0.9.2.2)
- Using multi_json (1.3.6)
- Using activesupport (3.1.0)
- Using bcrypt-ruby (3.0.1)
- Using builder (3.0.0)
- Using i18n (0.6.1)
- Using activemodel (3.1.0)
- Using erubis (2.7.0)
- Using rack (1.3.6)
- Using rack-cache (1.0.3)
- Using rack-mount (0.8.3)
- Using rack-test (0.6.1)
- Using hike (1.2.1)
- Using tilt (1.3.3)
- Using sprockets (2.0.4)
- Using actionpack (3.1.0)
- Using mime-types (1.19)
- Using polyglot (0.3.3)
- Using treetop (1.4.10)
- Using mail (2.3.3)
- Using actionmailer (3.1.0)
- Using arel (2.2.3)
- Using tzinfo (0.3.33)
- Using activerecord (3.1.0)
- Using activeresource (3.1.0)
- Using ansi (1.4.3)
- Using bundler (1.2.0)
- Using coffee-script-source (1.3.3)
- Using execjs (1.4.0)
- Using coffee-script (2.2.0)
- Using rack-ssl (1.3.2)
- Using json (1.7.5)
- Using rdoc (3.12)
- Using thor (0.14.6)
- Using railties (3.1.0)
- Using coffee-rails (3.1.1)
- Using jquery-rails (2.1.1)
- Using rails (3.1.0)
- Using sass (3.2.1)
- Using sass-rails (3.1.6)
- Using sqlite3 (1.3.6)
- Using turn (0.9.6)
- Using uglifier (1.2.7)
- Your bundle is complete! Use `bundle show [gemname]` to see where a bundled gem is installed.
- Hayk-Saakians-Mac:ror hayk$ cd bsapp
- Hayk-Saakians-Mac:bsapp hayk$ rails g product name:string price:decimal --skip-stylesheets
- Could not find generator product.
- Hayk-Saakians-Mac:bsapp hayk$ rails g scaffold product name:string price:decimal --skip-stylesheets
- invoke active_record
- create db/migrate/20120901232710_create_products.rb
- create app/models/product.rb
- invoke test_unit
- create test/unit/product_test.rb
- create test/fixtures/products.yml
- route resources :products
- invoke scaffold_controller
- create app/controllers/products_controller.rb
- invoke erb
- create app/views/products
- create app/views/products/index.html.erb
- create app/views/products/edit.html.erb
- create app/views/products/show.html.erb
- create app/views/products/new.html.erb
- create app/views/products/_form.html.erb
- invoke test_unit
- create test/functional/products_controller_test.rb
- invoke helper
- create app/helpers/products_helper.rb
- invoke test_unit
- create test/unit/helpers/products_helper_test.rb
- invoke assets
- invoke coffee
- create app/assets/javascripts/products.js.coffee
- invoke scss
- invoke scss
- Hayk-Saakians-Mac:bsapp hayk$ bundle update
- Fetching gem metadata from http://rubygems.org/.......
- Using rake (0.9.2.2)
- Using multi_json (1.3.6)
- Using activesupport (3.1.0)
- Using bcrypt-ruby (3.0.1)
- Using builder (3.0.0)
- Using i18n (0.6.1)
- Using activemodel (3.1.0)
- Using erubis (2.7.0)
- Using rack (1.3.6)
- Using rack-cache (1.0.3)
- Using rack-mount (0.8.3)
- Using rack-test (0.6.1)
- Using hike (1.2.1)
- Using tilt (1.3.3)
- Using sprockets (2.0.4)
- Using actionpack (3.1.0)
- Using mime-types (1.19)
- Using polyglot (0.3.3)
- Using treetop (1.4.10)
- Using mail (2.3.3)
- Using actionmailer (3.1.0)
- Using arel (2.2.3)
- Using tzinfo (0.3.33)
- Using activerecord (3.1.0)
- Using activeresource (3.1.0)
- Using ansi (1.4.3)
- Using bundler (1.2.0)
- Using coffee-script-source (1.3.3)
- Using execjs (1.4.0)
- Using coffee-script (2.2.0)
- Using rack-ssl (1.3.2)
- Using json (1.7.5)
- Using rdoc (3.12)
- Using thor (0.14.6)
- Using railties (3.1.0)
- Using coffee-rails (3.1.1)
- Using commonjs (0.2.6)
- Using jquery-rails (2.1.1)
- Using less (2.2.1)
- Using less-rails (2.2.3)
- Using libv8 (3.3.10.4)
- Using rails (3.1.0)
- Using sass (3.2.1)
- Using sass-rails (3.1.6)
- Using sqlite3 (1.3.6)
- Using therubyracer (0.10.2)
- Using turn (0.9.6)
- Using twitter-bootstrap-rails (2.1.3)
- Using uglifier (1.2.7)
- Your bundle is updated! Use `bundle show [gemname]` to see where a bundled gem is installed.
- Hayk-Saakians-Mac:bsapp hayk$ rails g bootstrap:install
- /Users/hayk/.rvm/gems/ruby-1.9.2-p320/gems/less-2.2.1/lib/less/java_script/v8_context.rb:61:in `rescue in lock': uninitialized constant V8::JSError (NameError)
- from /Users/hayk/.rvm/gems/ruby-1.9.2-p320/gems/less-2.2.1/lib/less/java_script/v8_context.rb:60:in `lock'
- from /Users/hayk/.rvm/gems/ruby-1.9.2-p320/gems/less-2.2.1/lib/less/java_script/v8_context.rb:19:in `initialize'
- from /Users/hayk/.rvm/gems/ruby-1.9.2-p320/gems/less-2.2.1/lib/less/java_script/v8_context.rb:15:in `new'
- from /Users/hayk/.rvm/gems/ruby-1.9.2-p320/gems/less-2.2.1/lib/less/java_script/v8_context.rb:15:in `instance'
- from /Users/hayk/.rvm/gems/ruby-1.9.2-p320/gems/less-2.2.1/lib/less/loader.rb:10:in `initialize'
- from /Users/hayk/.rvm/gems/ruby-1.9.2-p320/gems/less-2.2.1/lib/less.rb:14:in `new'
- from /Users/hayk/.rvm/gems/ruby-1.9.2-p320/gems/less-2.2.1/lib/less.rb:14:in `<module:Less>'
- from /Users/hayk/.rvm/gems/ruby-1.9.2-p320/gems/less-2.2.1/lib/less.rb:9:in `<top (required)>'
- from /Users/hayk/.rvm/gems/ruby-1.9.2-p320/gems/less-rails-2.2.3/lib/less/rails.rb:6:in `require'
- from /Users/hayk/.rvm/gems/ruby-1.9.2-p320/gems/less-rails-2.2.3/lib/less/rails.rb:6:in `<top (required)>'
- from /Users/hayk/.rvm/gems/ruby-1.9.2-p320/gems/less-rails-2.2.3/lib/less-rails.rb:1:in `require'
- from /Users/hayk/.rvm/gems/ruby-1.9.2-p320/gems/less-rails-2.2.3/lib/less-rails.rb:1:in `<top (required)>'
- from /Users/hayk/.rvm/gems/ruby-1.9.2-p320/gems/twitter-bootstrap-rails-2.1.3/lib/twitter-bootstrap-rails.rb:9:in `require'
- from /Users/hayk/.rvm/gems/ruby-1.9.2-p320/gems/twitter-bootstrap-rails-2.1.3/lib/twitter-bootstrap-rails.rb:9:in `<top (required)>'
- from /Users/hayk/.rvm/gems/ruby-1.9.2-p320@global/gems/bundler-1.2.0/lib/bundler/runtime.rb:68:in `require'
- from /Users/hayk/.rvm/gems/ruby-1.9.2-p320@global/gems/bundler-1.2.0/lib/bundler/runtime.rb:68:in `block (2 levels) in require'
- from /Users/hayk/.rvm/gems/ruby-1.9.2-p320@global/gems/bundler-1.2.0/lib/bundler/runtime.rb:66:in `each'
- from /Users/hayk/.rvm/gems/ruby-1.9.2-p320@global/gems/bundler-1.2.0/lib/bundler/runtime.rb:66:in `block in require'
- from /Users/hayk/.rvm/gems/ruby-1.9.2-p320@global/gems/bundler-1.2.0/lib/bundler/runtime.rb:55:in `each'
- from /Users/hayk/.rvm/gems/ruby-1.9.2-p320@global/gems/bundler-1.2.0/lib/bundler/runtime.rb:55:in `require'
- from /Users/hayk/.rvm/gems/ruby-1.9.2-p320@global/gems/bundler-1.2.0/lib/bundler.rb:128:in `require'
- from /Users/hayk/ror/bsapp/config/application.rb:7:in `<top (required)>'
- from /Users/hayk/.rvm/gems/ruby-1.9.2-p320/gems/railties-3.1.0/lib/rails/commands.rb:21:in `require'
- from /Users/hayk/.rvm/gems/ruby-1.9.2-p320/gems/railties-3.1.0/lib/rails/commands.rb:21:in `<top (required)>'
- from script/rails:6:in `require'
- from script/rails:6:in `<main>'
- Hayk-Saakians-Mac:bsapp hayk$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement