Skip to content

Instantly share code, notes, and snippets.

@meoooh
Created September 10, 2013 07:36
Show Gist options
  • Save meoooh/6506136 to your computer and use it in GitHub Desktop.
Save meoooh/6506136 to your computer and use it in GitHub Desktop.
han@meoooh:~/rails$ git clone git@github.com:doohee323/vsns.git myproject
Cloning into 'myproject'...
remote: Counting objects: 2206, done.
remote: Compressing objects: 100% (1207/1207), done.
remote: Total 2206 (delta 994), reused 2145 (delta 946)
Receiving objects: 100% (2206/2206), 5.92 MiB | 2.32 MiB/s, done.
Resolving deltas: 100% (994/994), done.
han@meoooh:~/rails$ cd myproject/
RVM used your Gemfile for selecting Ruby, it is all fine - Heroku does that too,
you can ignore these warnings with 'rvm rvmrc warning ignore /home/han/rails/myproject/Gemfile'.
To ignore the warning for all files run 'rvm rvmrc warning ignore allGemfiles'.
han@meoooh:~/rails/myproject$ bundle install
Using rake (10.1.0)
Using i18n (0.6.5)
Using minitest (4.7.5)
Using multi_json (1.7.9)
Using atomic (1.1.13)
Using thread_safe (0.1.2)
Using tzinfo (0.3.37)
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.24)
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 bundler (1.3.5)
Using thor (0.18.1)
Using railties (4.0.0)
Using hike (1.2.3)
Using tilt (1.4.1)
Using sprockets (2.10.0)
Using sprockets-rails (2.0.0)
Using rails (4.0.0)
Using acts-as-taggable-on (2.4.1)
Using annotate (2.5.0)
Using authority (2.7.0)
Using json (1.8.0)
Using nokogiri (1.5.10)
Using uuidtools (2.1.4)
Using aws-sdk (1.15.0)
Using bcrypt-ruby (3.1.2)
Using coderay (1.0.9)
Using better_errors (0.9.0)
Using debug_inspector (0.0.2)
Using binding_of_caller (0.7.2)
Using bootstrap-tagsinput-rails (0.3.2.0)
Using callsite (0.0.11)
Using carrierwave (0.9.0)
Using carrierwave-aws (0.3.2)
Using coffee-script-source (1.6.3)
Using execjs (2.0.0)
Using coffee-script (2.2.0)
Using coffee-rails (4.0.0)
Using commonjs (0.2.6)
Using orm_adapter (0.4.0)
Using warden (1.2.3)
Using devise (3.0.3)
Using dotenv (0.9.0)
Using dotenv-rails (0.9.0)
Using multipart-post (1.2.0)
Using faraday (0.8.8)
Using hashie (2.0.5)
Using httpauth (0.2.0)
Using jbuilder (1.5.0)
Using jquery-rails (3.0.4)
Using turbolinks (1.3.0)
Using jquery-turbolinks (1.0.0)
Using jquery-ui-rails (4.0.4)
Using jwt (0.1.8)
Using less (2.3.2)
Using less-rails (2.3.3)
Using libv8 (3.11.8.17)
Using rack-contrib (1.1.0)
Using meta_request (0.2.8)
Using oauth2 (0.8.1)
Using omniauth (1.1.4)
Using omniauth-oauth2 (1.1.1)
Using omniauth-github (1.1.1)
Using pageless-rails (0.0.2) from git://github.com/rorlab/pageless-rails.git (at master)
Using pg (0.16.0)
Using rails_serve_static_assets (0.0.1)
Using rails_stdout_logging (0.0.1)
Using rails_12factor (0.0.2)
Using rdoc (3.12.2)
Using ref (1.0.5)
Using rmagick (2.13.2)
Using rolify (3.2.0)
Using sass (3.2.10)
Using sass-rails (4.0.0)
Using sdoc (0.3.20)
Using simple_form (3.0.0.rc) from git://github.com/plataformatec/simple_form.git (at v3.0.0.rc)
Using slimbox2-rails (2.05.2)
Using sqlite3 (1.3.8)
Using summernote-rails (0.2.1.4)
Using therubyracer (0.11.4)
Using twitter-bootstrap-rails (2.2.8)
Using uglifier (2.1.2)
Using will_paginate (3.0.4)
Your bundle is complete!
Use `bundle show [gemname]` to see where a bundled gem is installed.
han@meoooh:~/rails/myproject$ rake db:migrate
== DeviseCreateUsers: migrating ==============================================
-- create_table(:users)
-> 0.0092s
-- add_index(:users, :email, {:unique=>true})
-> 0.0016s
-- add_index(:users, :reset_password_token, {:unique=>true})
-> 0.0010s
== DeviseCreateUsers: migrated (0.0126s) =====================================
== CreateItems: migrating ====================================================
-- create_table(:items)
-> 0.0018s
== CreateItems: migrated (0.0020s) ===========================================
== AddAvatarToUsers: migrating ===============================================
-- add_column(:users, :avatar, :string)
-> 0.0007s
== AddAvatarToUsers: migrated (0.0009s) ======================================
== CreateRelationships: migrating ============================================
-- create_table(:relationships)
-> 0.0024s
== CreateRelationships: migrated (0.0026s) ===================================
== ActsAsTaggableOnMigration: migrating ======================================
-- create_table(:tags)
-> 0.0007s
-- create_table(:taggings)
-> 0.0008s
-- add_index(:taggings, :tag_id)
-> 0.0007s
-- add_index(:taggings, [:taggable_id, :taggable_type, :context])
-> 0.0009s
== ActsAsTaggableOnMigration: migrated (0.0037s) =============================
== ChangeStringToText: migrating =============================================
-- change_column(:items, :description, :text)
-> 0.0097s
== ChangeStringToText: migrated (0.0099s) ====================================
== CreateLikes: migrating ====================================================
-- create_table(:likes)
-> 0.0024s
== CreateLikes: migrated (0.0026s) ===========================================
== AddLikesCountToItems: migrating ===========================================
-- add_column(:items, :likes_count, :integer, {:default=>0})
-> 0.0007s
== AddLikesCountToItems: migrated (0.0009s) ==================================
== CreateComments: migrating =================================================
-- create_table(:comments)
-> 0.0024s
== CreateComments: migrated (0.0025s) ========================================
== RolifyCreateRoles: migrating ==============================================
-- create_table(:roles)
-> 0.0008s
-- create_table(:users_roles, {:id=>false})
-> 0.0005s
-- add_index(:roles, :name)
-> 0.0006s
-- add_index(:roles, [:name, :resource_type, :resource_id])
-> 0.0009s
-- add_index(:users_roles, [:user_id, :role_id])
-> 0.0006s
== RolifyCreateRoles: migrated (0.0043s) =====================================
== AddLikesCountToComments: migrating ========================================
-- add_column(:comments, :likes_count, :integer, {:default=>0})
-> 0.0007s
== AddLikesCountToComments: migrated (0.0009s) ===============================
== CreateCommunities: migrating ==============================================
-- create_table(:communities)
-> 0.0008s
== CreateCommunities: migrated (0.0010s) =====================================
== CreateAssociates: migrating ===============================================
-- create_table(:associates)
-> 0.0024s
== CreateAssociates: migrated (0.0026s) ======================================
== AddOwnerToCommunities: migrating ==========================================
-- add_reference(:communities, :owner, {:index=>true})
-> 0.0014s
== AddOwnerToCommunities: migrated (0.0016s) =================================
== AddDescriptionToCommunities: migrating ====================================
-- add_column(:communities, :description, :text)
-> 0.0006s
== AddDescriptionToCommunities: migrated (0.0008s) ===========================
== AddOmniauthToUsers: migrating =============================================
-- add_column(:users, :provider, :string)
-> 0.0007s
-- add_column(:users, :uid, :string)
-> 0.0005s
== AddOmniauthToUsers: migrated (0.0016s) ====================================
han@meoooh:~/rails/myproject$ RAILS_ENV=production rake assets:precompile #https://trello.com/c/9rLe29MF/4-10 참조
I, [2013-09-10T16:30:01.618938 #22010] INFO -- : Writing /home/han/rails/myproject/public/assets/fallback/default-ce7792ea40e1846055dafc1f74ba657e.png
I, [2013-09-10T16:30:01.681388 #22010] INFO -- : Writing /home/han/rails/myproject/public/assets/fallback/profile_default-1e180049b67eef9129b7cfa4b8c78c01.png
I, [2013-09-10T16:30:01.684704 #22010] INFO -- : Writing /home/han/rails/myproject/public/assets/favicon-375d5cb60460766722e12c33e3ee68b7.ico
I, [2013-09-10T16:30:10.897189 #22010] INFO -- : Writing /home/han/rails/myproject/public/assets/application-04732bf88dc2076fbacaba6dbd5054f4.js
I, [2013-09-10T16:30:16.774211 #22010] INFO -- : Writing /home/han/rails/myproject/public/assets/application-3bf42584a2e8e9e6626729b3ca4ad2bd.css
I, [2013-09-10T16:30:16.792056 #22010] INFO -- : Writing /home/han/rails/myproject/public/assets/load-fea6605bf5dd56d9d52f2f5ad9791550.gif
I, [2013-09-10T16:30:16.796370 #22010] INFO -- : Writing /home/han/rails/myproject/public/assets/load1-c86ab24caef3f2b6959e214aef1cd442.gif
I, [2013-09-10T16:30:16.798345 #22010] INFO -- : Writing /home/han/rails/myproject/public/assets/closelabel-78a60b4793052c7f9311927774c0256a.gif
I, [2013-09-10T16:30:16.800499 #22010] INFO -- : Writing /home/han/rails/myproject/public/assets/loading-8e83aa7847ae6d9bc481129b348a11fd.gif
I, [2013-09-10T16:30:16.802625 #22010] INFO -- : Writing /home/han/rails/myproject/public/assets/nextlabel-9073a87bad00f5ea584b1369848ea3d1.gif
I, [2013-09-10T16:30:16.804907 #22010] INFO -- : Writing /home/han/rails/myproject/public/assets/prevlabel-15a4e6c01ac6542d48d2fc4e998ec677.gif
I, [2013-09-10T16:30:16.807477 #22010] INFO -- : Writing /home/han/rails/myproject/public/assets/jquery-ui/animated-overlay-19ad589604d6105e9ffe413a30aadb31.gif
I, [2013-09-10T16:30:16.810012 #22010] INFO -- : Writing /home/han/rails/myproject/public/assets/jquery-ui/ui-bg_flat_0_aaaaaa_40x100-8336f3b64b15a6de3811e63e9465b6d5.png
I, [2013-09-10T16:30:16.926420 #22010] INFO -- : Writing /home/han/rails/myproject/public/assets/jquery-ui/ui-bg_flat_75_ffffff_40x100-a17c260bc73d50da2f88f0296c75b3f9.png
I, [2013-09-10T16:30:16.929748 #22010] INFO -- : Writing /home/han/rails/myproject/public/assets/jquery-ui/ui-bg_glass_55_fbf9ee_1x400-dcb5b697d493c7b787c7162381e6ef74.png
I, [2013-09-10T16:30:16.933000 #22010] INFO -- : Writing /home/han/rails/myproject/public/assets/jquery-ui/ui-bg_glass_65_ffffff_1x400-7ae4ff0cb55657d98ec8920ec905ec1e.png
I, [2013-09-10T16:30:16.936471 #22010] INFO -- : Writing /home/han/rails/myproject/public/assets/jquery-ui/ui-bg_glass_75_dadada_1x400-5ede149cc759e26b83734ce72cfa6c18.png
I, [2013-09-10T16:30:16.940061 #22010] INFO -- : Writing /home/han/rails/myproject/public/assets/jquery-ui/ui-bg_glass_75_e6e6e6_1x400-a6f83694d2bf6a64340fd53bd585270d.png
I, [2013-09-10T16:30:16.943822 #22010] INFO -- : Writing /home/han/rails/myproject/public/assets/jquery-ui/ui-bg_glass_95_fef1ec_1x400-88438eace1de38adc245321ab95259a0.png
I, [2013-09-10T16:30:16.947768 #22010] INFO -- : Writing /home/han/rails/myproject/public/assets/jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100-a45d51579bf82a5b02b940d86645be1e.png
I, [2013-09-10T16:30:16.951883 #22010] INFO -- : Writing /home/han/rails/myproject/public/assets/jquery-ui/ui-icons_222222_256x240-29c3cd52ace47e8aa26068699cba6281.png
I, [2013-09-10T16:30:16.956140 #22010] INFO -- : Writing /home/han/rails/myproject/public/assets/jquery-ui/ui-icons_2e83ff_256x240-1183af3462270425b028095e5d915a80.png
I, [2013-09-10T16:30:16.960529 #22010] INFO -- : Writing /home/han/rails/myproject/public/assets/jquery-ui/ui-icons_454545_256x240-9d5e7fa056ec8fc9174d77c6d0b74712.png
I, [2013-09-10T16:30:16.974303 #22010] INFO -- : Writing /home/han/rails/myproject/public/assets/jquery-ui/ui-icons_888888_256x240-c427a0ec883978acaae748d6e4d1954a.png
I, [2013-09-10T16:30:16.980180 #22010] INFO -- : Writing /home/han/rails/myproject/public/assets/jquery-ui/ui-icons_cd0a0a_256x240-161d4e6cfcecc852ada1a8409f5f7550.png
I, [2013-09-10T16:30:16.985628 #22010] INFO -- : Writing /home/han/rails/myproject/public/assets/fontawesome-webfont-0c21817ea1936b34152cd8667063693e.eot
I, [2013-09-10T16:30:16.992838 #22010] INFO -- : Writing /home/han/rails/myproject/public/assets/fontawesome-webfont-57bf98de995c161f5ba6d1593c404b0e.svg
I, [2013-09-10T16:30:16.998257 #22010] INFO -- : Writing /home/han/rails/myproject/public/assets/fontawesome-webfont-1ec5a4da0b1ef880613bcf2fb3e5ff1a.ttf
I, [2013-09-10T16:30:17.006197 #22010] INFO -- : Writing /home/han/rails/myproject/public/assets/fontawesome-webfont-d27b443462279070c06479858548ceb9.woff
I, [2013-09-10T16:30:17.016000 #22010] INFO -- : Writing /home/han/rails/myproject/public/assets/twitter/bootstrap/glyphicons-halflings-white-2fa53df59ca25ee50f59f971c0c9175d.png
I, [2013-09-10T16:30:17.021992 #22010] INFO -- : Writing /home/han/rails/myproject/public/assets/twitter/bootstrap/glyphicons-halflings-4e5b89324f1ac987ddf6835ef51f5fe9.png
han@meoooh:~/rails/myproject$ heroku create
Creating stark-bastion-5084... done, stack is cedar
http://stark-bastion-5084.herokuapp.com/ | git@heroku.com:stark-bastion-5084.git
Git remote heroku added
han@meoooh:~/rails/myproject$ git status
# On branch master
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# public/assets/
nothing added to commit but untracked files present (use "git add" to track)
han@meoooh:~/rails/myproject$ git add .
han@meoooh:~/rails/myproject$ git status
# On branch master
# Changes to be committed:
# (use "git reset HEAD <file>..." to unstage)
#
# new file: public/assets/application-04732bf88dc2076fbacaba6dbd5054f4.js
# new file: public/assets/application-04732bf88dc2076fbacaba6dbd5054f4.js.gz
# new file: public/assets/application-3bf42584a2e8e9e6626729b3ca4ad2bd.css
# new file: public/assets/application-3bf42584a2e8e9e6626729b3ca4ad2bd.css.gz
# new file: public/assets/closelabel-78a60b4793052c7f9311927774c0256a.gif
# new file: public/assets/fallback/default-ce7792ea40e1846055dafc1f74ba657e.png
# new file: public/assets/fallback/profile_default-1e180049b67eef9129b7cfa4b8c78c01.png
# new file: public/assets/favicon-375d5cb60460766722e12c33e3ee68b7.ico
# new file: public/assets/fontawesome-webfont-0c21817ea1936b34152cd8667063693e.eot
# new file: public/assets/fontawesome-webfont-1ec5a4da0b1ef880613bcf2fb3e5ff1a.ttf
# new file: public/assets/fontawesome-webfont-57bf98de995c161f5ba6d1593c404b0e.svg
# new file: public/assets/fontawesome-webfont-d27b443462279070c06479858548ceb9.woff
# new file: public/assets/jquery-ui/animated-overlay-19ad589604d6105e9ffe413a30aadb31.gif
# new file: public/assets/jquery-ui/ui-bg_flat_0_aaaaaa_40x100-8336f3b64b15a6de3811e63e9465b6d5.png
# new file: public/assets/jquery-ui/ui-bg_flat_75_ffffff_40x100-a17c260bc73d50da2f88f0296c75b3f9.png
# new file: public/assets/jquery-ui/ui-bg_glass_55_fbf9ee_1x400-dcb5b697d493c7b787c7162381e6ef74.png
# new file: public/assets/jquery-ui/ui-bg_glass_65_ffffff_1x400-7ae4ff0cb55657d98ec8920ec905ec1e.png
# new file: public/assets/jquery-ui/ui-bg_glass_75_dadada_1x400-5ede149cc759e26b83734ce72cfa6c18.png
# new file: public/assets/jquery-ui/ui-bg_glass_75_e6e6e6_1x400-a6f83694d2bf6a64340fd53bd585270d.png
# new file: public/assets/jquery-ui/ui-bg_glass_95_fef1ec_1x400-88438eace1de38adc245321ab95259a0.png
# new file: public/assets/jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100-a45d51579bf82a5b02b940d86645be1e.png
# new file: public/assets/jquery-ui/ui-icons_222222_256x240-29c3cd52ace47e8aa26068699cba6281.png
# new file: public/assets/jquery-ui/ui-icons_2e83ff_256x240-1183af3462270425b028095e5d915a80.png
# new file: public/assets/jquery-ui/ui-icons_454545_256x240-9d5e7fa056ec8fc9174d77c6d0b74712.png
# new file: public/assets/jquery-ui/ui-icons_888888_256x240-c427a0ec883978acaae748d6e4d1954a.png
# new file: public/assets/jquery-ui/ui-icons_cd0a0a_256x240-161d4e6cfcecc852ada1a8409f5f7550.png
# new file: public/assets/load-fea6605bf5dd56d9d52f2f5ad9791550.gif
# new file: public/assets/load1-c86ab24caef3f2b6959e214aef1cd442.gif
# new file: public/assets/loading-8e83aa7847ae6d9bc481129b348a11fd.gif
# new file: public/assets/manifest-be679c4349a36a80e2fdedb541010e7a.json
# new file: public/assets/nextlabel-9073a87bad00f5ea584b1369848ea3d1.gif
# new file: public/assets/prevlabel-15a4e6c01ac6542d48d2fc4e998ec677.gif
# new file: public/assets/twitter/bootstrap/glyphicons-halflings-4e5b89324f1ac987ddf6835ef51f5fe9.png
# new file: public/assets/twitter/bootstrap/glyphicons-halflings-white-2fa53df59ca25ee50f59f971c0c9175d.png
#
han@meoooh:~/rails/myproject$ git commit -m "precompile"
[master 4667d5c] precompile
34 files changed, 607 insertions(+)
create mode 100644 public/assets/application-04732bf88dc2076fbacaba6dbd5054f4.js
create mode 100644 public/assets/application-04732bf88dc2076fbacaba6dbd5054f4.js.gz
create mode 100644 public/assets/application-3bf42584a2e8e9e6626729b3ca4ad2bd.css
create mode 100644 public/assets/application-3bf42584a2e8e9e6626729b3ca4ad2bd.css.gz
create mode 100755 public/assets/closelabel-78a60b4793052c7f9311927774c0256a.gif
create mode 100644 public/assets/fallback/default-ce7792ea40e1846055dafc1f74ba657e.png
create mode 100644 public/assets/fallback/profile_default-1e180049b67eef9129b7cfa4b8c78c01.png
create mode 100644 public/assets/favicon-375d5cb60460766722e12c33e3ee68b7.ico
create mode 100755 public/assets/fontawesome-webfont-0c21817ea1936b34152cd8667063693e.eot
create mode 100755 public/assets/fontawesome-webfont-1ec5a4da0b1ef880613bcf2fb3e5ff1a.ttf
create mode 100755 public/assets/fontawesome-webfont-57bf98de995c161f5ba6d1593c404b0e.svg
create mode 100755 public/assets/fontawesome-webfont-d27b443462279070c06479858548ceb9.woff
create mode 100644 public/assets/jquery-ui/animated-overlay-19ad589604d6105e9ffe413a30aadb31.gif
create mode 100644 public/assets/jquery-ui/ui-bg_flat_0_aaaaaa_40x100-8336f3b64b15a6de3811e63e9465b6d5.png
create mode 100644 public/assets/jquery-ui/ui-bg_flat_75_ffffff_40x100-a17c260bc73d50da2f88f0296c75b3f9.png
create mode 100644 public/assets/jquery-ui/ui-bg_glass_55_fbf9ee_1x400-dcb5b697d493c7b787c7162381e6ef74.png
create mode 100644 public/assets/jquery-ui/ui-bg_glass_65_ffffff_1x400-7ae4ff0cb55657d98ec8920ec905ec1e.png
create mode 100644 public/assets/jquery-ui/ui-bg_glass_75_dadada_1x400-5ede149cc759e26b83734ce72cfa6c18.png
create mode 100644 public/assets/jquery-ui/ui-bg_glass_75_e6e6e6_1x400-a6f83694d2bf6a64340fd53bd585270d.png
create mode 100644 public/assets/jquery-ui/ui-bg_glass_95_fef1ec_1x400-88438eace1de38adc245321ab95259a0.png
create mode 100644 public/assets/jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100-a45d51579bf82a5b02b940d86645be1e.png
create mode 100644 public/assets/jquery-ui/ui-icons_222222_256x240-29c3cd52ace47e8aa26068699cba6281.png
create mode 100644 public/assets/jquery-ui/ui-icons_2e83ff_256x240-1183af3462270425b028095e5d915a80.png
create mode 100644 public/assets/jquery-ui/ui-icons_454545_256x240-9d5e7fa056ec8fc9174d77c6d0b74712.png
create mode 100644 public/assets/jquery-ui/ui-icons_888888_256x240-c427a0ec883978acaae748d6e4d1954a.png
create mode 100644 public/assets/jquery-ui/ui-icons_cd0a0a_256x240-161d4e6cfcecc852ada1a8409f5f7550.png
create mode 100644 public/assets/load-fea6605bf5dd56d9d52f2f5ad9791550.gif
create mode 100644 public/assets/load1-c86ab24caef3f2b6959e214aef1cd442.gif
create mode 100755 public/assets/loading-8e83aa7847ae6d9bc481129b348a11fd.gif
create mode 100644 public/assets/manifest-be679c4349a36a80e2fdedb541010e7a.json
create mode 100755 public/assets/nextlabel-9073a87bad00f5ea584b1369848ea3d1.gif
create mode 100755 public/assets/prevlabel-15a4e6c01ac6542d48d2fc4e998ec677.gif
create mode 100644 public/assets/twitter/bootstrap/glyphicons-halflings-4e5b89324f1ac987ddf6835ef51f5fe9.png
create mode 100644 public/assets/twitter/bootstrap/glyphicons-halflings-white-2fa53df59ca25ee50f59f971c0c9175d.png
han@meoooh:~/rails/myproject$ git status
# On branch master
# Your branch is ahead of 'origin/master' by 1 commit.
#
nothing to commit (working directory clean)
han@meoooh:~/rails/myproject$ git remote -v
heroku git@heroku.com:stark-bastion-5084.git (fetch)
heroku git@heroku.com:stark-bastion-5084.git (push)
origin git@github.com:doohee323/vsns.git (fetch)
origin git@github.com:doohee323/vsns.git (push)
han@meoooh:~/rails/myproject$ git push heroku master
Counting objects: 2160, done.
Compressing objects: 100% (1154/1154), done.
Writing objects: 100% (2160/2160), 6.16 MiB | 866 KiB/s, done.
Total 2160 (delta 977), reused 2126 (delta 954)
-----> Ruby/Rails app detected
-----> Using Ruby version: ruby-2.0.0
-----> Installing dependencies using Bundler version 1.3.2
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/..
Fetching git://github.com/rorlab/pageless-rails.git
Fetching git://github.com/plataformatec/simple_form.git
Installing rake (10.1.0)
Installing i18n (0.6.5)
Installing minitest (4.7.5)
Installing multi_json (1.7.9)
Installing atomic (1.1.13)
Installing thread_safe (0.1.2)
Installing tzinfo (0.3.37)
Installing activesupport (4.0.0)
Installing builder (3.1.4)
Installing erubis (2.7.0)
Installing rack (1.5.2)
Installing rack-test (0.6.2)
Installing actionpack (4.0.0)
Installing mime-types (1.24)
Installing polyglot (0.3.3)
Installing treetop (1.4.15)
Installing mail (2.5.4)
Installing actionmailer (4.0.0)
Installing activemodel (4.0.0)
Installing activerecord-deprecated_finders (1.0.3)
Installing arel (4.0.0)
Installing activerecord (4.0.0)
Using bundler (1.3.2)
Installing thor (0.18.1)
Installing railties (4.0.0)
Installing hike (1.2.3)
Installing tilt (1.4.1)
Installing sprockets (2.10.0)
Installing sprockets-rails (2.0.0)
Installing rails (4.0.0)
Installing acts-as-taggable-on (2.4.1)
Installing authority (2.7.0)
Installing json (1.8.0)
Installing nokogiri (1.5.10)
Installing uuidtools (2.1.4)
Installing aws-sdk (1.15.0)
Installing bcrypt-ruby (3.1.2)
Installing bootstrap-tagsinput-rails (0.3.2.0)
Installing carrierwave (0.9.0)
Installing carrierwave-aws (0.3.2)
Installing coffee-script-source (1.6.3)
Installing execjs (2.0.0)
Installing coffee-script (2.2.0)
Installing coffee-rails (4.0.0)
Installing commonjs (0.2.6)
Installing orm_adapter (0.4.0)
Installing warden (1.2.3)
Installing devise (3.0.3)
Installing multipart-post (1.2.0)
Installing faraday (0.8.8)
Installing hashie (2.0.5)
Installing httpauth (0.2.0)
Installing jbuilder (1.5.0)
Installing jquery-rails (3.0.4)
Installing turbolinks (1.3.0)
Installing jquery-turbolinks (1.0.0)
Installing jquery-ui-rails (4.0.4)
Installing jwt (0.1.8)
Installing less (2.3.2)
Installing less-rails (2.3.3)
Installing libv8 (3.11.8.17)
Installing oauth2 (0.8.1)
Installing omniauth (1.1.4)
Installing omniauth-oauth2 (1.1.1)
Installing omniauth-github (1.1.1)
Using pageless-rails (0.0.2) from git://github.com/rorlab/pageless-rails.git (at master)
Installing pg (0.16.0)
Installing rails_serve_static_assets (0.0.1)
Installing rails_stdout_logging (0.0.1)
Installing rails_12factor (0.0.2)
Installing rdoc (3.12.2)
Installing ref (1.0.5)
Installing rmagick (2.13.2)
Installing rolify (3.2.0)
Installing sass (3.2.10)
Installing sass-rails (4.0.0)
Installing sdoc (0.3.20)
Using simple_form (3.0.0.rc) from git://github.com/plataformatec/simple_form.git (at v3.0.0.rc)
Installing slimbox2-rails (2.05.2)
Installing summernote-rails (0.2.1.4)
Installing therubyracer (0.11.4)
Installing twitter-bootstrap-rails (2.2.8)
Installing uglifier (2.1.2)
Installing will_paginate (3.0.4)
Your bundle is complete! It was installed into ./vendor/bundle
Post-install message from rdoc:
Depending on your version of ruby, you may need to install ruby rdoc/ri data:
<= 1.8.6 : unsupported
= 1.8.7 : gem install rdoc-data; rdoc-data --install
= 1.9.1 : gem install rdoc-data; rdoc-data --install
>= 1.9.2 : nothing to do! Yay!
Post-install message from twitter-bootstrap-rails:
Important: You may need to add a javascript runtime to your Gemfile in order for bootstrap's LESS files to compile to CSS.
**********************************************
ExecJS supports these runtimes:
therubyracer - Google V8 embedded within Ruby
therubyrhino - Mozilla Rhino embedded within JRuby
Node.js
Apple JavaScriptCore - Included with Mac OS X
Microsoft Windows Script Host (JScript)
**********************************************
Cleaning up the bundler cache.
-----> Writing config/database.yml to read from DATABASE_URL
-----> Preparing app for Rails asset pipeline
Detected manifest file, assuming assets were compiled locally
-----> Discovering process types
Procfile declares types -> (none)
Default types for Ruby/Rails -> console, rake, web, worker
-----> Compiled slug size: 55.4MB
-----> Launching... done, v5
http://stark-bastion-5084.herokuapp.com deployed to Heroku
To git@heroku.com:stark-bastion-5084.git
* [new branch] master -> master
han@meoooh:~/rails/myproject$ heroku run rake db:migrate
Running `rake db:migrate` attached to terminal... up, run.6880
== DeviseCreateUsers: migrating ==============================================
-- create_table(:users)
-> 0.0211s
-- add_index(:users, :email, {:unique=>true})
-> 0.0076s
-- add_index(:users, :reset_password_token, {:unique=>true})
-> 0.0102s
== DeviseCreateUsers: migrated (0.0394s) =====================================
== CreateItems: migrating ====================================================
-- create_table(:items)
-> 0.0193s
== CreateItems: migrated (0.0194s) ===========================================
== AddAvatarToUsers: migrating ===============================================
-- add_column(:users, :avatar, :string)
-> 0.0051s
== AddAvatarToUsers: migrated (0.0053s) ======================================
== CreateRelationships: migrating ============================================
-- create_table(:relationships)
-> 0.0250s
== CreateRelationships: migrated (0.0253s) ===================================
== ActsAsTaggableOnMigration: migrating ======================================
-- create_table(:tags)
-> 0.0086s
-- create_table(:taggings)
-> 0.0103s
-- add_index(:taggings, :tag_id)
-> 0.0078s
-- add_index(:taggings, [:taggable_id, :taggable_type, :context])
-> 0.0104s
== ActsAsTaggableOnMigration: migrated (0.0380s) =============================
== ChangeStringToText: migrating =============================================
-- change_column(:items, :description, :text)
-> 0.0214s
== ChangeStringToText: migrated (0.0217s) ====================================
== CreateLikes: migrating ====================================================
-- create_table(:likes)
-> 0.0310s
== CreateLikes: migrated (0.0312s) ===========================================
== AddLikesCountToItems: migrating ===========================================
-- add_column(:items, :likes_count, :integer, {:default=>0})
-> 0.0322s
== AddLikesCountToItems: migrated (0.0324s) ==================================
== CreateComments: migrating =================================================
-- create_table(:comments)
-> 0.0293s
== CreateComments: migrated (0.0296s) ========================================
== RolifyCreateRoles: migrating ==============================================
-- create_table(:roles)
-> 0.0145s
-- create_table(:users_roles, {:id=>false})
-> 0.0030s
-- add_index(:roles, :name)
-> 0.0079s
-- add_index(:roles, [:name, :resource_type, :resource_id])
-> 0.0101s
-- add_index(:users_roles, [:user_id, :role_id])
-> 0.0075s
== RolifyCreateRoles: migrated (0.0439s) =====================================
== AddLikesCountToComments: migrating ========================================
-- add_column(:comments, :likes_count, :integer, {:default=>0})
-> 0.0146s
== AddLikesCountToComments: migrated (0.0149s) ===============================
== CreateCommunities: migrating ==============================================
-- create_table(:communities)
-> 0.0077s
== CreateCommunities: migrated (0.0078s) =====================================
== CreateAssociates: migrating ===============================================
-- create_table(:associates)
-> 0.0304s
== CreateAssociates: migrated (0.0306s) ======================================
== AddOwnerToCommunities: migrating ==========================================
-- add_reference(:communities, :owner, {:index=>true})
-> 0.0128s
== AddOwnerToCommunities: migrated (0.0130s) =================================
== AddDescriptionToCommunities: migrating ====================================
-- add_column(:communities, :description, :text)
-> 0.0090s
== AddDescriptionToCommunities: migrated (0.0093s) ===========================
== AddOmniauthToUsers: migrating =============================================
-- add_column(:users, :provider, :string)
-> 0.0049s
-- add_column(:users, :uid, :string)
-> 0.0025s
== AddOmniauthToUsers: migrated (0.0078s) ====================================
han@meoooh:~/rails/myproject$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment