Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ bundle install
- [!] There was an error parsing `Gemfile`: syntax error, unexpected tIDENTIFIER, expecting end-of-input - gem 'puma', '~> 3.11'
- ^~~~. Bundler cannot continue.
- # from /home/elender/odin_on_rails/my_first_rails_app/Gemfile:11
- # -------------------------------------------
- # # Use Puma as the app server
- > gem 'puma', '~> 3.11'
- # # Use SCSS for stylesheets
- # -------------------------------------------
- elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ bundle install
- The dependency tzinfo-data (>= 0) will be unused by any of the platforms Bundler is installing for. Bundler is installing for ruby but the dependency is only for x86-mingw32, x86-mswin32, x64-mingw32, java. To add those platforms to the bundle, run `bundle lock --add-platform x86-mingw32 x86-mswin32 x64-mingw32 java`.
- Fetching gem metadata from https://rubygems.org/............
- Fetching gem metadata from https://rubygems.org/..
- Resolving dependencies...
- Using rake 12.3.2
- Using concurrent-ruby 1.1.4
- Using i18n 1.5.3
- Using minitest 5.11.3
- Using thread_safe 0.3.6
- Using tzinfo 1.2.5
- Using activesupport 5.2.2
- Using builder 3.2.3
- Using erubi 1.8.0
- Using mini_portile2 2.4.0
- Using nokogiri 1.10.1
- Using rails-dom-testing 2.0.3
- Using crass 1.0.4
- Using loofah 2.2.3
- Using rails-html-sanitizer 1.0.4
- Using actionview 5.2.2
- Using rack 2.0.6
- Using rack-test 1.1.0
- Using actionpack 5.2.2
- Using nio4r 2.3.1
- Using websocket-extensions 0.1.3
- Using websocket-driver 0.7.0
- Using actioncable 5.2.2
- Using globalid 0.4.2
- Using activejob 5.2.2
- Using mini_mime 1.0.1
- Using mail 2.7.1
- Using actionmailer 5.2.2
- Using activemodel 5.2.2
- Using arel 9.0.0
- Using activerecord 5.2.2
- Using mimemagic 0.3.3
- Using marcel 0.3.3
- Using activestorage 5.2.2
- Using public_suffix 3.0.3
- Using addressable 2.6.0
- Using io-like 0.3.0
- Using archive-zip 0.11.0
- Using bindex 0.5.0
- Using msgpack 1.2.6
- Using bootsnap 1.4.0
- Using bundler 1.17.2
- Using byebug 11.0.0
- Using regexp_parser 1.3.0
- Using xpath 3.2.0
- Using capybara 3.13.2
- Using ffi 1.10.0
- Using childprocess 0.9.0
- Using chromedriver-helper 2.1.0
- Using coffee-script-source 1.12.2
- Using execjs 2.7.0
- Using coffee-script 2.4.1
- Using method_source 0.9.2
- Using thor 0.20.3
- Using railties 5.2.2
- Using coffee-rails 4.2.2
- Using multi_json 1.13.1
- Using jbuilder 2.8.0
- Using rb-fsevent 0.10.3
- Using rb-inotify 0.10.0
- Using ruby_dep 1.5.0
- Using listen 3.1.5
- Using puma 3.12.0
- Using sprockets 3.7.2
- Using sprockets-rails 3.2.1
- Using rails 5.2.2
- Using rubyzip 1.2.2
- Using sass-listen 4.0.0
- Using sass 3.7.3
- Using tilt 2.0.9
- Using sass-rails 5.0.7
- Using selenium-webdriver 3.141.0
- Using spring 2.0.2
- Using spring-watcher-listen 2.0.1
- Fetching sqlite3 1.3.13 (was 1.4.0)
- Installing sqlite3 1.3.13 (was 1.4.0) with native extensions
- Using turbolinks-source 5.2.0
- Using turbolinks 5.2.0
- Using uglifier 4.1.20
- Using web-console 3.7.0
- Bundle complete! 18 Gemfile dependencies, 79 gems now installed.
- Use `bundle info [gemname]` to see where a bundled gem is installed.
- elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ rails generate scaffold car make:string model:string year:integer
- Running via Spring preloader in process 9886
- invoke active_record
- create db/migrate/20190217232857_create_cars.rb
- create app/models/car.rb
- invoke test_unit
- create test/models/car_test.rb
- create test/fixtures/cars.yml
- invoke resource_route
- route resources :cars
- invoke scaffold_controller
- create app/controllers/cars_controller.rb
- invoke erb
- create app/views/cars
- create app/views/cars/index.html.erb
- create app/views/cars/edit.html.erb
- create app/views/cars/show.html.erb
- create app/views/cars/new.html.erb
- create app/views/cars/_form.html.erb
- invoke test_unit
- create test/controllers/cars_controller_test.rb
- create test/system/cars_test.rb
- invoke helper
- create app/helpers/cars_helper.rb
- invoke test_unit
- invoke jbuilder
- create app/views/cars/index.json.jbuilder
- create app/views/cars/show.json.jbuilder
- create app/views/cars/_car.json.jbuilder
- invoke assets
- invoke coffee
- create app/assets/javascripts/cars.coffee
- invoke scss
- create app/assets/stylesheets/cars.scss
- invoke scss
- create app/assets/stylesheets/scaffolds.scss
- elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ rails db:migrate
- == 20190217232857 CreateCars: migrating =======================================
- -- create_table(:cars)
- -> 0.0030s
- == 20190217232857 CreateCars: migrated (0.0033s) ==============================
- elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ rails server
- => Booting Puma
- => Rails 5.2.2 application starting in development
- => Run `rails server -h` for more startup options
- Puma starting in single mode...
- * Version 3.12.0 (ruby 2.6.0-p0), codename: Llamas in Pajamas
- * Min threads: 5, max threads: 5
- * Environment: development
- * Listening on tcp://0.0.0.0:3000
- Use Ctrl-C to stop
- Started GET "/cars" for 127.0.0.1 at 2019-02-17 20:29:50 -0300
- (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
- ↳ /home/elender/.rbenv/versions/2.6.0/lib/ruby/gems/2.6.0/gems/activerecord-5.2.2/lib/active_record/log_subscriber.rb:98
- Processing by CarsController#index as HTML
- Rendering cars/index.html.erb within layouts/application
- Car Load (0.2ms) SELECT "cars".* FROM "cars"
- ↳ app/views/cars/index.html.erb:16
- Rendered cars/index.html.erb within layouts/application (7.7ms)
- Completed 200 OK in 3241ms (Views: 3200.9ms | ActiveRecord: 0.5ms)
- Started GET "/cars/new" for 127.0.0.1 at 2019-02-17 20:29:56 -0300
- Processing by CarsController#new as HTML
- Rendering cars/new.html.erb within layouts/application
- Rendered cars/_form.html.erb (60.5ms)
- Rendered cars/new.html.erb within layouts/application (63.7ms)
- Completed 200 OK in 139ms (Views: 113.6ms | ActiveRecord: 6.1ms)
- Started GET "/cars" for 127.0.0.1 at 2019-02-17 20:30:01 -0300
- Processing by CarsController#index as HTML
- Rendering cars/index.html.erb within layouts/application
- Car Load (0.3ms) SELECT "cars".* FROM "cars"
- ↳ app/views/cars/index.html.erb:16
- Rendered cars/index.html.erb within layouts/application (4.6ms)
- Completed 200 OK in 52ms (Views: 50.8ms | ActiveRecord: 0.3ms)
- elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ pwd
- /home/elender/odin_on_rails/my_first_rails_app
- elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ git init
- Reinitialized existing Git repository in /home/elender/odin_on_rails/my_first_rails_app/.git/
- elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ git add .
- elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ git commit -m "initial commit"
- [master (root-commit) 1fbc3c4] initial commit
- 100 files changed, 1675 insertions(+)
- create mode 100644 .gitignore
- create mode 100644 .ruby-version
- create mode 100644 Gemfile
- create mode 100644 Gemfile.lock
- create mode 100644 README.md
- create mode 100644 Rakefile
- create mode 100644 app/assets/config/manifest.js
- create mode 100644 app/assets/images/.keep
- create mode 100644 app/assets/javascripts/application.js
- create mode 100644 app/assets/javascripts/cable.js
- create mode 100644 app/assets/javascripts/cars.coffee
- create mode 100644 app/assets/javascripts/channels/.keep
- create mode 100644 app/assets/stylesheets/application.css
- create mode 100644 app/assets/stylesheets/cars.scss
- create mode 100644 app/assets/stylesheets/scaffolds.scss
- create mode 100644 app/channels/application_cable/channel.rb
- create mode 100644 app/channels/application_cable/connection.rb
- create mode 100644 app/controllers/application_controller.rb
- create mode 100644 app/controllers/cars_controller.rb
- create mode 100644 app/controllers/concerns/.keep
- create mode 100644 app/helpers/application_helper.rb
- create mode 100644 app/helpers/cars_helper.rb
- create mode 100644 app/jobs/application_job.rb
- create mode 100644 app/mailers/application_mailer.rb
- create mode 100644 app/models/application_record.rb
- create mode 100644 app/models/car.rb
- create mode 100644 app/models/concerns/.keep
- create mode 100644 app/views/cars/_car.json.jbuilder
- create mode 100644 app/views/cars/_form.html.erb
- create mode 100644 app/views/cars/edit.html.erb
- create mode 100644 app/views/cars/index.html.erb
- create mode 100644 app/views/cars/index.json.jbuilder
- create mode 100644 app/views/cars/new.html.erb
- create mode 100644 app/views/cars/show.html.erb
- create mode 100644 app/views/cars/show.json.jbuilder
- create mode 100644 app/views/layouts/application.html.erb
- create mode 100644 app/views/layouts/mailer.html.erb
- create mode 100644 app/views/layouts/mailer.text.erb
- create mode 100755 bin/bundle
- create mode 100755 bin/rails
- create mode 100755 bin/rake
- create mode 100755 bin/setup
- create mode 100755 bin/spring
- create mode 100755 bin/update
- create mode 100755 bin/yarn
- create mode 100644 config.ru
- create mode 100644 config/application.rb
- create mode 100644 config/boot.rb
- create mode 100644 config/cable.yml
- create mode 100644 config/credentials.yml.enc
- create mode 100644 config/database.yml
- 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/application_controller_renderer.rb
- create mode 100644 config/initializers/assets.rb
- create mode 100644 config/initializers/backtrace_silencers.rb
- create mode 100644 config/initializers/content_security_policy.rb
- create mode 100644 config/initializers/cookies_serializer.rb
- create mode 100644 config/initializers/filter_parameter_logging.rb
- create mode 100644 config/initializers/inflections.rb
- create mode 100644 config/initializers/mime_types.rb
- create mode 100644 config/initializers/wrap_parameters.rb
- create mode 100644 config/locales/en.yml
- create mode 100644 config/puma.rb
- create mode 100644 config/routes.rb
- create mode 100644 config/spring.rb
- create mode 100644 config/storage.yml
- create mode 100644 db/migrate/20190217232857_create_cars.rb
- create mode 100644 db/schema.rb
- create mode 100644 db/seeds.rb
- create mode 100644 lib/assets/.keep
- create mode 100644 lib/tasks/.keep
- create mode 100644 log/.keep
- create mode 100644 package.json
- create mode 100644 public/404.html
- create mode 100644 public/422.html
- create mode 100644 public/500.html
- create mode 100644 public/apple-touch-icon-precomposed.png
- create mode 100644 public/apple-touch-icon.png
- create mode 100644 public/favicon.ico
- create mode 100644 public/robots.txt
- create mode 100644 storage/.keep
- create mode 100644 test/application_system_test_case.rb
- create mode 100644 test/controllers/.keep
- create mode 100644 test/controllers/cars_controller_test.rb
- create mode 100644 test/fixtures/.keep
- create mode 100644 test/fixtures/cars.yml
- create mode 100644 test/fixtures/files/.keep
- create mode 100644 test/helpers/.keep
- create mode 100644 test/integration/.keep
- create mode 100644 test/mailers/.keep
- create mode 100644 test/models/.keep
- create mode 100644 test/models/car_test.rb
- create mode 100644 test/system/.keep
- create mode 100644 test/system/cars_test.rb
- create mode 100644 test/test_helper.rb
- create mode 100644 tmp/.keep
- create mode 100644 vendor/.keep
- elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ git remote add origin
- usage: git remote add [<options>] <name> <url>
- -f, --fetch fetch the remote branches
- --tags import all tags and associated objects when fetching
- or do not fetch any tag at all (--no-tags)
- -t, --track <branch> branch(es) to track
- -m, --master <branch>
- master branch
- --mirror[=<push|fetch>]
- set up remote as a mirror to push to or fetch from
- elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ git remote add origin git@github.com:elenderg/my_first_rails_app.git
- elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ git push -u origin master
- The authenticity of host 'github.com (192.30.253.112)' can't be established.
- RSA key fingerprint is SHA256:nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8.
- Are you sure you want to continue connecting (yes/no)? yes
- Warning: Permanently added 'github.com,192.30.253.112' (RSA) to the list of known hosts.
- Counting objects: 112, done.
- Compressing objects: 100% (97/97), done.
- Writing objects: 100% (112/112), 26.66 KiB | 779.00 KiB/s, done.
- Total 112 (delta 2), reused 0 (delta 0)
- remote: Resolving deltas: 100% (2/2), done.
- To github.com:elenderg/my_first_rails_app.git
- * [new branch] master -> master
- Branch 'master' set up to track remote branch 'master' from 'origin'.
- elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ curl https://cli-assets.heroku.com/install.sh | sh
- % Total % Received % Xferd Average Speed Time Time Time Current
- Dload Upload Total Spent Left Speed
- 100 1892 100 1892 0 0 1914 0 --:--:-- --:--:-- --:--:-- 1914
- This script requires superuser access.
- You will be prompted for your password by sudo.
- [sudo] password for elender:
- Installing CLI from https://cli-assets.heroku.com/heroku-linux-x64.tar.xz
- % Total % Received % Xferd Average Speed Time Time Time Current
- Dload Upload Total Spent Left Speed
- 100 16.7M 100 16.7M 0 0 1425k 0 0:00:12 0:00:12 --:--:-- 1256k
- v11.9.0
- heroku installed to /usr/local/bin/heroku
- heroku/7.21.0 linux-x64 node-v11.9.0
- elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ heroku version
- heroku/7.21.0 linux-x64 node-v11.9.0
- elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ heroku keys:add
- Found an SSH public key at /home/elender/.ssh/id_rsa.pub
- ? Would you like to upload it to Heroku? Yes
- Uploading /home/elender/.ssh/id_rsa.pub SSH key... !
- ▸ Invalid credentials provided.
- heroku: Press any key to open up the browser to login or q to exit:
- Logging in... done
- Logged in as [email protected]
- Found an SSH public key at /home/elender/.ssh/id_rsa.pub
- ? Would you like to upload it to Heroku? Yes
- Uploading /home/elender/.ssh/id_rsa.pub SSH key... done
- elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ heroku create
- Creating app... done, ⬢ protected-taiga-93139
- https://protected-taiga-93139.herokuapp.com/ | https://git.heroku.com/protected-taiga-93139.git
- elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ git remote show
- heroku
- origin
- elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ ls
- app bin config config.ru db Gemfile Gemfile.lock lib log package.json public Rakefile README.md storage test tmp vendor
- elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ bundle install --without production
- The dependency tzinfo-data (>= 0) will be unused by any of the platforms Bundler is installing for. Bundler is installing for ruby but the dependency is only for x86-mingw32, x86-mswin32, x64-mingw32, java. To add those platforms to the bundle, run `bundle lock --add-platform x86-mingw32 x86-mswin32 x64-mingw32 java`.
- Fetching gem metadata from https://rubygems.org/.............
- Fetching gem metadata from https://rubygems.org/..
- Resolving dependencies...
- Using rake 12.3.2
- Using concurrent-ruby 1.1.4
- Using i18n 1.5.3
- Using minitest 5.11.3
- Using thread_safe 0.3.6
- Using tzinfo 1.2.5
- Using activesupport 5.2.2
- Using builder 3.2.3
- Using erubi 1.8.0
- Using mini_portile2 2.4.0
- Using nokogiri 1.10.1
- Using rails-dom-testing 2.0.3
- Using crass 1.0.4
- Using loofah 2.2.3
- Using rails-html-sanitizer 1.0.4
- Using actionview 5.2.2
- Using rack 2.0.6
- Using rack-test 1.1.0
- Using actionpack 5.2.2
- Using nio4r 2.3.1
- Using websocket-extensions 0.1.3
- Using websocket-driver 0.7.0
- Using actioncable 5.2.2
- Using globalid 0.4.2
- Using activejob 5.2.2
- Using mini_mime 1.0.1
- Using mail 2.7.1
- Using actionmailer 5.2.2
- Using activemodel 5.2.2
- Using arel 9.0.0
- Using activerecord 5.2.2
- Using mimemagic 0.3.3
- Using marcel 0.3.3
- Using activestorage 5.2.2
- Using public_suffix 3.0.3
- Using addressable 2.6.0
- Using io-like 0.3.0
- Using archive-zip 0.11.0
- Using bindex 0.5.0
- Using msgpack 1.2.6
- Using bootsnap 1.4.0
- Using bundler 1.17.2
- Using byebug 11.0.0
- Using regexp_parser 1.3.0
- Using xpath 3.2.0
- Using capybara 3.13.2
- Using ffi 1.10.0
- Using childprocess 0.9.0
- Using chromedriver-helper 2.1.0
- Using coffee-script-source 1.12.2
- Using execjs 2.7.0
- Using coffee-script 2.4.1
- Using method_source 0.9.2
- Using thor 0.20.3
- Using railties 5.2.2
- Using coffee-rails 4.2.2
- Using multi_json 1.13.1
- Using jbuilder 2.8.0
- Using rb-fsevent 0.10.3
- Using rb-inotify 0.10.0
- Using ruby_dep 1.5.0
- Using listen 3.1.5
- Using puma 3.12.0
- Using sprockets 3.7.2
- Using sprockets-rails 3.2.1
- Using rails 5.2.2
- Using rubyzip 1.2.2
- Using sass-listen 4.0.0
- Using sass 3.7.3
- Using tilt 2.0.9
- Using sass-rails 5.0.7
- Using selenium-webdriver 3.141.0
- Using spring 2.0.2
- Using spring-watcher-listen 2.0.1
- Using sqlite3 1.3.13
- Using turbolinks-source 5.2.0
- Using turbolinks 5.2.0
- Using uglifier 4.1.20
- Using web-console 3.7.0
- Bundle complete! 19 Gemfile dependencies, 79 gems now installed.
- Gems in the group production were not installed.
- Use `bundle info [gemname]` to see where a bundled gem is installed.
- elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ git status
- On branch master
- Your branch is up to date with 'origin/master'.
- Changes not staged for commit:
- (use "git add <file>..." to update what will be committed)
- (use "git checkout -- <file>..." to discard changes in working directory)
- modified: Gemfile
- modified: Gemfile.lock
- modified: config/routes.rb
- no changes added to commit (use "git add" and/or "git commit -a")
- elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ git add .
- elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ git commit -m 'updates for heroku deployment'
- [master 1d59807] updates for heroku deployment
- 3 files changed, 10 insertions(+), 1 deletion(-)
- elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ git push origin master
- Warning: Permanently added the RSA host key for IP address '192.30.253.113' to the list of known hosts.
- Counting objects: 6, done.
- Compressing objects: 100% (6/6), done.
- Writing objects: 100% (6/6), 621 bytes | 621.00 KiB/s, done.
- Total 6 (delta 5), reused 0 (delta 0)
- remote: Resolving deltas: 100% (5/5), completed with 5 local objects.
- To github.com:elenderg/my_first_rails_app.git
- 1fbc3c4..1d59807 master -> master
- elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ git push heroku master
- Counting objects: 118, done.
- Compressing objects: 100% (103/103), done.
- Writing objects: 100% (118/118), 27.11 KiB | 1.00 MiB/s, done.
- Total 118 (delta 7), reused 0 (delta 0)
- remote: Compressing source files... done.
- remote: Building source:
- remote:
- remote: ! Warning: Multiple default buildpacks reported the ability to handle this app. The first buildpack in the list below will be used.
- remote: Detected buildpacks: Ruby,Node.js
- remote: See https://devcenter.heroku.com/articles/buildpacks#buildpack-detect-order
- remote: -----> Ruby app detected
- remote: -----> Compiling Ruby/Rails
- remote: -----> Using Ruby version: ruby-2.6.0
- remote: -----> Installing dependencies using bundler 1.15.2
- remote: Running: bundle install --without development:test --path vendor/bundle --binstubs vendor/bundle/bin -j4 --deployment
- remote: The dependency tzinfo-data (>= 0) will be unused by any of the platforms Bundler is installing for. Bundler is installing for ruby but the dependency is only for x86-mingw32, x86-mswin32, x64-mingw32, java. To add those platforms to the bundle, run `bundle lock --add-platform x86-mingw32 x86-mswin32 x64-mingw32 java`.
- remote: Fetching gem metadata from https://rubygems.org/.........
- remote: Fetching rake 12.3.2
- remote: Installing rake 12.3.2
- remote: Fetching concurrent-ruby 1.1.4
- remote: Fetching thread_safe 0.3.6
- remote: Fetching minitest 5.11.3
- remote: Installing minitest 5.11.3
- remote: Installing thread_safe 0.3.6
- remote: Fetching builder 3.2.3
- remote: Installing concurrent-ruby 1.1.4
- remote: Installing builder 3.2.3
- remote: Fetching erubi 1.8.0
- remote: Fetching mini_portile2 2.4.0
- remote: Installing erubi 1.8.0
- remote: Installing mini_portile2 2.4.0
- remote: Fetching crass 1.0.4
- remote: Installing crass 1.0.4
- remote: Fetching rack 2.0.6
- remote: Fetching nio4r 2.3.1
- remote: Installing rack 2.0.6
- remote: Installing nio4r 2.3.1 with native extensions
- remote: Fetching websocket-extensions 0.1.3
- remote: Installing websocket-extensions 0.1.3
- remote: Fetching mini_mime 1.0.1
- remote: Installing mini_mime 1.0.1
- remote: Fetching arel 9.0.0
- remote: Installing arel 9.0.0
- remote: Fetching mimemagic 0.3.3
- remote: Installing mimemagic 0.3.3
- remote: Fetching msgpack 1.2.6
- remote: Installing msgpack 1.2.6 with native extensions
- remote: Using bundler 1.17.2
- remote: Fetching coffee-script-source 1.12.2
- remote: Installing coffee-script-source 1.12.2
- remote: Fetching execjs 2.7.0
- remote: Installing execjs 2.7.0
- remote: Fetching method_source 0.9.2
- remote: Installing method_source 0.9.2
- remote: Fetching thor 0.20.3
- remote: Installing thor 0.20.3
- remote: Fetching ffi 1.10.0
- remote: Installing ffi 1.10.0 with native extensions
- remote: Fetching multi_json 1.13.1
- remote: Installing multi_json 1.13.1
- remote: Fetching pg 1.1.4
- remote: Installing pg 1.1.4 with native extensions
- remote: Fetching puma 3.12.0
- remote: Installing puma 3.12.0 with native extensions
- remote: Fetching rb-fsevent 0.10.3
- remote: Installing rb-fsevent 0.10.3
- remote: Fetching tilt 2.0.9
- remote: Installing tilt 2.0.9
- remote: Fetching turbolinks-source 5.2.0
- remote: Installing turbolinks-source 5.2.0
- remote: Fetching tzinfo 1.2.5
- remote: Installing tzinfo 1.2.5
- remote: Fetching nokogiri 1.10.1
- remote: Installing nokogiri 1.10.1 with native extensions
- remote: Fetching i18n 1.5.3
- remote: Installing i18n 1.5.3
- remote: Fetching websocket-driver 0.7.0
- remote: Installing websocket-driver 0.7.0 with native extensions
- remote: Fetching mail 2.7.1
- remote: Installing mail 2.7.1
- remote: Fetching rack-test 1.1.0
- remote: Installing rack-test 1.1.0
- remote: Fetching sprockets 3.7.2
- remote: Installing sprockets 3.7.2
- remote: Fetching marcel 0.3.3
- remote: Installing marcel 0.3.3
- remote: Fetching coffee-script 2.4.1
- remote: Installing coffee-script 2.4.1
- remote: Fetching uglifier 4.1.20
- remote: Installing uglifier 4.1.20
- remote: Fetching bootsnap 1.4.0
- remote: Installing bootsnap 1.4.0 with native extensions
- remote: Fetching rb-inotify 0.10.0
- remote: Installing rb-inotify 0.10.0
- remote: Fetching turbolinks 5.2.0
- remote: Installing turbolinks 5.2.0
- remote: Fetching activesupport 5.2.2
- remote: Installing activesupport 5.2.2
- remote: Fetching loofah 2.2.3
- remote: Installing loofah 2.2.3
- remote: Fetching sass-listen 4.0.0
- remote: Installing sass-listen 4.0.0
- remote: Fetching rails-dom-testing 2.0.3
- remote: Installing rails-dom-testing 2.0.3
- remote: Fetching globalid 0.4.2
- remote: Installing globalid 0.4.2
- remote: Fetching activemodel 5.2.2
- remote: Fetching jbuilder 2.8.0
- remote: Installing activemodel 5.2.2
- remote: Installing jbuilder 2.8.0
- remote: Fetching rails-html-sanitizer 1.0.4
- remote: Installing rails-html-sanitizer 1.0.4
- remote: Fetching activejob 5.2.2
- remote: Fetching sass 3.7.3
- remote: Installing activejob 5.2.2
- remote: Installing sass 3.7.3
- remote: Fetching actionview 5.2.2
- remote: Installing actionview 5.2.2
- remote: Fetching activerecord 5.2.2
- remote: Installing activerecord 5.2.2
- remote: Fetching actionpack 5.2.2
- remote: Installing actionpack 5.2.2
- remote: Fetching actioncable 5.2.2
- remote: Fetching actionmailer 5.2.2
- remote: Fetching railties 5.2.2
- remote: Installing actionmailer 5.2.2
- remote: Installing actioncable 5.2.2
- remote: Installing railties 5.2.2
- remote: Fetching sprockets-rails 3.2.1
- remote: Fetching activestorage 5.2.2
- remote: Installing sprockets-rails 3.2.1
- remote: Installing activestorage 5.2.2
- remote: Fetching coffee-rails 4.2.2
- remote: Fetching sass-rails 5.0.7
- remote: Fetching rails 5.2.2
- remote: Installing sass-rails 5.0.7
- remote: Installing coffee-rails 4.2.2
- remote: Installing rails 5.2.2
- remote: Bundle complete! 19 Gemfile dependencies, 61 gems now installed.
- remote: Gems in the groups development and test were not installed.
- remote: Bundled gems are installed into `./vendor/bundle`
- remote: Post-install message from i18n:
- remote:
- remote: HEADS UP! i18n 1.1 changed fallbacks to exclude default locale.
- remote: But that may break your application.
- remote:
- remote: Please check your Rails app for 'config.i18n.fallbacks = true'.
- remote: If you're using I18n (>= 1.1.0) and Rails (< 5.2.2), this should be
- remote: 'config.i18n.fallbacks = [I18n.default_locale]'.
- remote: If not, fallbacks will be broken in your app by I18n 1.1.x.
- remote:
- remote: For more info see:
- remote: https://github.com/svenfuchs/i18n/releases/tag/v1.1.0
- remote:
- remote: Post-install message from sass:
- remote:
- remote: Ruby Sass is deprecated and will be unmaintained as of 26 March 2019.
- remote:
- remote: * If you use Sass as a command-line tool, we recommend using Dart Sass, the new
- remote: primary implementation: https://sass-lang.com/install
- remote:
- remote: * If you use Sass as a plug-in for a Ruby web framework, we recommend using the
- remote: sassc gem: https://github.com/sass/sassc-ruby#readme
- remote:
- remote: * For more details, please refer to the Sass blog:
- remote: http://sass.logdown.com/posts/7081811
- remote:
- remote: Removing bundler (1.15.2)
- remote: Bundle completed (42.64s)
- remote: Cleaning up the bundler cache.
- remote: The dependency tzinfo-data (>= 0) will be unused by any of the platforms Bundler is installing for. Bundler is installing for ruby but the dependency is only for x86-mingw32, x86-mswin32, x64-mingw32, java. To add those platforms to the bundle, run `bundle lock --add-platform x86-mingw32 x86-mswin32 x64-mingw32 java`.
- remote: -----> Installing node-v10.14.1-linux-x64
- remote: -----> Detecting rake tasks
- remote: -----> Preparing app for Rails asset pipeline
- remote: Running: rake assets:precompile
- remote: Yarn executable was not detected in the system.
- remote: Download Yarn at https://yarnpkg.com/en/docs/install
- remote: I, [2019-02-17T23:48:16.302026 #1341] INFO -- : Writing /tmp/build_fd0496a5bc29b55b0624b53ecdeb59c9/public/assets/application-9622f0fe63bfad91bdeaa3a771e86262263840678fd66849b311b6cfb3f7cc85.js
- remote: I, [2019-02-17T23:48:16.302503 #1341] INFO -- : Writing /tmp/build_fd0496a5bc29b55b0624b53ecdeb59c9/public/assets/application-9622f0fe63bfad91bdeaa3a771e86262263840678fd66849b311b6cfb3f7cc85.js.gz
- remote: I, [2019-02-17T23:48:16.352561 #1341] INFO -- : Writing /tmp/build_fd0496a5bc29b55b0624b53ecdeb59c9/public/assets/application-35729bfbaf9967f119234595ed222f7ab14859f304ab0acc5451afb387f637fa.css
- remote: I, [2019-02-17T23:48:16.352719 #1341] INFO -- : Writing /tmp/build_fd0496a5bc29b55b0624b53ecdeb59c9/public/assets/application-35729bfbaf9967f119234595ed222f7ab14859f304ab0acc5451afb387f637fa.css.gz
- remote: Asset precompilation completed (3.90s)
- remote: Cleaning assets
- remote: Running: rake assets:clean
- remote: -----> Detecting rails configuration
- remote:
- remote: ###### WARNING:
- remote:
- remote: Detecting rails configuration failed
- remote: set HEROKU_DEBUG_RAILS_RUNNER=1 to debug
- remote:
- remote: ###### WARNING:
- remote:
- remote: We detected that some binary dependencies required to
- remote: use all the preview features of Active Storage are not
- remote: present on this system.
- remote:
- remote: For more information please see:
- remote: https://devcenter.heroku.com/articles/active-storage-on-heroku
- remote:
- remote:
- remote: ###### WARNING:
- remote:
- remote: No Procfile detected, using the default web server.
- remote: We recommend explicitly declaring how to boot your server process via a Procfile.
- remote: https://devcenter.heroku.com/articles/ruby-default-web-server
- remote:
- remote:
- remote: -----> Discovering process types
- remote: Procfile declares types -> (none)
- remote: Default types for buildpack -> console, rake, web
- remote:
- remote: -----> Compressing...
- remote: Done: 42M
- remote: -----> Launching...
- remote: Released v6
- remote: https://protected-taiga-93139.herokuapp.com/ deployed to Heroku
- remote:
- remote: Verifying deploy... done.
- To https://git.heroku.com/protected-taiga-93139.git
- * [new branch] master -> master
- elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$
Advertisement
Add Comment
Please, Sign In to add comment