Created
November 6, 2013 17:36
-
-
Save mmcdaris/7340652 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ git push heroku master | |
-----> Ruby/Rails app detected | |
-----> Using Ruby version: ruby-2.0.0 | |
-----> Installing dependencies using Bundler version 1.3.2 | |
New app detected loading default bundler cache | |
Running: bundle install --without development:test --path vendor/bundle --binstubs vendor/bundle/bin --deployment | |
Fetching gem metadata from https://rubygems.org/.......... | |
Fetching gem metadata from https://rubygems.org/.. | |
Using rake (10.1.0) | |
Using i18n (0.6.5) | |
Using minitest (4.7.5) | |
Installing multi_json (1.8.2) | |
Using atomic (1.1.14) | |
Using thread_safe (0.1.3) | |
Installing tzinfo (0.3.38) | |
Using activesupport (4.0.0) | |
Using builder (3.1.4) | |
Using erubis (2.7.0) | |
Using rack (1.5.2) | |
Using rack-test (0.6.2) | |
Using actionpack (4.0.0) | |
Using mime-types (1.25) | |
Using polyglot (0.3.3) | |
Using treetop (1.4.15) | |
Using mail (2.5.4) | |
Using actionmailer (4.0.0) | |
Using activemodel (4.0.0) | |
Using activerecord-deprecated_finders (1.0.3) | |
Using arel (4.0.0) | |
Using activerecord (4.0.0) | |
Using coffee-script-source (1.6.3) | |
Installing execjs (2.0.2) | |
Using coffee-script (2.2.0) | |
Using thor (0.18.1) | |
Using railties (4.0.0) | |
Installing coffee-rails (4.0.1) | |
Using hike (1.2.3) | |
Installing jbuilder (1.5.2) | |
Using jquery-rails (3.0.4) | |
Installing json (1.8.1) | |
Using pg (0.17.0) | |
Using bundler (1.3.2) | |
Using tilt (1.4.1) | |
Using sprockets (2.10.0) | |
Installing sprockets-rails (2.0.1) | |
Using rails (4.0.0) | |
Using rails_serve_static_assets (0.0.1) | |
Installing rails_stdout_logging (0.0.3) | |
Using rails_12factor (0.0.2) | |
Using rdoc (3.12.2) | |
Installing sass (3.2.12) | |
Installing sass-rails (4.0.1) | |
Using sdoc (0.3.20) | |
Using turbolinks (1.3.0) | |
Using uglifier (2.2.1) | |
Your bundle is complete! It was installed into ./vendor/bundle | |
Bundle completed (62.02s) | |
Cleaning up the bundler cache. | |
Removing puma (2.6.0) | |
Removing rails_stdout_logging (0.0.2) | |
Removing mini_portile (0.5.1) | |
Removing tzinfo (0.3.37) | |
Removing unicorn (4.6.3) | |
Removing bcrypt-ruby (3.0.1) | |
Removing sass (3.2.10) | |
Removing sass-rails (4.0.0) | |
Removing multi_json (1.8.0) | |
Removing arel (3.0.2) | |
Removing activemodel (3.2.14) | |
Removing sprockets (2.2.2) | |
Removing coffee-rails (4.0.0) | |
Removing pg (0.16.0) | |
Removing coffee-rails (3.2.2) | |
Removing sprockets-rails (2.0.0) | |
Removing activeresource (3.2.14) | |
Removing rack-cache (1.2) | |
Removing actionmailer (3.2.14) | |
Removing sass-rails (3.2.6) | |
Removing raindrops (0.12.0) | |
Removing builder (3.0.4) | |
Removing journey (1.0.4) | |
Removing railties (3.2.14) | |
Removing json (1.8.0) | |
Removing execjs (2.0.1) | |
Removing actionpack (3.2.14) | |
Removing rack (1.4.5) | |
Removing activerecord (3.2.14) | |
Removing jbuilder (1.5.1) | |
Removing rack-ssl (1.3.3) | |
Removing rails (3.2.14) | |
Removing activesupport (3.2.14) | |
Removing kgio (2.8.1) | |
Removing nokogiri (1.6.0) | |
# this says to put the value in heroku config:get DATABASE_URL into the database.yml | |
-----> Writing config/database.yml to read from DATABASE_URL | |
# so whatever value is in heroku config:get DATABASE_URL is used :) | |
-----> Preparing app for Rails asset pipeline | |
Running: rake assets:precompile | |
I, [2013-10-18T19:40:28.237212 #1464] INFO -- : Writing /tmp/build_80f93809-57a0-4a6b-94cf-ed10cf6bd873/public/assets/application-4cff4cfa900c9ab69642fd37ecc042c3.js | |
I, [2013-10-18T19:40:28.454039 #1464] INFO -- : Writing /tmp/build_80f93809-57a0-4a6b-94cf-ed10cf6bd873/public/assets/application-58c7c0e35a67f189e19b8c485930e614.css | |
Asset precompilation completed (46.19s) | |
Cleaning assets | |
-----> Discovering process types | |
Procfile declares types -> (none) | |
Default types for Ruby/Rails -> console, rake, web, worker | |
-----> Compiled slug size: 34.8MB | |
-----> Launching... done, v5 | |
http://stark-chamber-2017.herokuapp.com deployed to Heroku | |
To [email protected]:stark-chamber-2017.git | |
* [new branch] master -> master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment