You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Working directory is /Users/runycalmera/railsprojects/MyApp
WARN: Unresolved specs during Gem::Specification.reset:
rake (>= 0.8.7)
json (~> 1.4)
multi_json (~> 1.0)
WARN: Clearing out unresolved specs.
Please report a bug if this causes problems.
Warning! PATH is not properly set up, '/Users/runycalmera/.rvm/gems/ruby-2.0.0-p353@MyApp/bin' is not available,
usually this is caused by shell initialization files - check them for 'PATH=...' entries,
it might also help to re-add RVM to your dotfiles: 'rvm get stable --auto-dotfiles',
to fix temporarily in this shell session run: 'rvm use ruby-2.0.0-p353@MyApp'.
Gem files will remain installed in /Users/runycalmera/.rvm/gems/ruby-2.0.0-p353@MyApp/gems/nokogiri-1.6.3.1 for inspection.
Results logged to /Users/runycalmera/.rvm/gems/ruby-2.0.0-p353@MyApp/extensions/x86_64-darwin-12/2.0.0-static/nokogiri-1.6.3.1/gem_make.out
An error occurred while installing nokogiri (1.6.3.1), and Bundler cannot
continue.
Make sure that gem install nokogiri -v '1.6.3.1' succeeds before bundling.
- Database setup: creating config/database.yml with development database sqlite
remove config/database.yml
create config/database.yml
append config/database.yml
- Devise install...
run bundle exec rails g devise:install from "."
The git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run bundle install before trying to start your application
- Create devise migration file
create db/migrate/20140902051845_devise_create_users.rb
- Create User Controller...
create app/controllers/users_controller.rb
- Create User Model...
create app/models/user.rb
- Adding admin user with email: [email protected], password: admin999 to seeds.rb
append db/seeds.rb
- Create locales
generate inline_forms
The git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run bundle install before trying to start your application
The git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run bundle install before trying to start your application
The git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run bundle install before trying to start your application
- Mount Ckeditor::Engine to routes...
route mount Ckeditor::Engine => '/ckeditor'
- Add ckeditor autoload_paths to application.rb...
- Add ckeditor/init to application.js...
insert app/assets/javascripts/application.js
- Create ckeditor config.js
create app/assets/javascripts/ckeditor/config.js
- Add remotipart to application.js...
insert app/assets/javascripts/application.js
- Paper_trail install...
generate paper_trail:install
The git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run bundle install before trying to start your application
The git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run bundle install before trying to start your application
- Generate models and tables and views for translations...
generate inline_forms
The git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run bundle install before trying to start your application
generate inline_forms
The git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run bundle install before trying to start your application
generate inline_forms
The git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run bundle install before trying to start your application
create db/migrate/20140902051848_inline_forms_create_view_for_translations.rb
- Migrating Database (only when using sqlite)
run bundle exec rake db:migrate from "."
The git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run bundle install before trying to start your application
- Seeding the database (only when using sqlite)
run bundle exec rake db:seed from "."
The git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run bundle install before trying to start your application
- Recreating ApplicationHelper to set application_name and application_title...
remove app/helpers/application_helper.rb
create app/helpers/application_helper.rb
- Recreating ApplicationController to add devise, cancan, I18n stuff...
remove app/controllers/application_controller.rb
create app/controllers/application_controller.rb
- Creating Ability model so that the superadmin can access all...
create app/models/ability.rb
- Generating test files
create spec/spec_helper.rb
copy test image into rspec folder
create spec/fixtures/images/rails.png
- Creating factory_girl file
create spec/factories/inline_forms.rb
remove spec/factories/users.rb
remove spec/models/user_spec.rb
- Injecting precompile assets stuff in environments/production.rb...
insert config/environments/production.rb
- Injecting stylesheets into app/assets/stylesheets/application.css...
insert app/assets/stylesheets/application.css
- Injecting devise mailer stuff in environments/production.rb...
insert config/environments/production.rb
- Setting config.assets.compile to true in environments/production.rb (needed for ckeditor)...
gsub config/environments/production.rb
- Capify...
run capify . from "."
remove config/deploy.rb
create config/deploy.rb
- Unicorn Config...
create config/unicorn.rb
- Initializing git...
run git init from "."
Initialized empty Git repository in /Users/runycalmera/railsprojects/MyApp/.git/
insert .gitignore
run git add . from "."
run git commit -a -m " * Initial" from "."
run bundle exec rails g inline_forms Photo name:string caption:string image:image_field description:text apartment:belongs_to _presentation:'#{name}' from "."
The git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run bundle install before trying to start your application
run bundle exec rails generate uploader Image from "."
The git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run bundle install before trying to start your application
run bundle exec rails g inline_forms Apartment name:string title:string description:text photos:has_many photos:associated _enabled:yes _presentation:'#{name}' from "."
The git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run bundle install before trying to start your application
run bundle exec rake db:migrate from "."
The git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run bundle install before trying to start your application
-Adding example test
create spec/models/MyApp_example.rb
run rspec from "."
The git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run bundle install before trying to start your application
WARNING: Improper use of the sudo command could lead to data loss
or the deletion of important system files. Please double-check your
typing when using sudo. Type "man sudo" for more information.
To proceed, enter your password, or type Ctrl-C to abort.
Password:
Fetching: i18n-0.6.11.gem (100%)
Successfully installed i18n-0.6.11
Fetching: thread_safe-0.3.4.gem (100%)
Successfully installed thread_safe-0.3.4
Fetching: tzinfo-1.2.2.gem (100%)
Successfully installed tzinfo-1.2.2
Fetching: minitest-5.4.1.gem (100%)
Successfully installed minitest-5.4.1
Fetching: activesupport-4.1.5.gem (100%)
Successfully installed activesupport-4.1.5
Fetching: rack-1.5.2.gem (100%)
Successfully installed rack-1.5.2
Fetching: rack-test-0.6.2.gem (100%)
Successfully installed rack-test-0.6.2
Fetching: builder-3.2.2.gem (100%)
Successfully installed builder-3.2.2
Fetching: erubis-2.7.0.gem (100%)
Successfully installed erubis-2.7.0
Fetching: actionview-4.1.5.gem (100%)
Successfully installed actionview-4.1.5
Fetching: actionpack-4.1.5.gem (100%)
Successfully installed actionpack-4.1.5
Fetching: activemodel-4.1.5.gem (100%)
Successfully installed activemodel-4.1.5
Fetching: arel-5.0.1.20140414130214.gem (100%)
Successfully installed arel-5.0.1.20140414130214
Fetching: activerecord-4.1.5.gem (100%)
Successfully installed activerecord-4.1.5
Fetching: mime-types-1.25.1.gem (100%)
Successfully installed mime-types-1.25.1
Fetching: polyglot-0.3.5.gem (100%)
Successfully installed polyglot-0.3.5
Fetching: treetop-1.4.15.gem (100%)
Successfully installed treetop-1.4.15
Fetching: mail-2.5.4.gem (100%)
Successfully installed mail-2.5.4
Fetching: actionmailer-4.1.5.gem (100%)
Successfully installed actionmailer-4.1.5
Fetching: thor-0.19.1.gem (100%)
Successfully installed thor-0.19.1
Fetching: railties-4.1.5.gem (100%)
Successfully installed railties-4.1.5
Fetching: hike-1.2.3.gem (100%)
Successfully installed hike-1.2.3
Fetching: multi_json-1.10.1.gem (100%)
Successfully installed multi_json-1.10.1
Fetching: tilt-1.4.1.gem (100%)
Successfully installed tilt-1.4.1
Fetching: sprockets-2.12.1.gem (100%)
Successfully installed sprockets-2.12.1
Fetching: sprockets-rails-2.1.3.gem (100%)
Successfully installed sprockets-rails-2.1.3
Fetching: rails-4.1.5.gem (100%)
Successfully installed rails-4.1.5
Parsing documentation for actionmailer-4.1.5
Installing ri documentation for actionmailer-4.1.5
Parsing documentation for actionpack-4.1.5
Installing ri documentation for actionpack-4.1.5
Parsing documentation for actionview-4.1.5
Installing ri documentation for actionview-4.1.5
Parsing documentation for activemodel-4.1.5
Installing ri documentation for activemodel-4.1.5
Parsing documentation for activerecord-4.1.5
Installing ri documentation for activerecord-4.1.5
Parsing documentation for activesupport-4.1.5
unable to convert "\x80" from ASCII-8BIT to UTF-8 for lib/active_support/values/unicode_tables.dat, skipping
Installing ri documentation for activesupport-4.1.5
Parsing documentation for arel-5.0.1.20140414130214
Installing ri documentation for arel-5.0.1.20140414130214
Parsing documentation for builder-3.2.2
Installing ri documentation for builder-3.2.2
Parsing documentation for erubis-2.7.0
Installing ri documentation for erubis-2.7.0
Parsing documentation for hike-1.2.3
Installing ri documentation for hike-1.2.3
Parsing documentation for i18n-0.6.11
Installing ri documentation for i18n-0.6.11
Parsing documentation for mail-2.5.4
unable to convert "\x80" from ASCII-8BIT to UTF-8 for lib/mail/values/unicode_tables.dat, skipping
Installing ri documentation for mail-2.5.4
Parsing documentation for mime-types-1.25.1
Installing ri documentation for mime-types-1.25.1
Parsing documentation for minitest-5.4.1
Installing ri documentation for minitest-5.4.1
Parsing documentation for multi_json-1.10.1
Installing ri documentation for multi_json-1.10.1
Parsing documentation for polyglot-0.3.5
Installing ri documentation for polyglot-0.3.5
Parsing documentation for rack-1.5.2
Installing ri documentation for rack-1.5.2
Parsing documentation for rack-test-0.6.2
Installing ri documentation for rack-test-0.6.2
Parsing documentation for rails-4.1.5
unable to convert "\xFF" from ASCII-8BIT to UTF-8 for guides/assets/images/akshaysurve.jpg, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/belongs_to.png, skipping
unable to convert "\xF4" from ASCII-8BIT to UTF-8 for guides/assets/images/book_icon.gif, skipping
unable to convert "\x91" from ASCII-8BIT to UTF-8 for guides/assets/images/bullet.gif, skipping
unable to convert "\xF5" from ASCII-8BIT to UTF-8 for guides/assets/images/chapters_icon.gif, skipping
unable to convert "\xF5" from ASCII-8BIT to UTF-8 for guides/assets/images/check_bullet.gif, skipping
unable to convert "\xF4" from ASCII-8BIT to UTF-8 for guides/assets/images/credits_pic_blank.gif, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/csrf.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/edge_badge.png, skipping
unable to convert "\x9E" from ASCII-8BIT to UTF-8 for guides/assets/images/favicon.ico, skipping
unable to convert "\xF0" from ASCII-8BIT to UTF-8 for guides/assets/images/feature_tile.gif, skipping
unable to convert "\xF0" from ASCII-8BIT to UTF-8 for guides/assets/images/footer_tile.gif, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/fxn.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/getting_started/article_with_comments.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/getting_started/challenge.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/getting_started/confirm_dialog.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/getting_started/forbidden_attributes_for_new_article.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/getting_started/form_with_errors.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/getting_started/index_action_with_edit_link.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/getting_started/new_article.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/getting_started/rails_welcome.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/getting_started/routing_error_no_controller.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/getting_started/routing_error_no_route_matches.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/getting_started/show_action_for_articles.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/getting_started/template_is_missing_articles_new.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/getting_started/unknown_action_create_for_articles.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/getting_started/unknown_action_new_for_articles.png, skipping
unable to convert "\xF0" from ASCII-8BIT to UTF-8 for guides/assets/images/grey_bullet.gif, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/habtm.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/has_many.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/has_many_through.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/has_one.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/has_one_through.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/header_backdrop.png, skipping
unable to convert "\xF0" from ASCII-8BIT to UTF-8 for guides/assets/images/header_tile.gif, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/i18n/demo_html_safe.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/i18n/demo_localized_pirate.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/i18n/demo_translated_en.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/i18n/demo_translated_pirate.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/i18n/demo_translation_missing.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/i18n/demo_untranslated.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/callouts/1.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/callouts/10.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/callouts/11.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/callouts/12.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/callouts/13.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/callouts/14.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/callouts/15.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/callouts/2.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/callouts/3.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/callouts/4.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/callouts/5.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/callouts/6.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/callouts/7.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/callouts/8.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/callouts/9.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/caution.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/example.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/home.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/important.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/next.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/note.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/prev.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/tip.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/up.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/warning.png, skipping
unable to convert "\xF5" from ASCII-8BIT to UTF-8 for guides/assets/images/nav_arrow.gif, skipping
unable to convert "\xFF" from ASCII-8BIT to UTF-8 for guides/assets/images/oscardelben.jpg, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/polymorphic.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/radar.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/rails4_features.png, skipping
unable to convert "\xFF" from ASCII-8BIT to UTF-8 for guides/assets/images/rails_guides_kindle_cover.jpg, skipping
unable to convert "\xEC" from ASCII-8BIT to UTF-8 for guides/assets/images/rails_guides_logo.gif, skipping
unable to convert "\x8C" from ASCII-8BIT to UTF-8 for guides/assets/images/rails_logo_remix.gif, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/session_fixation.png, skipping
unable to convert "\x80" from ASCII-8BIT to UTF-8 for guides/assets/images/tab_grey.gif, skipping
unable to convert "\x80" from ASCII-8BIT to UTF-8 for guides/assets/images/tab_info.gif, skipping
unable to convert "\x80" from ASCII-8BIT to UTF-8 for guides/assets/images/tab_note.gif, skipping
unable to convert "\x80" from ASCII-8BIT to UTF-8 for guides/assets/images/tab_red.gif, skipping
unable to convert "\x80" from ASCII-8BIT to UTF-8 for guides/assets/images/tab_yellow.gif, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/tab_yellow.png, skipping
unable to convert "\xFF" from ASCII-8BIT to UTF-8 for guides/assets/images/vijaydev.jpg, skipping
Installing ri documentation for rails-4.1.5
Parsing documentation for railties-4.1.5
Installing ri documentation for railties-4.1.5
Parsing documentation for sprockets-2.12.1
Installing ri documentation for sprockets-2.12.1
Parsing documentation for sprockets-rails-2.1.3
Installing ri documentation for sprockets-rails-2.1.3
Parsing documentation for thor-0.19.1
Installing ri documentation for thor-0.19.1
Parsing documentation for thread_safe-0.3.4
Installing ri documentation for thread_safe-0.3.4
Parsing documentation for tilt-1.4.1
Installing ri documentation for tilt-1.4.1
Parsing documentation for treetop-1.4.15
Installing ri documentation for treetop-1.4.15
Parsing documentation for tzinfo-1.2.2
Installing ri documentation for tzinfo-1.2.2
27 gems installed
Macintosh:MyApp runycalmera$ rails server
The git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run bundle install before trying to start your application
Gem files will remain installed in /Users/runycalmera/.rvm/gems/ruby-2.0.0-p353@MyApp/gems/nokogiri-1.6.3.1 for inspection.
Results logged to /Users/runycalmera/.rvm/gems/ruby-2.0.0-p353@MyApp/extensions/x86_64-darwin-12/2.0.0-static/nokogiri-1.6.3.1/gem_make.out
An error occurred while installing nokogiri (1.6.3.1), and Bundler cannot
continue.
Make sure that gem install nokogiri -v '1.6.3.1' succeeds before bundling.
Macintosh:MyApp runycalmera$ rails server
The git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run bundle install before trying to start your application
Gem files will remain installed in /Users/runycalmera/.rvm/gems/ruby-2.0.0-p353@MyApp/gems/nokogiri-1.6.3.1 for inspection.
Results logged to /Users/runycalmera/.rvm/gems/ruby-2.0.0-p353@MyApp/extensions/x86_64-darwin-12/2.0.0-static/nokogiri-1.6.3.1/gem_make.out
Macintosh:MyApp runycalmera$ rails server
The git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run bundle install before trying to start your application
Gem files will remain installed in /Users/runycalmera/.rvm/gems/ruby-2.0.0-p353@MyApp/gems/nokogiri-1.6.3.1 for inspection.
Results logged to /Users/runycalmera/.rvm/gems/ruby-2.0.0-p353@MyApp/extensions/x86_64-darwin-12/2.0.0-static/nokogiri-1.6.3.1/gem_make.out
An error occurred while installing nokogiri (1.6.3.1), and Bundler cannot
continue.
Make sure that gem install nokogiri -v '1.6.3.1' succeeds before bundling.
Macintosh:MyApp runycalmera$ rails server
The git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run bundle install before trying to start your application
ERROR: "bundle install" was called with arguments ["nokogiri"]
Usage: "bundle install"
Macintosh:MyApp runycalmera$ rails server
The git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run bundle install before trying to start your application
Macintosh:MyApp runycalmera$ bundle install
The text was updated successfully, but these errors were encountered:
See the loggin of the installation below.
Hoi Ace
bij inline_forms zijn er problemen met will_paginate en nokogiri.
Alles gaat goed maaar die gems komen niet goed mee.
Groet,
Runy
Macintosh:railsprojects runycalmera$ gem install inline_forms
Fetching: validation_hints-0.2.0.gem (100%)
Successfully installed validation_hints-0.2.0
Fetching: activesupport-3.2.12.gem (100%)
Successfully installed activesupport-3.2.12
Fetching: builder-3.0.4.gem (100%)
Successfully installed builder-3.0.4
Fetching: activemodel-3.2.12.gem (100%)
Successfully installed activemodel-3.2.12
Fetching: rack-1.4.5.gem (100%)
Successfully installed rack-1.4.5
Fetching: rack-cache-1.2.gem (100%)
Successfully installed rack-cache-1.2
Fetching: journey-1.0.4.gem (100%)
Successfully installed journey-1.0.4
Fetching: sprockets-2.2.2.gem (100%)
Successfully installed sprockets-2.2.2
Fetching: actionpack-3.2.12.gem (100%)
Successfully installed actionpack-3.2.12
Fetching: arel-3.0.3.gem (100%)
Successfully installed arel-3.0.3
Fetching: activerecord-3.2.12.gem (100%)
Successfully installed activerecord-3.2.12
Fetching: activeresource-3.2.12.gem (100%)
Successfully installed activeresource-3.2.12
Fetching: mail-2.4.4.gem (100%)
Successfully installed mail-2.4.4
Fetching: actionmailer-3.2.12.gem (100%)
Successfully installed actionmailer-3.2.12
Fetching: rack-ssl-1.3.4.gem (100%)
Successfully installed rack-ssl-1.3.4
Fetching: railties-3.2.12.gem (100%)
railties's executable "rails" conflicts with rails
Overwrite the executable? [yN] y
Successfully installed railties-3.2.12
Fetching: rails-3.2.12.gem (100%)
Successfully installed rails-3.2.12
Fetching: rails-i18n-3.0.1.gem (100%)
Successfully installed rails-i18n-3.0.1
Fetching: inline_forms-3.0.9.gem (100%)
Successfully installed inline_forms-3.0.9
Parsing documentation for actionmailer-3.2.12
Installing ri documentation for actionmailer-3.2.12
Parsing documentation for actionpack-3.2.12
Installing ri documentation for actionpack-3.2.12
Parsing documentation for activemodel-3.2.12
Installing ri documentation for activemodel-3.2.12
Parsing documentation for activerecord-3.2.12
Installing ri documentation for activerecord-3.2.12
Parsing documentation for activeresource-3.2.12
Installing ri documentation for activeresource-3.2.12
Parsing documentation for activesupport-3.2.12
Installing ri documentation for activesupport-3.2.12
Parsing documentation for arel-3.0.3
Installing ri documentation for arel-3.0.3
Parsing documentation for builder-3.0.4
/Users/runycalmera/.rvm/gems/ruby-2.0.0-p353/gems/rdoc-4.1.1/lib/rdoc/parser.rb:87: warning: Unsupported encoding : ignored
/Users/runycalmera/.rvm/gems/ruby-2.0.0-p353/gems/rdoc-4.1.1/lib/rdoc/parser.rb:87: warning: Unsupported encoding ignored
/Users/runycalmera/.rvm/gems/ruby-2.0.0-p353/gems/rdoc-4.1.1/lib/rdoc/parser.rb:87: warning: Unsupported encoding : ignored
/Users/runycalmera/.rvm/gems/ruby-2.0.0-p353/gems/rdoc-4.1.1/lib/rdoc/parser.rb:87: warning: Unsupported encoding ignored
Installing ri documentation for builder-3.0.4
Parsing documentation for inline_forms-3.0.9
Installing ri documentation for inline_forms-3.0.9
Parsing documentation for journey-1.0.4
Installing ri documentation for journey-1.0.4
Parsing documentation for mail-2.4.4
Installing ri documentation for mail-2.4.4
Parsing documentation for rack-1.4.5
Installing ri documentation for rack-1.4.5
Parsing documentation for rack-cache-1.2
Installing ri documentation for rack-cache-1.2
Parsing documentation for rack-ssl-1.3.4
Installing ri documentation for rack-ssl-1.3.4
Parsing documentation for rails-3.2.12
Installing ri documentation for rails-3.2.12
Parsing documentation for rails-i18n-3.0.1
Installing ri documentation for rails-i18n-3.0.1
Parsing documentation for railties-3.2.12
Installing ri documentation for railties-3.2.12
Parsing documentation for sprockets-2.2.2
Installing ri documentation for sprockets-2.2.2
Parsing documentation for validation_hints-0.2.0
Installing ri documentation for validation_hints-0.2.0
Done installing documentation for actionmailer, actionpack, activemodel, activerecord, activeresource, activesupport, arel, builder, inline_forms, journey, mail, rack, rack-cache, rack-ssl, rails, rails-i18n, railties, sprockets, validation_hints after 50 seconds
19 gems installed
Macintosh:railsprojects runycalmera$ inline_forms create MyApp --example
No Database specified please choose one database sqlite | mysql
Database: sqlite
Creating MyApp with inline_forms v3.0.9 and development database sqlite...
Installing inline_forms with RVM
Installing with exist MyApp
Working directory is /Users/runycalmera/railsprojects/MyApp
WARN: Unresolved specs during Gem::Specification.reset:
WARN: Clearing out unresolved specs.
Please report a bug if this causes problems.
Warning! PATH is not properly set up, '/Users/runycalmera/.rvm/gems/ruby-2.0.0-p353@MyApp/bin' is not available,
RVM GEMSET is now ruby-2.0.0-p353@MyApp
Installing using gemset : ruby-2.0.0-p353@MyApp
Fetching git://github.com/acesuares/will_paginate.git
remote: Counting objects: 3683, done.
remote: Compressing objects: 100% (1930/1930), done.
remote: Total 3683 (delta 1691), reused 3683 (delta 1691)
Receiving objects: 100% (3683/3683), 1.04 MiB | 853.00 KiB/s, done.
Resolving deltas: 100% (1691/1691), done.
Fetching git://github.com/acesuares/tabs_on_rails.git
remote: Counting objects: 984, done.
remote: Compressing objects: 100% (500/500), done.
remote: Total 984 (delta 460), reused 984 (delta 460)
Receiving objects: 100% (984/984), 175.71 KiB | 0 bytes/s, done.
Resolving deltas: 100% (460/460), done.
Fetching git://github.com/acesuares/cancan.git
remote: Counting objects: 3168, done.
remote: Compressing objects: 100% (1548/1548), done.
remote: Total 3168 (delta 1585), reused 3168 (delta 1585)
Receiving objects: 100% (3168/3168), 880.80 KiB | 570.00 KiB/s, done.
Resolving deltas: 100% (1585/1585), done.
Fetching git://github.com/acesuares/i18n-active_record.git
remote: Counting objects: 86, done.
remote: Compressing objects: 100% (52/52), done.
remote: Total 86 (delta 25), reused 86 (delta 25)
Receiving objects: 100% (86/86), 16.94 KiB | 0 bytes/s, done.
Resolving deltas: 100% (25/25), done.
Fetching git://github.com/acesuares/seed_dump.git
remote: Counting objects: 962, done.
remote: Compressing objects: 100% (479/479), done.
remote: Total 962 (delta 406), reused 962 (delta 406)
Receiving objects: 100% (962/962), 150.25 KiB | 0 bytes/s, done.
Resolving deltas: 100% (406/406), done.
Fetching gem metadata from https://rubygems.org/.........
Fetching additional metadata from https://rubygems.org/..
Resolving dependencies...
Installing rake (10.0.4)
Installing i18n (0.6.11)
Installing multi_json (1.10.1)
Installing activesupport (3.2.12)
Installing builder (3.0.4)
Installing activemodel (3.2.12)
Installing erubis (2.7.0)
Installing journey (1.0.4)
Installing rack (1.4.5)
Installing rack-cache (1.2)
Installing rack-test (0.6.2)
Installing hike (1.2.3)
Installing tilt (1.4.1)
Installing sprockets (2.2.2)
Installing actionpack (3.2.12)
Installing mime-types (1.25.1)
Installing polyglot (0.3.5)
Installing treetop (1.4.15)
Installing mail (2.4.4)
Installing actionmailer (3.2.12)
Installing arel (3.0.3)
Installing tzinfo (0.3.41)
Installing activerecord (3.2.12)
Installing activeresource (3.2.12)
Installing addressable (2.3.6)
Installing bcrypt (3.1.7)
Using bundler (1.5.1)
Using cancan (2.0.0.alpha) from git://github.com/acesuares/cancan.git (at 2.0)
Installing highline (1.6.21)
Installing net-ssh (2.9.1)
Installing net-scp (1.2.1)
Installing net-sftp (2.1.2)
Installing net-ssh-gateway (1.2.0)
Installing capistrano (2.15.5)
Installing mini_portile (0.6.0)
Building nokogiri using packaged libraries.
Gem::Ext::BuildError: ERROR: Failed to build gem native extension.
Building nokogiri using packaged libraries.
libiconv is missing. please visit http://nokogiri.org/tutorials/installing_nokogiri.html for help with installing dependencies.
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of necessary
libraries and/or headers. Check the mkmf.log file for more details. You may
need configuration options.
Provided configuration options:
--with-opt-dir
--without-opt-dir
--with-opt-include
--without-opt-include=${opt-dir}/include
--with-opt-lib
--without-opt-lib=${opt-dir}/lib
--with-make-prog
--without-make-prog
--srcdir=.
--curdir
--ruby=/Users/runycalmera/.rvm/rubies/ruby-2.0.0-p353/bin/ruby
--help
--clean
--use-system-libraries
--enable-static
--disable-static
--with-zlib-dir
--without-zlib-dir
--with-zlib-include
--without-zlib-include=${zlib-dir}/include
--with-zlib-lib
--without-zlib-lib=${zlib-dir}/lib
--enable-cross-build
--disable-cross-build
extconf failed, exit code 1
Gem files will remain installed in /Users/runycalmera/.rvm/gems/ruby-2.0.0-p353@MyApp/gems/nokogiri-1.6.3.1 for inspection.
Results logged to /Users/runycalmera/.rvm/gems/ruby-2.0.0-p353@MyApp/extensions/x86_64-darwin-12/2.0.0-static/nokogiri-1.6.3.1/gem_make.out
An error occurred while installing nokogiri (1.6.3.1), and Bundler cannot
continue.
Make sure that
gem install nokogiri -v '1.6.3.1'
succeeds before bundling.The git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run
bundle install
before trying to start your applicationresources :users do
end
The git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run
bundle install
before trying to start your applicationThe git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run
bundle install
before trying to start your applicationThe git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run
bundle install
before trying to start your applicationThe git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run
bundle install
before trying to start your applicationThe git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run
bundle install
before trying to start your applicationThe git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run
bundle install
before trying to start your applicationThe git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run
bundle install
before trying to start your applicationThe git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run
bundle install
before trying to start your applicationThe git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run
bundle install
before trying to start your applicationThe git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run
bundle install
before trying to start your applicationInitialized empty Git repository in /Users/runycalmera/railsprojects/MyApp/.git/
[master (root-commit) 77e32b3] * Initial
57 files changed, 1573 insertions(+)
create mode 100644 .gitignore
create mode 100644 .ruby-gemset
create mode 100644 .ruby-version
create mode 100644 Gemfile
create mode 100644 README.rdoc
create mode 100644 Rakefile
create mode 100644 app/assets/images/rails.png
create mode 100644 app/assets/javascripts/application.js
create mode 100644 app/assets/javascripts/ckeditor/config.js
create mode 100644 app/assets/stylesheets/application.css
create mode 100644 app/controllers/application_controller.rb
create mode 100644 app/controllers/users_controller.rb
create mode 100644 app/helpers/application_helper.rb
create mode 100644 app/mailers/.gitkeep
create mode 100644 app/models/.gitkeep
create mode 100644 app/models/ability.rb
create mode 100644 app/models/user.rb
create mode 100644 app/views/layouts/application.html.erb
create mode 100644 config.ru
create mode 100644 config/application.rb
create mode 100644 config/boot.rb
create mode 100644 config/database.yml
create mode 100644 config/deploy.rb
create mode 100644 config/environment.rb
create mode 100644 config/environments/development.rb
create mode 100644 config/environments/production.rb
create mode 100644 config/environments/test.rb
create mode 100644 config/initializers/backtrace_silencers.rb
create mode 100644 config/initializers/inflections.rb
create mode 100644 config/initializers/mime_types.rb
create mode 100644 config/initializers/secret_token.rb
create mode 100644 config/initializers/session_store.rb
create mode 100644 config/initializers/wrap_parameters.rb
create mode 100644 config/locales/en.yml
create mode 100644 config/routes.rb
create mode 100644 config/unicorn.rb
create mode 100644 db/migrate/20140902051845_devise_create_users.rb
create mode 100644 db/migrate/20140902051846_inline_forms_create_join_table_user_role.rb
create mode 100644 db/migrate/20140902051848_inline_forms_create_view_for_translations.rb
create mode 100644 db/seeds.rb
create mode 100644 doc/README_FOR_APP
create mode 100644 lib/assets/.gitkeep
create mode 100644 lib/tasks/.gitkeep
create mode 100644 log/.gitkeep
create mode 100644 public/404.html
create mode 100644 public/422.html
create mode 100644 public/500.html
create mode 100644 public/favicon.ico
create mode 100644 public/index.html
create mode 100644 public/robots.txt
create mode 100755 script/rails
create mode 100644 spec/factories/inline_forms.rb
create mode 100644 spec/fixtures/images/rails.png
create mode 100644 spec/spec_helper.rb
create mode 100644 vendor/assets/javascripts/.gitkeep
create mode 100644 vendor/assets/stylesheets/.gitkeep
create mode 100644 vendor/plugins/.gitkeep
Installing example application...
The git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run
bundle install
before trying to start your applicationThe git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run
bundle install
before trying to start your applicationThe git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run
bundle install
before trying to start your applicationThe git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run
bundle install
before trying to start your applicationDone! Now point your browser to http://localhost:3000/apartments !
Press ctlr-C to quit...
The git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run
bundle install
before trying to start your applicationMacintosh:railsprojects runycalmera$ bundle install
Bundler::GemfileNotFound
Macintosh:railsprojects runycalmera$ cd MyApp
Macintosh:MyApp runycalmera$ bundle install
Updating git://github.com/acesuares/will_paginate.git
Updating git://github.com/acesuares/tabs_on_rails.git
Updating git://github.com/acesuares/cancan.git
Updating git://github.com/acesuares/i18n-active_record.git
Updating git://github.com/acesuares/seed_dump.git
Fetching gem metadata from https://rubygems.org/.........
Fetching additional metadata from https://rubygems.org/..
Resolving dependencies...
Using rake (10.0.4)
Using i18n (0.6.11)
Using multi_json (1.10.1)
Using activesupport (3.2.12)
Using builder (3.0.4)
Using activemodel (3.2.12)
Using erubis (2.7.0)
Using journey (1.0.4)
Using rack (1.4.5)
Using rack-cache (1.2)
Using rack-test (0.6.2)
Using hike (1.2.3)
Using tilt (1.4.1)
Using sprockets (2.2.2)
Using actionpack (3.2.12)
Using mime-types (1.25.1)
Using polyglot (0.3.5)
Using treetop (1.4.15)
Using mail (2.4.4)
Using actionmailer (3.2.12)
Using arel (3.0.3)
Using tzinfo (0.3.41)
Using activerecord (3.2.12)
Using activeresource (3.2.12)
Using addressable (2.3.6)
Using bcrypt (3.1.7)
Using bundler (1.5.1)
Using cancan (2.0.0.alpha) from git://github.com/acesuares/cancan.git (at 2.0)
Using highline (1.6.21)
Using net-ssh (2.9.1)
Using net-scp (1.2.1)
Using net-sftp (2.1.2)
Using net-ssh-gateway (1.2.0)
Using capistrano (2.15.5)
Using mini_portile (0.6.0)
Building nokogiri using packaged libraries.
Gem::Ext::BuildError: ERROR: Failed to build gem native extension.
Building nokogiri using packaged libraries.
libiconv is missing. please visit http://nokogiri.org/tutorials/installing_nokogiri.html for help with installing dependencies.
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of necessary
libraries and/or headers. Check the mkmf.log file for more details. You may
need configuration options.
Provided configuration options:
--with-opt-dir
--without-opt-dir
--with-opt-include
--without-opt-include=${opt-dir}/include
--with-opt-lib
--without-opt-lib=${opt-dir}/lib
--with-make-prog
--without-make-prog
--srcdir=.
--curdir
--ruby=/Users/runycalmera/.rvm/rubies/ruby-2.0.0-p353/bin/ruby
--help
--clean
--use-system-libraries
--enable-static
--disable-static
--with-zlib-dir
--without-zlib-dir
--with-zlib-include
--without-zlib-include=${zlib-dir}/include
--with-zlib-lib
--without-zlib-lib=${zlib-dir}/lib
--enable-cross-build
--disable-cross-build
extconf failed, exit code 1
Gem files will remain installed in /Users/runycalmera/.rvm/gems/ruby-2.0.0-p353@MyApp/gems/nokogiri-1.6.3.1 for inspection.
Results logged to /Users/runycalmera/.rvm/gems/ruby-2.0.0-p353@MyApp/extensions/x86_64-darwin-12/2.0.0-static/nokogiri-1.6.3.1/gem_make.out
An error occurred while installing nokogiri (1.6.3.1), and Bundler cannot
continue.
Make sure that
gem install nokogiri -v '1.6.3.1'
succeeds before bundling.Macintosh:MyApp runycalmera$ gem install nokogiri -v '1.6.3.1'
Building native extensions. This could take a while...
Building nokogiri using packaged libraries.
ERROR: Error installing nokogiri:
ERROR: Failed to build gem native extension.
Building nokogiri using packaged libraries.
libiconv is missing. please visit http://nokogiri.org/tutorials/installing_nokogiri.html for help with installing dependencies.
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of necessary
libraries and/or headers. Check the mkmf.log file for more details. You may
need configuration options.
Provided configuration options:
--with-opt-dir
--without-opt-dir
--with-opt-include
--without-opt-include=${opt-dir}/include
--with-opt-lib
--without-opt-lib=${opt-dir}/lib
--with-make-prog
--without-make-prog
--srcdir=.
--curdir
--ruby=/Users/runycalmera/.rvm/rubies/ruby-2.0.0-p353/bin/ruby
--help
--clean
--use-system-libraries
--enable-static
--disable-static
--with-zlib-dir
--without-zlib-dir
--with-zlib-include
--without-zlib-include=${zlib-dir}/include
--with-zlib-lib
--without-zlib-lib=${zlib-dir}/lib
--enable-cross-build
--disable-cross-build
extconf failed, exit code 1
Gem files will remain installed in /Users/runycalmera/.rvm/gems/ruby-2.0.0-p353@MyApp/gems/nokogiri-1.6.3.1 for inspection.
Results logged to /Users/runycalmera/.rvm/gems/ruby-2.0.0-p353@MyApp/extensions/x86_64-darwin-12/2.0.0-static/nokogiri-1.6.3.1/gem_make.out
Macintosh:MyApp runycalmera$ rails server
Rails is not currently installed on this system. To get the latest version, simply type:
You can then rerun your "rails" command.
Macintosh:MyApp runycalmera$ sudo gem install rails
WARNING: Improper use of the sudo command could lead to data loss
or the deletion of important system files. Please double-check your
typing when using sudo. Type "man sudo" for more information.
To proceed, enter your password, or type Ctrl-C to abort.
Password:
Fetching: i18n-0.6.11.gem (100%)
Successfully installed i18n-0.6.11
Fetching: thread_safe-0.3.4.gem (100%)
Successfully installed thread_safe-0.3.4
Fetching: tzinfo-1.2.2.gem (100%)
Successfully installed tzinfo-1.2.2
Fetching: minitest-5.4.1.gem (100%)
Successfully installed minitest-5.4.1
Fetching: activesupport-4.1.5.gem (100%)
Successfully installed activesupport-4.1.5
Fetching: rack-1.5.2.gem (100%)
Successfully installed rack-1.5.2
Fetching: rack-test-0.6.2.gem (100%)
Successfully installed rack-test-0.6.2
Fetching: builder-3.2.2.gem (100%)
Successfully installed builder-3.2.2
Fetching: erubis-2.7.0.gem (100%)
Successfully installed erubis-2.7.0
Fetching: actionview-4.1.5.gem (100%)
Successfully installed actionview-4.1.5
Fetching: actionpack-4.1.5.gem (100%)
Successfully installed actionpack-4.1.5
Fetching: activemodel-4.1.5.gem (100%)
Successfully installed activemodel-4.1.5
Fetching: arel-5.0.1.20140414130214.gem (100%)
Successfully installed arel-5.0.1.20140414130214
Fetching: activerecord-4.1.5.gem (100%)
Successfully installed activerecord-4.1.5
Fetching: mime-types-1.25.1.gem (100%)
Successfully installed mime-types-1.25.1
Fetching: polyglot-0.3.5.gem (100%)
Successfully installed polyglot-0.3.5
Fetching: treetop-1.4.15.gem (100%)
Successfully installed treetop-1.4.15
Fetching: mail-2.5.4.gem (100%)
Successfully installed mail-2.5.4
Fetching: actionmailer-4.1.5.gem (100%)
Successfully installed actionmailer-4.1.5
Fetching: thor-0.19.1.gem (100%)
Successfully installed thor-0.19.1
Fetching: railties-4.1.5.gem (100%)
Successfully installed railties-4.1.5
Fetching: hike-1.2.3.gem (100%)
Successfully installed hike-1.2.3
Fetching: multi_json-1.10.1.gem (100%)
Successfully installed multi_json-1.10.1
Fetching: tilt-1.4.1.gem (100%)
Successfully installed tilt-1.4.1
Fetching: sprockets-2.12.1.gem (100%)
Successfully installed sprockets-2.12.1
Fetching: sprockets-rails-2.1.3.gem (100%)
Successfully installed sprockets-rails-2.1.3
Fetching: rails-4.1.5.gem (100%)
Successfully installed rails-4.1.5
Parsing documentation for actionmailer-4.1.5
Installing ri documentation for actionmailer-4.1.5
Parsing documentation for actionpack-4.1.5
Installing ri documentation for actionpack-4.1.5
Parsing documentation for actionview-4.1.5
Installing ri documentation for actionview-4.1.5
Parsing documentation for activemodel-4.1.5
Installing ri documentation for activemodel-4.1.5
Parsing documentation for activerecord-4.1.5
Installing ri documentation for activerecord-4.1.5
Parsing documentation for activesupport-4.1.5
unable to convert "\x80" from ASCII-8BIT to UTF-8 for lib/active_support/values/unicode_tables.dat, skipping
Installing ri documentation for activesupport-4.1.5
Parsing documentation for arel-5.0.1.20140414130214
Installing ri documentation for arel-5.0.1.20140414130214
Parsing documentation for builder-3.2.2
Installing ri documentation for builder-3.2.2
Parsing documentation for erubis-2.7.0
Installing ri documentation for erubis-2.7.0
Parsing documentation for hike-1.2.3
Installing ri documentation for hike-1.2.3
Parsing documentation for i18n-0.6.11
Installing ri documentation for i18n-0.6.11
Parsing documentation for mail-2.5.4
unable to convert "\x80" from ASCII-8BIT to UTF-8 for lib/mail/values/unicode_tables.dat, skipping
Installing ri documentation for mail-2.5.4
Parsing documentation for mime-types-1.25.1
Installing ri documentation for mime-types-1.25.1
Parsing documentation for minitest-5.4.1
Installing ri documentation for minitest-5.4.1
Parsing documentation for multi_json-1.10.1
Installing ri documentation for multi_json-1.10.1
Parsing documentation for polyglot-0.3.5
Installing ri documentation for polyglot-0.3.5
Parsing documentation for rack-1.5.2
Installing ri documentation for rack-1.5.2
Parsing documentation for rack-test-0.6.2
Installing ri documentation for rack-test-0.6.2
Parsing documentation for rails-4.1.5
unable to convert "\xFF" from ASCII-8BIT to UTF-8 for guides/assets/images/akshaysurve.jpg, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/belongs_to.png, skipping
unable to convert "\xF4" from ASCII-8BIT to UTF-8 for guides/assets/images/book_icon.gif, skipping
unable to convert "\x91" from ASCII-8BIT to UTF-8 for guides/assets/images/bullet.gif, skipping
unable to convert "\xF5" from ASCII-8BIT to UTF-8 for guides/assets/images/chapters_icon.gif, skipping
unable to convert "\xF5" from ASCII-8BIT to UTF-8 for guides/assets/images/check_bullet.gif, skipping
unable to convert "\xF4" from ASCII-8BIT to UTF-8 for guides/assets/images/credits_pic_blank.gif, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/csrf.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/edge_badge.png, skipping
unable to convert "\x9E" from ASCII-8BIT to UTF-8 for guides/assets/images/favicon.ico, skipping
unable to convert "\xF0" from ASCII-8BIT to UTF-8 for guides/assets/images/feature_tile.gif, skipping
unable to convert "\xF0" from ASCII-8BIT to UTF-8 for guides/assets/images/footer_tile.gif, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/fxn.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/getting_started/article_with_comments.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/getting_started/challenge.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/getting_started/confirm_dialog.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/getting_started/forbidden_attributes_for_new_article.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/getting_started/form_with_errors.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/getting_started/index_action_with_edit_link.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/getting_started/new_article.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/getting_started/rails_welcome.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/getting_started/routing_error_no_controller.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/getting_started/routing_error_no_route_matches.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/getting_started/show_action_for_articles.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/getting_started/template_is_missing_articles_new.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/getting_started/unknown_action_create_for_articles.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/getting_started/unknown_action_new_for_articles.png, skipping
unable to convert "\xF0" from ASCII-8BIT to UTF-8 for guides/assets/images/grey_bullet.gif, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/habtm.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/has_many.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/has_many_through.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/has_one.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/has_one_through.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/header_backdrop.png, skipping
unable to convert "\xF0" from ASCII-8BIT to UTF-8 for guides/assets/images/header_tile.gif, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/i18n/demo_html_safe.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/i18n/demo_localized_pirate.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/i18n/demo_translated_en.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/i18n/demo_translated_pirate.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/i18n/demo_translation_missing.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/i18n/demo_untranslated.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/callouts/1.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/callouts/10.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/callouts/11.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/callouts/12.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/callouts/13.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/callouts/14.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/callouts/15.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/callouts/2.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/callouts/3.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/callouts/4.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/callouts/5.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/callouts/6.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/callouts/7.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/callouts/8.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/callouts/9.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/caution.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/example.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/home.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/important.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/next.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/note.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/prev.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/tip.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/up.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/icons/warning.png, skipping
unable to convert "\xF5" from ASCII-8BIT to UTF-8 for guides/assets/images/nav_arrow.gif, skipping
unable to convert "\xFF" from ASCII-8BIT to UTF-8 for guides/assets/images/oscardelben.jpg, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/polymorphic.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/radar.png, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/rails4_features.png, skipping
unable to convert "\xFF" from ASCII-8BIT to UTF-8 for guides/assets/images/rails_guides_kindle_cover.jpg, skipping
unable to convert "\xEC" from ASCII-8BIT to UTF-8 for guides/assets/images/rails_guides_logo.gif, skipping
unable to convert "\x8C" from ASCII-8BIT to UTF-8 for guides/assets/images/rails_logo_remix.gif, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/session_fixation.png, skipping
unable to convert "\x80" from ASCII-8BIT to UTF-8 for guides/assets/images/tab_grey.gif, skipping
unable to convert "\x80" from ASCII-8BIT to UTF-8 for guides/assets/images/tab_info.gif, skipping
unable to convert "\x80" from ASCII-8BIT to UTF-8 for guides/assets/images/tab_note.gif, skipping
unable to convert "\x80" from ASCII-8BIT to UTF-8 for guides/assets/images/tab_red.gif, skipping
unable to convert "\x80" from ASCII-8BIT to UTF-8 for guides/assets/images/tab_yellow.gif, skipping
unable to convert "\x89" from ASCII-8BIT to UTF-8 for guides/assets/images/tab_yellow.png, skipping
unable to convert "\xFF" from ASCII-8BIT to UTF-8 for guides/assets/images/vijaydev.jpg, skipping
Installing ri documentation for rails-4.1.5
Parsing documentation for railties-4.1.5
Installing ri documentation for railties-4.1.5
Parsing documentation for sprockets-2.12.1
Installing ri documentation for sprockets-2.12.1
Parsing documentation for sprockets-rails-2.1.3
Installing ri documentation for sprockets-rails-2.1.3
Parsing documentation for thor-0.19.1
Installing ri documentation for thor-0.19.1
Parsing documentation for thread_safe-0.3.4
Installing ri documentation for thread_safe-0.3.4
Parsing documentation for tilt-1.4.1
Installing ri documentation for tilt-1.4.1
Parsing documentation for treetop-1.4.15
Installing ri documentation for treetop-1.4.15
Parsing documentation for tzinfo-1.2.2
Installing ri documentation for tzinfo-1.2.2
27 gems installed
Macintosh:MyApp runycalmera$ rails server
The git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run
bundle install
before trying to start your applicationMacintosh:MyApp runycalmera$ bundle install
Updating git://github.com/acesuares/will_paginate.git
Updating git://github.com/acesuares/tabs_on_rails.git
Updating git://github.com/acesuares/cancan.git
Updating git://github.com/acesuares/i18n-active_record.git
Updating git://github.com/acesuares/seed_dump.git
Fetching gem metadata from https://rubygems.org/.........
Fetching additional metadata from https://rubygems.org/..
Resolving dependencies...
Using rake (10.0.4)
Using i18n (0.6.11)
Using multi_json (1.10.1)
Using activesupport (3.2.12)
Using builder (3.0.4)
Using activemodel (3.2.12)
Using erubis (2.7.0)
Using journey (1.0.4)
Using rack (1.4.5)
Using rack-cache (1.2)
Using rack-test (0.6.2)
Using hike (1.2.3)
Using tilt (1.4.1)
Using sprockets (2.2.2)
Using actionpack (3.2.12)
Using mime-types (1.25.1)
Using polyglot (0.3.5)
Using treetop (1.4.15)
Using mail (2.4.4)
Using actionmailer (3.2.12)
Using arel (3.0.3)
Using tzinfo (0.3.41)
Using activerecord (3.2.12)
Using activeresource (3.2.12)
Using addressable (2.3.6)
Using bcrypt (3.1.7)
Using bundler (1.5.1)
Using cancan (2.0.0.alpha) from git://github.com/acesuares/cancan.git (at 2.0)
Using highline (1.6.21)
Using net-ssh (2.9.1)
Using net-scp (1.2.1)
Using net-sftp (2.1.2)
Using net-ssh-gateway (1.2.0)
Using capistrano (2.15.5)
Using mini_portile (0.6.0)
Building nokogiri using packaged libraries.
Gem::Ext::BuildError: ERROR: Failed to build gem native extension.
Building nokogiri using packaged libraries.
libiconv is missing. please visit http://nokogiri.org/tutorials/installing_nokogiri.html for help with installing dependencies.
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of necessary
libraries and/or headers. Check the mkmf.log file for more details. You may
need configuration options.
Provided configuration options:
--with-opt-dir
--without-opt-dir
--with-opt-include
--without-opt-include=${opt-dir}/include
--with-opt-lib
--without-opt-lib=${opt-dir}/lib
--with-make-prog
--without-make-prog
--srcdir=.
--curdir
--ruby=/Users/runycalmera/.rvm/rubies/ruby-2.0.0-p353/bin/ruby
--help
--clean
--use-system-libraries
--enable-static
--disable-static
--with-zlib-dir
--without-zlib-dir
--with-zlib-include
--without-zlib-include=${zlib-dir}/include
--with-zlib-lib
--without-zlib-lib=${zlib-dir}/lib
--enable-cross-build
--disable-cross-build
extconf failed, exit code 1
Gem files will remain installed in /Users/runycalmera/.rvm/gems/ruby-2.0.0-p353@MyApp/gems/nokogiri-1.6.3.1 for inspection.
Results logged to /Users/runycalmera/.rvm/gems/ruby-2.0.0-p353@MyApp/extensions/x86_64-darwin-12/2.0.0-static/nokogiri-1.6.3.1/gem_make.out
An error occurred while installing nokogiri (1.6.3.1), and Bundler cannot
continue.
Make sure that
gem install nokogiri -v '1.6.3.1'
succeeds before bundling.Macintosh:MyApp runycalmera$ rails server
The git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run
bundle install
before trying to start your applicationMacintosh:MyApp runycalmera$ bundle install
Updating git://github.com/acesuares/will_paginate.git
Updating git://github.com/acesuares/tabs_on_rails.git
Updating git://github.com/acesuares/cancan.git
Updating git://github.com/acesuares/i18n-active_record.git
Updating git://github.com/acesuares/seed_dump.git
Fetching gem metadata from https://rubygems.org/.........
Fetching additional metadata from https://rubygems.org/..
Resolving dependencies...
Using rake (10.0.4)
Using i18n (0.6.11)
Using multi_json (1.10.1)
Using activesupport (3.2.12)
Using builder (3.0.4)
Using activemodel (3.2.12)
Using erubis (2.7.0)
Using journey (1.0.4)
Using rack (1.4.5)
Using rack-cache (1.2)
Using rack-test (0.6.2)
Using hike (1.2.3)
Using tilt (1.4.1)
Using sprockets (2.2.2)
Using actionpack (3.2.12)
Using mime-types (1.25.1)
Using polyglot (0.3.5)
Using treetop (1.4.15)
Using mail (2.4.4)
Using actionmailer (3.2.12)
Using arel (3.0.3)
Using tzinfo (0.3.41)
Using activerecord (3.2.12)
Using activeresource (3.2.12)
Using addressable (2.3.6)
Using bcrypt (3.1.7)
Using bundler (1.5.1)
Using cancan (2.0.0.alpha) from git://github.com/acesuares/cancan.git (at 2.0)
Using highline (1.6.21)
Using net-ssh (2.9.1)
Using net-scp (1.2.1)
Using net-sftp (2.1.2)
Using net-ssh-gateway (1.2.0)
Using capistrano (2.15.5)
Using mini_portile (0.6.0)
Building nokogiri using packaged libraries.
Gem::Ext::BuildError: ERROR: Failed to build gem native extension.
Building nokogiri using packaged libraries.
libiconv is missing. please visit http://nokogiri.org/tutorials/installing_nokogiri.html for help with installing dependencies.
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of necessary
libraries and/or headers. Check the mkmf.log file for more details. You may
need configuration options.
Provided configuration options:
--with-opt-dir
--without-opt-dir
--with-opt-include
--without-opt-include=${opt-dir}/include
--with-opt-lib
--without-opt-lib=${opt-dir}/lib
--with-make-prog
--without-make-prog
--srcdir=.
--curdir
--ruby=/Users/runycalmera/.rvm/rubies/ruby-2.0.0-p353/bin/ruby
--help
--clean
--use-system-libraries
--enable-static
--disable-static
--with-zlib-dir
--without-zlib-dir
--with-zlib-include
--without-zlib-include=${zlib-dir}/include
--with-zlib-lib
--without-zlib-lib=${zlib-dir}/lib
--enable-cross-build
--disable-cross-build
extconf failed, exit code 1
Gem files will remain installed in /Users/runycalmera/.rvm/gems/ruby-2.0.0-p353@MyApp/gems/nokogiri-1.6.3.1 for inspection.
Results logged to /Users/runycalmera/.rvm/gems/ruby-2.0.0-p353@MyApp/extensions/x86_64-darwin-12/2.0.0-static/nokogiri-1.6.3.1/gem_make.out
An error occurred while installing nokogiri (1.6.3.1), and Bundler cannot
continue.
Make sure that
gem install nokogiri -v '1.6.3.1'
succeeds before bundling.Macintosh:MyApp runycalmera$ gem install nokogiri
Building native extensions. This could take a while...
Building nokogiri using packaged libraries.
ERROR: Error installing nokogiri:
ERROR: Failed to build gem native extension.
Building nokogiri using packaged libraries.
libiconv is missing. please visit http://nokogiri.org/tutorials/installing_nokogiri.html for help with installing dependencies.
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of necessary
libraries and/or headers. Check the mkmf.log file for more details. You may
need configuration options.
Provided configuration options:
--with-opt-dir
--without-opt-dir
--with-opt-include
--without-opt-include=${opt-dir}/include
--with-opt-lib
--without-opt-lib=${opt-dir}/lib
--with-make-prog
--without-make-prog
--srcdir=.
--curdir
--ruby=/Users/runycalmera/.rvm/rubies/ruby-2.0.0-p353/bin/ruby
--help
--clean
--use-system-libraries
--enable-static
--disable-static
--with-zlib-dir
--without-zlib-dir
--with-zlib-include
--without-zlib-include=${zlib-dir}/include
--with-zlib-lib
--without-zlib-lib=${zlib-dir}/lib
--enable-cross-build
--disable-cross-build
extconf failed, exit code 1
Gem files will remain installed in /Users/runycalmera/.rvm/gems/ruby-2.0.0-p353@MyApp/gems/nokogiri-1.6.3.1 for inspection.
Results logged to /Users/runycalmera/.rvm/gems/ruby-2.0.0-p353@MyApp/extensions/x86_64-darwin-12/2.0.0-static/nokogiri-1.6.3.1/gem_make.out
Macintosh:MyApp runycalmera$ rails server
The git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run
bundle install
before trying to start your applicationMacintosh:MyApp runycalmera$ bundle install will_paginate
ERROR: "bundle install" was called with arguments ["will_paginate"]
Usage: "bundle install"
Macintosh:MyApp runycalmera$ bundle install
Updating git://github.com/acesuares/will_paginate.git
Updating git://github.com/acesuares/tabs_on_rails.git
Updating git://github.com/acesuares/cancan.git
Updating git://github.com/acesuares/i18n-active_record.git
Updating git://github.com/acesuares/seed_dump.git
Fetching gem metadata from https://rubygems.org/.........
Fetching additional metadata from https://rubygems.org/..
Resolving dependencies...
Using rake (10.0.4)
Using i18n (0.6.11)
Using multi_json (1.10.1)
Using activesupport (3.2.12)
Using builder (3.0.4)
Using activemodel (3.2.12)
Using erubis (2.7.0)
Using journey (1.0.4)
Using rack (1.4.5)
Using rack-cache (1.2)
Using rack-test (0.6.2)
Using hike (1.2.3)
Using tilt (1.4.1)
Using sprockets (2.2.2)
Using actionpack (3.2.12)
Using mime-types (1.25.1)
Using polyglot (0.3.5)
Using treetop (1.4.15)
Using mail (2.4.4)
Using actionmailer (3.2.12)
Using arel (3.0.3)
Using tzinfo (0.3.41)
Using activerecord (3.2.12)
Using activeresource (3.2.12)
Using addressable (2.3.6)
Using bcrypt (3.1.7)
Using bundler (1.5.1)
Using cancan (2.0.0.alpha) from git://github.com/acesuares/cancan.git (at 2.0)
Using highline (1.6.21)
Using net-ssh (2.9.1)
Using net-scp (1.2.1)
Using net-sftp (2.1.2)
Using net-ssh-gateway (1.2.0)
Using capistrano (2.15.5)
Using mini_portile (0.6.0)
Building nokogiri using packaged libraries.
Gem::Ext::BuildError: ERROR: Failed to build gem native extension.
Building nokogiri using packaged libraries.
libiconv is missing. please visit http://nokogiri.org/tutorials/installing_nokogiri.html for help with installing dependencies.
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of necessary
libraries and/or headers. Check the mkmf.log file for more details. You may
need configuration options.
Provided configuration options:
--with-opt-dir
--without-opt-dir
--with-opt-include
--without-opt-include=${opt-dir}/include
--with-opt-lib
--without-opt-lib=${opt-dir}/lib
--with-make-prog
--without-make-prog
--srcdir=.
--curdir
--ruby=/Users/runycalmera/.rvm/rubies/ruby-2.0.0-p353/bin/ruby
--help
--clean
--use-system-libraries
--enable-static
--disable-static
--with-zlib-dir
--without-zlib-dir
--with-zlib-include
--without-zlib-include=${zlib-dir}/include
--with-zlib-lib
--without-zlib-lib=${zlib-dir}/lib
--enable-cross-build
--disable-cross-build
extconf failed, exit code 1
Gem files will remain installed in /Users/runycalmera/.rvm/gems/ruby-2.0.0-p353@MyApp/gems/nokogiri-1.6.3.1 for inspection.
Results logged to /Users/runycalmera/.rvm/gems/ruby-2.0.0-p353@MyApp/extensions/x86_64-darwin-12/2.0.0-static/nokogiri-1.6.3.1/gem_make.out
An error occurred while installing nokogiri (1.6.3.1), and Bundler cannot
continue.
Make sure that
gem install nokogiri -v '1.6.3.1'
succeeds before bundling.Macintosh:MyApp runycalmera$ rails server
The git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run
bundle install
before trying to start your applicationMacintosh:MyApp runycalmera$ gem install nokogiri -v '1.6.3.1'
Building native extensions. This could take a while...
Building nokogiri using packaged libraries.
ERROR: Error installing nokogiri:
ERROR: Failed to build gem native extension.
Building nokogiri using packaged libraries.
libiconv is missing. please visit http://nokogiri.org/tutorials/installing_nokogiri.html for help with installing dependencies.
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of necessary
libraries and/or headers. Check the mkmf.log file for more details. You may
need configuration options.
Provided configuration options:
--with-opt-dir
--without-opt-dir
--with-opt-include
--without-opt-include=${opt-dir}/include
--with-opt-lib
--without-opt-lib=${opt-dir}/lib
--with-make-prog
--without-make-prog
--srcdir=.
--curdir
--ruby=/Users/runycalmera/.rvm/rubies/ruby-2.0.0-p353/bin/ruby
--help
--clean
--use-system-libraries
--enable-static
--disable-static
--with-zlib-dir
--without-zlib-dir
--with-zlib-include
--without-zlib-include=${zlib-dir}/include
--with-zlib-lib
--without-zlib-lib=${zlib-dir}/lib
--enable-cross-build
--disable-cross-build
extconf failed, exit code 1
Gem files will remain installed in /Users/runycalmera/.rvm/gems/ruby-2.0.0-p353@MyApp/gems/nokogiri-1.6.3.1 for inspection.
Results logged to /Users/runycalmera/.rvm/gems/ruby-2.0.0-p353@MyApp/extensions/x86_64-darwin-12/2.0.0-static/nokogiri-1.6.3.1/gem_make.out
Macintosh:MyApp runycalmera$ bundle install
Updating git://github.com/acesuares/will_paginate.git
Updating git://github.com/acesuares/tabs_on_rails.git
Updating git://github.com/acesuares/cancan.git
Updating git://github.com/acesuares/i18n-active_record.git
Updating git://github.com/acesuares/seed_dump.git
Fetching gem metadata from https://rubygems.org/.........
Fetching additional metadata from https://rubygems.org/..
Resolving dependencies...
Using rake (10.0.4)
Using i18n (0.6.11)
Using multi_json (1.10.1)
Using activesupport (3.2.12)
Using builder (3.0.4)
Using activemodel (3.2.12)
Using erubis (2.7.0)
Using journey (1.0.4)
Using rack (1.4.5)
Using rack-cache (1.2)
Using rack-test (0.6.2)
Using hike (1.2.3)
Using tilt (1.4.1)
Using sprockets (2.2.2)
Using actionpack (3.2.12)
Using mime-types (1.25.1)
Using polyglot (0.3.5)
Using treetop (1.4.15)
Using mail (2.4.4)
Using actionmailer (3.2.12)
Using arel (3.0.3)
Using tzinfo (0.3.41)
Using activerecord (3.2.12)
Using activeresource (3.2.12)
Using addressable (2.3.6)
Using bcrypt (3.1.7)
Using bundler (1.5.1)
Using cancan (2.0.0.alpha) from git://github.com/acesuares/cancan.git (at 2.0)
Using highline (1.6.21)
Using net-ssh (2.9.1)
Using net-scp (1.2.1)
Using net-sftp (2.1.2)
Using net-ssh-gateway (1.2.0)
Using capistrano (2.15.5)
Using mini_portile (0.6.0)
Building nokogiri using packaged libraries.
Gem::Ext::BuildError: ERROR: Failed to build gem native extension.
Building nokogiri using packaged libraries.
libiconv is missing. please visit http://nokogiri.org/tutorials/installing_nokogiri.html for help with installing dependencies.
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of necessary
libraries and/or headers. Check the mkmf.log file for more details. You may
need configuration options.
Provided configuration options:
--with-opt-dir
--without-opt-dir
--with-opt-include
--without-opt-include=${opt-dir}/include
--with-opt-lib
--without-opt-lib=${opt-dir}/lib
--with-make-prog
--without-make-prog
--srcdir=.
--curdir
--ruby=/Users/runycalmera/.rvm/rubies/ruby-2.0.0-p353/bin/ruby
--help
--clean
--use-system-libraries
--enable-static
--disable-static
--with-zlib-dir
--without-zlib-dir
--with-zlib-include
--without-zlib-include=${zlib-dir}/include
--with-zlib-lib
--without-zlib-lib=${zlib-dir}/lib
--enable-cross-build
--disable-cross-build
extconf failed, exit code 1
Gem files will remain installed in /Users/runycalmera/.rvm/gems/ruby-2.0.0-p353@MyApp/gems/nokogiri-1.6.3.1 for inspection.
Results logged to /Users/runycalmera/.rvm/gems/ruby-2.0.0-p353@MyApp/extensions/x86_64-darwin-12/2.0.0-static/nokogiri-1.6.3.1/gem_make.out
An error occurred while installing nokogiri (1.6.3.1), and Bundler cannot
continue.
Make sure that
gem install nokogiri -v '1.6.3.1'
succeeds before bundling.Macintosh:MyApp runycalmera$ bundle install nokogiri
ERROR: "bundle install" was called with arguments ["nokogiri"]
Usage: "bundle install"
Macintosh:MyApp runycalmera$ rails server
The git source git://github.com/acesuares/will_paginate.git is not yet checked out. Please run
bundle install
before trying to start your applicationMacintosh:MyApp runycalmera$ bundle install
The text was updated successfully, but these errors were encountered: