elenderg

Untitled

Feb 17th, 2019
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 30.10 KB | None | 0 0
  1. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ bundle install
  2.  
  3. [!] There was an error parsing `Gemfile`: syntax error, unexpected tIDENTIFIER, expecting end-of-input - gem 'puma', '~> 3.11'
  4.      ^~~~. Bundler cannot continue.
  5.  
  6.  #  from /home/elender/odin_on_rails/my_first_rails_app/Gemfile:11
  7.  #  -------------------------------------------
  8.  #  # Use Puma as the app server
  9.  >  gem 'puma', '~> 3.11'
  10.  #  # Use SCSS for stylesheets
  11.  #  -------------------------------------------
  12. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ bundle install
  13. 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`.
  14. Fetching gem metadata from https://rubygems.org/............
  15. Fetching gem metadata from https://rubygems.org/..
  16. Resolving dependencies...
  17. Using rake 12.3.2
  18. Using concurrent-ruby 1.1.4
  19. Using i18n 1.5.3
  20. Using minitest 5.11.3
  21. Using thread_safe 0.3.6
  22. Using tzinfo 1.2.5
  23. Using activesupport 5.2.2
  24. Using builder 3.2.3
  25. Using erubi 1.8.0
  26. Using mini_portile2 2.4.0
  27. Using nokogiri 1.10.1
  28. Using rails-dom-testing 2.0.3
  29. Using crass 1.0.4
  30. Using loofah 2.2.3
  31. Using rails-html-sanitizer 1.0.4
  32. Using actionview 5.2.2
  33. Using rack 2.0.6
  34. Using rack-test 1.1.0
  35. Using actionpack 5.2.2
  36. Using nio4r 2.3.1
  37. Using websocket-extensions 0.1.3
  38. Using websocket-driver 0.7.0
  39. Using actioncable 5.2.2
  40. Using globalid 0.4.2
  41. Using activejob 5.2.2
  42. Using mini_mime 1.0.1
  43. Using mail 2.7.1
  44. Using actionmailer 5.2.2
  45. Using activemodel 5.2.2
  46. Using arel 9.0.0
  47. Using activerecord 5.2.2
  48. Using mimemagic 0.3.3
  49. Using marcel 0.3.3
  50. Using activestorage 5.2.2
  51. Using public_suffix 3.0.3
  52. Using addressable 2.6.0
  53. Using io-like 0.3.0
  54. Using archive-zip 0.11.0
  55. Using bindex 0.5.0
  56. Using msgpack 1.2.6
  57. Using bootsnap 1.4.0
  58. Using bundler 1.17.2
  59. Using byebug 11.0.0
  60. Using regexp_parser 1.3.0
  61. Using xpath 3.2.0
  62. Using capybara 3.13.2
  63. Using ffi 1.10.0
  64. Using childprocess 0.9.0
  65. Using chromedriver-helper 2.1.0
  66. Using coffee-script-source 1.12.2
  67. Using execjs 2.7.0
  68. Using coffee-script 2.4.1
  69. Using method_source 0.9.2
  70. Using thor 0.20.3
  71. Using railties 5.2.2
  72. Using coffee-rails 4.2.2
  73. Using multi_json 1.13.1
  74. Using jbuilder 2.8.0
  75. Using rb-fsevent 0.10.3
  76. Using rb-inotify 0.10.0
  77. Using ruby_dep 1.5.0
  78. Using listen 3.1.5
  79. Using puma 3.12.0
  80. Using sprockets 3.7.2
  81. Using sprockets-rails 3.2.1
  82. Using rails 5.2.2
  83. Using rubyzip 1.2.2
  84. Using sass-listen 4.0.0
  85. Using sass 3.7.3
  86. Using tilt 2.0.9
  87. Using sass-rails 5.0.7
  88. Using selenium-webdriver 3.141.0
  89. Using spring 2.0.2
  90. Using spring-watcher-listen 2.0.1
  91. Fetching sqlite3 1.3.13 (was 1.4.0)
  92. Installing sqlite3 1.3.13 (was 1.4.0) with native extensions
  93. Using turbolinks-source 5.2.0
  94. Using turbolinks 5.2.0
  95. Using uglifier 4.1.20
  96. Using web-console 3.7.0
  97. Bundle complete! 18 Gemfile dependencies, 79 gems now installed.
  98. Use `bundle info [gemname]` to see where a bundled gem is installed.
  99. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ rails generate scaffold car make:string model:string year:integer
  100. Running via Spring preloader in process 9886
  101.       invoke  active_record
  102.       create    db/migrate/20190217232857_create_cars.rb
  103.       create    app/models/car.rb
  104.       invoke    test_unit
  105.       create      test/models/car_test.rb
  106.       create      test/fixtures/cars.yml
  107.       invoke  resource_route
  108.        route    resources :cars
  109.       invoke  scaffold_controller
  110.       create    app/controllers/cars_controller.rb
  111.       invoke    erb
  112.       create      app/views/cars
  113.       create      app/views/cars/index.html.erb
  114.       create      app/views/cars/edit.html.erb
  115.       create      app/views/cars/show.html.erb
  116.       create      app/views/cars/new.html.erb
  117.       create      app/views/cars/_form.html.erb
  118.       invoke    test_unit
  119.       create      test/controllers/cars_controller_test.rb
  120.       create      test/system/cars_test.rb
  121.       invoke    helper
  122.       create      app/helpers/cars_helper.rb
  123.       invoke      test_unit
  124.       invoke    jbuilder
  125.       create      app/views/cars/index.json.jbuilder
  126.       create      app/views/cars/show.json.jbuilder
  127.       create      app/views/cars/_car.json.jbuilder
  128.       invoke  assets
  129.       invoke    coffee
  130.       create      app/assets/javascripts/cars.coffee
  131.       invoke    scss
  132.       create      app/assets/stylesheets/cars.scss
  133.       invoke  scss
  134.       create    app/assets/stylesheets/scaffolds.scss
  135. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ rails db:migrate
  136. == 20190217232857 CreateCars: migrating =======================================
  137. -- create_table(:cars)
  138.    -> 0.0030s
  139. == 20190217232857 CreateCars: migrated (0.0033s) ==============================
  140.  
  141. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ rails server
  142. => Booting Puma
  143. => Rails 5.2.2 application starting in development
  144. => Run `rails server -h` for more startup options
  145. Puma starting in single mode...
  146. * Version 3.12.0 (ruby 2.6.0-p0), codename: Llamas in Pajamas
  147. * Min threads: 5, max threads: 5
  148. * Environment: development
  149. * Listening on tcp://0.0.0.0:3000
  150. Use Ctrl-C to stop
  151. Started GET "/cars" for 127.0.0.1 at 2019-02-17 20:29:50 -0300
  152.    (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
  153.   ↳ /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
  154. Processing by CarsController#index as HTML
  155.   Rendering cars/index.html.erb within layouts/application
  156.   Car Load (0.2ms)  SELECT "cars".* FROM "cars"
  157.   ↳ app/views/cars/index.html.erb:16
  158.   Rendered cars/index.html.erb within layouts/application (7.7ms)
  159. Completed 200 OK in 3241ms (Views: 3200.9ms | ActiveRecord: 0.5ms)
  160.  
  161.  
  162. Started GET "/cars/new" for 127.0.0.1 at 2019-02-17 20:29:56 -0300
  163. Processing by CarsController#new as HTML
  164.   Rendering cars/new.html.erb within layouts/application
  165.   Rendered cars/_form.html.erb (60.5ms)
  166.   Rendered cars/new.html.erb within layouts/application (63.7ms)
  167. Completed 200 OK in 139ms (Views: 113.6ms | ActiveRecord: 6.1ms)
  168.  
  169.  
  170. Started GET "/cars" for 127.0.0.1 at 2019-02-17 20:30:01 -0300
  171. Processing by CarsController#index as HTML
  172.   Rendering cars/index.html.erb within layouts/application
  173.   Car Load (0.3ms)  SELECT "cars".* FROM "cars"
  174.   ↳ app/views/cars/index.html.erb:16
  175.   Rendered cars/index.html.erb within layouts/application (4.6ms)
  176. Completed 200 OK in 52ms (Views: 50.8ms | ActiveRecord: 0.3ms)
  177.  
  178.  
  179.  
  180.  
  181. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ pwd
  182. /home/elender/odin_on_rails/my_first_rails_app
  183. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ git init
  184. Reinitialized existing Git repository in /home/elender/odin_on_rails/my_first_rails_app/.git/
  185. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ git add .
  186. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ git commit -m "initial commit"
  187. [master (root-commit) 1fbc3c4] initial commit
  188.  100 files changed, 1675 insertions(+)
  189.  create mode 100644 .gitignore
  190.  create mode 100644 .ruby-version
  191.  create mode 100644 Gemfile
  192.  create mode 100644 Gemfile.lock
  193.  create mode 100644 README.md
  194.  create mode 100644 Rakefile
  195.  create mode 100644 app/assets/config/manifest.js
  196.  create mode 100644 app/assets/images/.keep
  197.  create mode 100644 app/assets/javascripts/application.js
  198.  create mode 100644 app/assets/javascripts/cable.js
  199.  create mode 100644 app/assets/javascripts/cars.coffee
  200.  create mode 100644 app/assets/javascripts/channels/.keep
  201.  create mode 100644 app/assets/stylesheets/application.css
  202.  create mode 100644 app/assets/stylesheets/cars.scss
  203.  create mode 100644 app/assets/stylesheets/scaffolds.scss
  204.  create mode 100644 app/channels/application_cable/channel.rb
  205.  create mode 100644 app/channels/application_cable/connection.rb
  206.  create mode 100644 app/controllers/application_controller.rb
  207.  create mode 100644 app/controllers/cars_controller.rb
  208.  create mode 100644 app/controllers/concerns/.keep
  209.  create mode 100644 app/helpers/application_helper.rb
  210.  create mode 100644 app/helpers/cars_helper.rb
  211.  create mode 100644 app/jobs/application_job.rb
  212.  create mode 100644 app/mailers/application_mailer.rb
  213.  create mode 100644 app/models/application_record.rb
  214.  create mode 100644 app/models/car.rb
  215.  create mode 100644 app/models/concerns/.keep
  216.  create mode 100644 app/views/cars/_car.json.jbuilder
  217.  create mode 100644 app/views/cars/_form.html.erb
  218.  create mode 100644 app/views/cars/edit.html.erb
  219.  create mode 100644 app/views/cars/index.html.erb
  220.  create mode 100644 app/views/cars/index.json.jbuilder
  221.  create mode 100644 app/views/cars/new.html.erb
  222.  create mode 100644 app/views/cars/show.html.erb
  223.  create mode 100644 app/views/cars/show.json.jbuilder
  224.  create mode 100644 app/views/layouts/application.html.erb
  225.  create mode 100644 app/views/layouts/mailer.html.erb
  226.  create mode 100644 app/views/layouts/mailer.text.erb
  227.  create mode 100755 bin/bundle
  228.  create mode 100755 bin/rails
  229.  create mode 100755 bin/rake
  230.  create mode 100755 bin/setup
  231.  create mode 100755 bin/spring
  232.  create mode 100755 bin/update
  233.  create mode 100755 bin/yarn
  234.  create mode 100644 config.ru
  235.  create mode 100644 config/application.rb
  236.  create mode 100644 config/boot.rb
  237.  create mode 100644 config/cable.yml
  238.  create mode 100644 config/credentials.yml.enc
  239.  create mode 100644 config/database.yml
  240.  create mode 100644 config/environment.rb
  241.  create mode 100644 config/environments/development.rb
  242.  create mode 100644 config/environments/production.rb
  243.  create mode 100644 config/environments/test.rb
  244.  create mode 100644 config/initializers/application_controller_renderer.rb
  245.  create mode 100644 config/initializers/assets.rb
  246.  create mode 100644 config/initializers/backtrace_silencers.rb
  247.  create mode 100644 config/initializers/content_security_policy.rb
  248.  create mode 100644 config/initializers/cookies_serializer.rb
  249.  create mode 100644 config/initializers/filter_parameter_logging.rb
  250.  create mode 100644 config/initializers/inflections.rb
  251.  create mode 100644 config/initializers/mime_types.rb
  252.  create mode 100644 config/initializers/wrap_parameters.rb
  253.  create mode 100644 config/locales/en.yml
  254.  create mode 100644 config/puma.rb
  255.  create mode 100644 config/routes.rb
  256.  create mode 100644 config/spring.rb
  257.  create mode 100644 config/storage.yml
  258.  create mode 100644 db/migrate/20190217232857_create_cars.rb
  259.  create mode 100644 db/schema.rb
  260.  create mode 100644 db/seeds.rb
  261.  create mode 100644 lib/assets/.keep
  262.  create mode 100644 lib/tasks/.keep
  263.  create mode 100644 log/.keep
  264.  create mode 100644 package.json
  265.  create mode 100644 public/404.html
  266.  create mode 100644 public/422.html
  267.  create mode 100644 public/500.html
  268.  create mode 100644 public/apple-touch-icon-precomposed.png
  269.  create mode 100644 public/apple-touch-icon.png
  270.  create mode 100644 public/favicon.ico
  271.  create mode 100644 public/robots.txt
  272.  create mode 100644 storage/.keep
  273.  create mode 100644 test/application_system_test_case.rb
  274.  create mode 100644 test/controllers/.keep
  275.  create mode 100644 test/controllers/cars_controller_test.rb
  276.  create mode 100644 test/fixtures/.keep
  277.  create mode 100644 test/fixtures/cars.yml
  278.  create mode 100644 test/fixtures/files/.keep
  279.  create mode 100644 test/helpers/.keep
  280.  create mode 100644 test/integration/.keep
  281.  create mode 100644 test/mailers/.keep
  282.  create mode 100644 test/models/.keep
  283.  create mode 100644 test/models/car_test.rb
  284.  create mode 100644 test/system/.keep
  285.  create mode 100644 test/system/cars_test.rb
  286.  create mode 100644 test/test_helper.rb
  287.  create mode 100644 tmp/.keep
  288.  create mode 100644 vendor/.keep
  289. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ git remote add origin
  290. usage: git remote add [<options>] <name> <url>
  291.  
  292.     -f, --fetch           fetch the remote branches
  293.     --tags                import all tags and associated objects when fetching
  294.                           or do not fetch any tag at all (--no-tags)
  295.     -t, --track <branch>  branch(es) to track
  296.     -m, --master <branch>
  297.                           master branch
  298.     --mirror[=<push|fetch>]
  299.                           set up remote as a mirror to push to or fetch from
  300.  
  301. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ git remote add origin git@github.com:elenderg/my_first_rails_app.git
  302. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ git push -u origin master
  303. The authenticity of host 'github.com (192.30.253.112)' can't be established.
  304. RSA key fingerprint is SHA256:nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8.
  305. Are you sure you want to continue connecting (yes/no)? yes
  306. Warning: Permanently added 'github.com,192.30.253.112' (RSA) to the list of known hosts.
  307. Counting objects: 112, done.
  308. Compressing objects: 100% (97/97), done.
  309. Writing objects: 100% (112/112), 26.66 KiB | 779.00 KiB/s, done.
  310. Total 112 (delta 2), reused 0 (delta 0)
  311. remote: Resolving deltas: 100% (2/2), done.
  312. To github.com:elenderg/my_first_rails_app.git
  313. * [new branch]      master -> master
  314. Branch 'master' set up to track remote branch 'master' from 'origin'.
  315. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ curl https://cli-assets.heroku.com/install.sh | sh
  316.  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
  317.                                 Dload  Upload   Total   Spent    Left  Speed
  318. 100  1892  100  1892    0     0   1914      0 --:--:-- --:--:-- --:--:--  1914
  319. This script requires superuser access.
  320. You will be prompted for your password by sudo.
  321. [sudo] password for elender:  
  322. Installing CLI from https://cli-assets.heroku.com/heroku-linux-x64.tar.xz
  323.  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
  324.                                 Dload  Upload   Total   Spent    Left  Speed
  325. 100 16.7M  100 16.7M    0     0  1425k      0  0:00:12  0:00:12 --:--:-- 1256k
  326. v11.9.0
  327. heroku installed to /usr/local/bin/heroku
  328. heroku/7.21.0 linux-x64 node-v11.9.0
  329. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ heroku version
  330. heroku/7.21.0 linux-x64 node-v11.9.0
  331. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ heroku keys:add
  332. Found an SSH public key at /home/elender/.ssh/id_rsa.pub
  333. ? Would you like to upload it to Heroku? Yes
  334. Uploading /home/elender/.ssh/id_rsa.pub SSH key... !
  335. ▸    Invalid credentials provided.
  336. heroku: Press any key to open up the browser to login or q to exit:
  337. Logging in... done
  338. Logged in as [email protected]
  339. Found an SSH public key at /home/elender/.ssh/id_rsa.pub
  340. ? Would you like to upload it to Heroku? Yes
  341. Uploading /home/elender/.ssh/id_rsa.pub SSH key... done
  342. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ heroku create
  343. Creating app... done, ⬢ protected-taiga-93139
  344. https://protected-taiga-93139.herokuapp.com/ | https://git.heroku.com/protected-taiga-93139.git
  345. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ git remote show
  346. heroku
  347. origin
  348. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ ls
  349. app  bin  config  config.ru  db  Gemfile  Gemfile.lock  lib  log  package.json  public  Rakefile  README.md  storage  test  tmp  vendor
  350. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ bundle install --without production
  351. 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`.
  352. Fetching gem metadata from https://rubygems.org/.............
  353. Fetching gem metadata from https://rubygems.org/..
  354. Resolving dependencies...
  355. Using rake 12.3.2
  356. Using concurrent-ruby 1.1.4
  357. Using i18n 1.5.3
  358. Using minitest 5.11.3
  359. Using thread_safe 0.3.6
  360. Using tzinfo 1.2.5
  361. Using activesupport 5.2.2
  362. Using builder 3.2.3
  363. Using erubi 1.8.0
  364. Using mini_portile2 2.4.0
  365. Using nokogiri 1.10.1
  366. Using rails-dom-testing 2.0.3
  367. Using crass 1.0.4
  368. Using loofah 2.2.3
  369. Using rails-html-sanitizer 1.0.4
  370. Using actionview 5.2.2
  371. Using rack 2.0.6
  372. Using rack-test 1.1.0
  373. Using actionpack 5.2.2
  374. Using nio4r 2.3.1
  375. Using websocket-extensions 0.1.3
  376. Using websocket-driver 0.7.0
  377. Using actioncable 5.2.2
  378. Using globalid 0.4.2
  379. Using activejob 5.2.2
  380. Using mini_mime 1.0.1
  381. Using mail 2.7.1
  382. Using actionmailer 5.2.2
  383. Using activemodel 5.2.2
  384. Using arel 9.0.0
  385. Using activerecord 5.2.2
  386. Using mimemagic 0.3.3
  387. Using marcel 0.3.3
  388. Using activestorage 5.2.2
  389. Using public_suffix 3.0.3
  390. Using addressable 2.6.0
  391. Using io-like 0.3.0
  392. Using archive-zip 0.11.0
  393. Using bindex 0.5.0
  394. Using msgpack 1.2.6
  395. Using bootsnap 1.4.0
  396. Using bundler 1.17.2
  397. Using byebug 11.0.0
  398. Using regexp_parser 1.3.0
  399. Using xpath 3.2.0
  400. Using capybara 3.13.2
  401. Using ffi 1.10.0
  402. Using childprocess 0.9.0
  403. Using chromedriver-helper 2.1.0
  404. Using coffee-script-source 1.12.2
  405. Using execjs 2.7.0
  406. Using coffee-script 2.4.1
  407. Using method_source 0.9.2
  408. Using thor 0.20.3
  409. Using railties 5.2.2
  410. Using coffee-rails 4.2.2
  411. Using multi_json 1.13.1
  412. Using jbuilder 2.8.0
  413. Using rb-fsevent 0.10.3
  414. Using rb-inotify 0.10.0
  415. Using ruby_dep 1.5.0
  416. Using listen 3.1.5
  417. Using puma 3.12.0
  418. Using sprockets 3.7.2
  419. Using sprockets-rails 3.2.1
  420. Using rails 5.2.2
  421. Using rubyzip 1.2.2
  422. Using sass-listen 4.0.0
  423. Using sass 3.7.3
  424. Using tilt 2.0.9
  425. Using sass-rails 5.0.7
  426. Using selenium-webdriver 3.141.0
  427. Using spring 2.0.2
  428. Using spring-watcher-listen 2.0.1
  429. Using sqlite3 1.3.13
  430. Using turbolinks-source 5.2.0
  431. Using turbolinks 5.2.0
  432. Using uglifier 4.1.20
  433. Using web-console 3.7.0
  434. Bundle complete! 19 Gemfile dependencies, 79 gems now installed.
  435. Gems in the group production were not installed.
  436. Use `bundle info [gemname]` to see where a bundled gem is installed.
  437. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ git status
  438. On branch master
  439. Your branch is up to date with 'origin/master'.
  440.  
  441. Changes not staged for commit:
  442.  (use "git add <file>..." to update what will be committed)
  443.  (use "git checkout -- <file>..." to discard changes in working directory)
  444.  
  445.     modified:   Gemfile
  446.     modified:   Gemfile.lock
  447.     modified:   config/routes.rb
  448.  
  449. no changes added to commit (use "git add" and/or "git commit -a")
  450. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ git add .
  451. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ git commit -m 'updates for heroku deployment'
  452. [master 1d59807] updates for heroku deployment
  453. 3 files changed, 10 insertions(+), 1 deletion(-)
  454. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ git push origin master
  455. Warning: Permanently added the RSA host key for IP address '192.30.253.113' to the list of known hosts.
  456. Counting objects: 6, done.
  457. Compressing objects: 100% (6/6), done.
  458. Writing objects: 100% (6/6), 621 bytes | 621.00 KiB/s, done.
  459. Total 6 (delta 5), reused 0 (delta 0)
  460. remote: Resolving deltas: 100% (5/5), completed with 5 local objects.
  461. To github.com:elenderg/my_first_rails_app.git
  462.   1fbc3c4..1d59807  master -> master
  463. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ git push heroku master
  464. Counting objects: 118, done.
  465. Compressing objects: 100% (103/103), done.
  466. Writing objects: 100% (118/118), 27.11 KiB | 1.00 MiB/s, done.
  467. Total 118 (delta 7), reused 0 (delta 0)
  468. remote: Compressing source files... done.
  469. remote: Building source:
  470. remote:
  471. remote:  !     Warning: Multiple default buildpacks reported the ability to handle this app. The first buildpack in the list below will be used.
  472. remote:             Detected buildpacks: Ruby,Node.js
  473. remote:             See https://devcenter.heroku.com/articles/buildpacks#buildpack-detect-order
  474. remote: -----> Ruby app detected
  475. remote: -----> Compiling Ruby/Rails
  476. remote: -----> Using Ruby version: ruby-2.6.0
  477. remote: -----> Installing dependencies using bundler 1.15.2
  478. remote:        Running: bundle install --without development:test --path vendor/bundle --binstubs vendor/bundle/bin -j4 --deployment
  479. 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`.
  480. remote:        Fetching gem metadata from https://rubygems.org/.........
  481. remote:        Fetching rake 12.3.2
  482. remote:        Installing rake 12.3.2
  483. remote:        Fetching concurrent-ruby 1.1.4
  484. remote:        Fetching thread_safe 0.3.6
  485. remote:        Fetching minitest 5.11.3
  486. remote:        Installing minitest 5.11.3
  487. remote:        Installing thread_safe 0.3.6
  488. remote:        Fetching builder 3.2.3
  489. remote:        Installing concurrent-ruby 1.1.4
  490. remote:        Installing builder 3.2.3
  491. remote:        Fetching erubi 1.8.0
  492. remote:        Fetching mini_portile2 2.4.0
  493. remote:        Installing erubi 1.8.0
  494. remote:        Installing mini_portile2 2.4.0
  495. remote:        Fetching crass 1.0.4
  496. remote:        Installing crass 1.0.4
  497. remote:        Fetching rack 2.0.6
  498. remote:        Fetching nio4r 2.3.1
  499. remote:        Installing rack 2.0.6
  500. remote:        Installing nio4r 2.3.1 with native extensions
  501. remote:        Fetching websocket-extensions 0.1.3
  502. remote:        Installing websocket-extensions 0.1.3
  503. remote:        Fetching mini_mime 1.0.1
  504. remote:        Installing mini_mime 1.0.1
  505. remote:        Fetching arel 9.0.0
  506. remote:        Installing arel 9.0.0
  507. remote:        Fetching mimemagic 0.3.3
  508. remote:        Installing mimemagic 0.3.3
  509. remote:        Fetching msgpack 1.2.6
  510. remote:        Installing msgpack 1.2.6 with native extensions
  511. remote:        Using bundler 1.17.2
  512. remote:        Fetching coffee-script-source 1.12.2
  513. remote:        Installing coffee-script-source 1.12.2
  514. remote:        Fetching execjs 2.7.0
  515. remote:        Installing execjs 2.7.0
  516. remote:        Fetching method_source 0.9.2
  517. remote:        Installing method_source 0.9.2
  518. remote:        Fetching thor 0.20.3
  519. remote:        Installing thor 0.20.3
  520. remote:        Fetching ffi 1.10.0
  521. remote:        Installing ffi 1.10.0 with native extensions
  522. remote:        Fetching multi_json 1.13.1
  523. remote:        Installing multi_json 1.13.1
  524. remote:        Fetching pg 1.1.4
  525. remote:        Installing pg 1.1.4 with native extensions
  526. remote:        Fetching puma 3.12.0
  527. remote:        Installing puma 3.12.0 with native extensions
  528. remote:        Fetching rb-fsevent 0.10.3
  529. remote:        Installing rb-fsevent 0.10.3
  530. remote:        Fetching tilt 2.0.9
  531. remote:        Installing tilt 2.0.9
  532. remote:        Fetching turbolinks-source 5.2.0
  533. remote:        Installing turbolinks-source 5.2.0
  534. remote:        Fetching tzinfo 1.2.5
  535. remote:        Installing tzinfo 1.2.5
  536. remote:        Fetching nokogiri 1.10.1
  537. remote:        Installing nokogiri 1.10.1 with native extensions
  538. remote:        Fetching i18n 1.5.3
  539. remote:        Installing i18n 1.5.3
  540. remote:        Fetching websocket-driver 0.7.0
  541. remote:        Installing websocket-driver 0.7.0 with native extensions
  542. remote:        Fetching mail 2.7.1
  543. remote:        Installing mail 2.7.1
  544. remote:        Fetching rack-test 1.1.0
  545. remote:        Installing rack-test 1.1.0
  546. remote:        Fetching sprockets 3.7.2
  547. remote:        Installing sprockets 3.7.2
  548. remote:        Fetching marcel 0.3.3
  549. remote:        Installing marcel 0.3.3
  550. remote:        Fetching coffee-script 2.4.1
  551. remote:        Installing coffee-script 2.4.1
  552. remote:        Fetching uglifier 4.1.20
  553. remote:        Installing uglifier 4.1.20
  554. remote:        Fetching bootsnap 1.4.0
  555. remote:        Installing bootsnap 1.4.0 with native extensions
  556. remote:        Fetching rb-inotify 0.10.0
  557. remote:        Installing rb-inotify 0.10.0
  558. remote:        Fetching turbolinks 5.2.0
  559. remote:        Installing turbolinks 5.2.0
  560. remote:        Fetching activesupport 5.2.2
  561. remote:        Installing activesupport 5.2.2
  562. remote:        Fetching loofah 2.2.3
  563. remote:        Installing loofah 2.2.3
  564. remote:        Fetching sass-listen 4.0.0
  565. remote:        Installing sass-listen 4.0.0
  566. remote:        Fetching rails-dom-testing 2.0.3
  567. remote:        Installing rails-dom-testing 2.0.3
  568. remote:        Fetching globalid 0.4.2
  569. remote:        Installing globalid 0.4.2
  570. remote:        Fetching activemodel 5.2.2
  571. remote:        Fetching jbuilder 2.8.0
  572. remote:        Installing activemodel 5.2.2
  573. remote:        Installing jbuilder 2.8.0
  574. remote:        Fetching rails-html-sanitizer 1.0.4
  575. remote:        Installing rails-html-sanitizer 1.0.4
  576. remote:        Fetching activejob 5.2.2
  577. remote:        Fetching sass 3.7.3
  578. remote:        Installing activejob 5.2.2
  579. remote:        Installing sass 3.7.3
  580. remote:        Fetching actionview 5.2.2
  581. remote:        Installing actionview 5.2.2
  582. remote:        Fetching activerecord 5.2.2
  583. remote:        Installing activerecord 5.2.2
  584. remote:        Fetching actionpack 5.2.2
  585. remote:        Installing actionpack 5.2.2
  586. remote:        Fetching actioncable 5.2.2
  587. remote:        Fetching actionmailer 5.2.2
  588. remote:        Fetching railties 5.2.2
  589. remote:        Installing actionmailer 5.2.2
  590. remote:        Installing actioncable 5.2.2
  591. remote:        Installing railties 5.2.2
  592. remote:        Fetching sprockets-rails 3.2.1
  593. remote:        Fetching activestorage 5.2.2
  594. remote:        Installing sprockets-rails 3.2.1
  595. remote:        Installing activestorage 5.2.2
  596. remote:        Fetching coffee-rails 4.2.2
  597. remote:        Fetching sass-rails 5.0.7
  598. remote:        Fetching rails 5.2.2
  599. remote:        Installing sass-rails 5.0.7
  600. remote:        Installing coffee-rails 4.2.2
  601. remote:        Installing rails 5.2.2
  602. remote:        Bundle complete! 19 Gemfile dependencies, 61 gems now installed.
  603. remote:        Gems in the groups development and test were not installed.
  604. remote:        Bundled gems are installed into `./vendor/bundle`
  605. remote:        Post-install message from i18n:
  606. remote:        
  607. remote:        HEADS UP! i18n 1.1 changed fallbacks to exclude default locale.
  608. remote:        But that may break your application.
  609. remote:        
  610. remote:        Please check your Rails app for 'config.i18n.fallbacks = true'.
  611. remote:        If you're using I18n (>= 1.1.0) and Rails (< 5.2.2), this should be
  612. remote:        'config.i18n.fallbacks = [I18n.default_locale]'.
  613. remote:        If not, fallbacks will be broken in your app by I18n 1.1.x.
  614. remote:        
  615. remote:        For more info see:
  616. remote:        https://github.com/svenfuchs/i18n/releases/tag/v1.1.0
  617. remote:        
  618. remote:        Post-install message from sass:
  619. remote:        
  620. remote:        Ruby Sass is deprecated and will be unmaintained as of 26 March 2019.
  621. remote:        
  622. remote:        * If you use Sass as a command-line tool, we recommend using Dart Sass, the new
  623. remote:          primary implementation: https://sass-lang.com/install
  624. remote:        
  625. remote:        * If you use Sass as a plug-in for a Ruby web framework, we recommend using the
  626. remote:          sassc gem: https://github.com/sass/sassc-ruby#readme
  627. remote:        
  628. remote:        * For more details, please refer to the Sass blog:
  629. remote:          http://sass.logdown.com/posts/7081811
  630. remote:        
  631. remote:        Removing bundler (1.15.2)
  632. remote:        Bundle completed (42.64s)
  633. remote:        Cleaning up the bundler cache.
  634. 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`.
  635. remote: -----> Installing node-v10.14.1-linux-x64
  636. remote: -----> Detecting rake tasks
  637. remote: -----> Preparing app for Rails asset pipeline
  638. remote:        Running: rake assets:precompile
  639. remote:        Yarn executable was not detected in the system.
  640. remote:        Download Yarn at https://yarnpkg.com/en/docs/install
  641. remote:        I, [2019-02-17T23:48:16.302026 #1341]  INFO -- : Writing /tmp/build_fd0496a5bc29b55b0624b53ecdeb59c9/public/assets/application-9622f0fe63bfad91bdeaa3a771e86262263840678fd66849b311b6cfb3f7cc85.js
  642. remote:        I, [2019-02-17T23:48:16.302503 #1341]  INFO -- : Writing /tmp/build_fd0496a5bc29b55b0624b53ecdeb59c9/public/assets/application-9622f0fe63bfad91bdeaa3a771e86262263840678fd66849b311b6cfb3f7cc85.js.gz
  643. remote:        I, [2019-02-17T23:48:16.352561 #1341]  INFO -- : Writing /tmp/build_fd0496a5bc29b55b0624b53ecdeb59c9/public/assets/application-35729bfbaf9967f119234595ed222f7ab14859f304ab0acc5451afb387f637fa.css
  644. remote:        I, [2019-02-17T23:48:16.352719 #1341]  INFO -- : Writing /tmp/build_fd0496a5bc29b55b0624b53ecdeb59c9/public/assets/application-35729bfbaf9967f119234595ed222f7ab14859f304ab0acc5451afb387f637fa.css.gz
  645. remote:        Asset precompilation completed (3.90s)
  646. remote:        Cleaning assets
  647. remote:        Running: rake assets:clean
  648. remote: -----> Detecting rails configuration
  649. remote:
  650. remote: ###### WARNING:
  651. remote:
  652. remote:        Detecting rails configuration failed
  653. remote:        set HEROKU_DEBUG_RAILS_RUNNER=1 to debug
  654. remote:
  655. remote: ###### WARNING:
  656. remote:
  657. remote:        We detected that some binary dependencies required to
  658. remote:        use all the preview features of Active Storage are not
  659. remote:        present on this system.
  660. remote:        
  661. remote:        For more information please see:
  662. remote:          https://devcenter.heroku.com/articles/active-storage-on-heroku
  663. remote:        
  664. remote:
  665. remote: ###### WARNING:
  666. remote:
  667. remote:        No Procfile detected, using the default web server.
  668. remote:        We recommend explicitly declaring how to boot your server process via a Procfile.
  669. remote:        https://devcenter.heroku.com/articles/ruby-default-web-server
  670. remote:
  671. remote:
  672. remote: -----> Discovering process types
  673. remote:        Procfile declares types     -> (none)
  674. remote:        Default types for buildpack -> console, rake, web
  675. remote:
  676. remote: -----> Compressing...
  677. remote:        Done: 42M
  678. remote: -----> Launching...
  679. remote:        Released v6
  680. remote:        https://protected-taiga-93139.herokuapp.com/ deployed to Heroku
  681. remote:
  682. remote: Verifying deploy... done.
  683. To https://git.heroku.com/protected-taiga-93139.git
  684.  * [new branch]      master -> master
  685. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$
Advertisement
Add Comment
Please, Sign In to add comment