Skip to content

Instantly share code, notes, and snippets.

@dsaronin
Created March 7, 2012 07:59
Show Gist options
  • Save dsaronin/1991795 to your computer and use it in GitHub Desktop.
Save dsaronin/1991795 to your computer and use it in GitHub Desktop.
Adding RefineryCMS engines
$ vim Gemfile
$ bundle install
Using rake (0.9.2.2)
Using i18n (0.6.0)
Using multi_json (1.1.0)
Using activesupport (3.2.1)
Using builder (3.0.0)
Using activemodel (3.2.1)
Using erubis (2.7.0)
Using journey (1.0.3)
Using rack (1.4.1)
Using rack-cache (1.2)
Using rack-test (0.6.1)
Using hike (1.2.1)
Using tilt (1.3.3)
Using sprockets (2.1.2)
Using actionpack (3.2.1)
Using mime-types (1.17.2)
Using polyglot (0.3.3)
Using treetop (1.4.10)
Using mail (2.4.3)
Using actionmailer (3.2.1)
Using arel (3.0.2)
Using tzinfo (0.3.32)
Using activerecord (3.2.1)
Using activeresource (3.2.1)
Using acts_as_indexed (0.7.7)
Using addressable (2.2.7)
Using awesome_nested_set (2.1.2)
Using babosa (0.3.5)
Using bcrypt-ruby (3.0.1)
Using bundler (1.0.21)
Using coffee-script-source (1.2.0)
Using execjs (1.3.0)
Using coffee-script (2.2.0)
Using rack-ssl (1.3.2)
Using json (1.6.5)
Using rdoc (3.12)
Using thor (0.14.6)
Using railties (3.2.1)
Using coffee-rails (3.2.2)
Using daemons (1.1.8)
Using orm_adapter (0.0.6)
Using warden (1.1.1)
Using devise (2.0.4)
Using diff-lcs (1.1.3)
Using dragonfly (0.9.10)
Using eventmachine (0.12.10)
Using term-ansicolor (1.0.7)
Using foreman (0.40.0)
Using friendly_id (4.0.1)
Using rails (3.2.1)
Using paper_trail (2.6.0)
Using globalize3 (0.2.0)
Using haml (3.1.4)
Using haml-rails (0.3.4)
Using launchy (2.0.5)
Using rest-client (1.6.7)
Using rubyzip (0.9.6.1)
Using heroku (2.21.2)
Using jquery-rails (2.0.1)
Using libv8 (3.3.10.4)
Using pg (0.13.2)
Using sass (3.1.15)
Using sass-rails (3.2.4)
Using truncate_html (0.5.4)
Using uglifier (1.2.3)
Using will_paginate (3.0.3)
Using refinerycms-core (2.0.1)
Using refinerycms-authentication (2.0.1)
Using refinerycms-dashboard (2.0.1)
Using refinerycms-images (2.0.1)
Using seo_meta (1.2.0)
Using refinerycms-pages (2.0.1)
Using refinerycms-resources (2.0.1)
Using refinerycms (2.0.1)
Using routing-filter (0.3.0)
Using refinerycms-i18n (2.0.0)
Using refinerycms-settings (2.0.1)
Using rspec-core (2.8.0)
Using rspec-expectations (2.8.0)
Using rspec-mocks (2.8.0)
Using rspec (2.8.0)
Using rspec-rails (2.8.1)
Using therubyracer (0.9.10)
Using thin (1.3.1)
Your bundle is complete! Use `bundle show [gemname]` to see where a bundled gem is installed.
$ rails g refinery:settings
rake refinery_settings:install:migrations
Copied migration 20120307075204_create_refinerycms_settings_schema.refinery_settings.rb from refinery_settings
$ rake db:migrate
== CreateRefinerycmsSettingsSchema: migrating ================================
-- create_table(:refinery_settings)
NOTICE: CREATE TABLE will create implicit sequence "refinery_settings_id_seq" for serial column "refinery_settings.id"
NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "refinery_settings_pkey" for table "refinery_settings"
-> 0.5814s
-- add_index(:refinery_settings, :name)
-> 0.0779s
== CreateRefinerycmsSettingsSchema: migrated (0.6596s) =======================
$ rake db:seed
$ git add .; git commit -am 'ref settings added'; git push origin
[master 8afd8bd] ref settings added
4 files changed, 36 insertions(+), 2 deletions(-)
create mode 100644 db/migrate/20120307075204_create_refinerycms_settings_schema.refinery_settings.rb
Counting objects: 14, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (8/8), done.
Writing objects: 100% (8/8), 1.12 KiB, done.
Total 8 (delta 5), reused 0 (delta 0)
To git@github.com:dsaronin/kikapu.git
2e03a56..8afd8bd master -> master
$ git push heroku
Counting objects: 14, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (8/8), done.
Writing objects: 100% (8/8), 1.12 KiB, done.
Total 8 (delta 5), reused 0 (delta 0)
-----> Heroku receiving push
-----> Ruby/Rails app detected
-----> Installing dependencies using Bundler version 1.1.rc.7
Running: bundle install --without development:test --path vendor/bundle --binstubs bin/ --deployment
Fetching gem metadata from https://rubygems.org/.......
Fetching gem metadata from https://rubygems.org/..
Using rake (0.9.2.2)
Using i18n (0.6.0)
Using multi_json (1.1.0)
Using activesupport (3.2.1)
Using builder (3.0.0)
Using activemodel (3.2.1)
Using erubis (2.7.0)
Using journey (1.0.3)
Using rack (1.4.1)
Using rack-cache (1.2)
Using rack-test (0.6.1)
Using hike (1.2.1)
Using tilt (1.3.3)
Using sprockets (2.1.2)
Using actionpack (3.2.1)
Using mime-types (1.17.2)
Using polyglot (0.3.3)
Using treetop (1.4.10)
Using mail (2.4.3)
Using actionmailer (3.2.1)
Using arel (3.0.2)
Using tzinfo (0.3.32)
Using activerecord (3.2.1)
Using activeresource (3.2.1)
Using acts_as_indexed (0.7.7)
Using awesome_nested_set (2.1.2)
Using babosa (0.3.5)
Using bcrypt-ruby (3.0.1)
Using coffee-script-source (1.2.0)
Using execjs (1.3.0)
Using coffee-script (2.2.0)
Using rack-ssl (1.3.2)
Using json (1.6.5)
Using rdoc (3.12)
Using thor (0.14.6)
Using railties (3.2.1)
Using coffee-rails (3.2.2)
Using daemons (1.1.8)
Using orm_adapter (0.0.6)
Using warden (1.1.1)
Using devise (2.0.4)
Using dragonfly (0.9.10)
Using eventmachine (0.12.10)
Using friendly_id (4.0.1)
Using bundler (1.1.rc.7)
Using rails (3.2.1)
Using paper_trail (2.6.0)
Using globalize3 (0.2.0)
Using haml (3.1.4)
Using haml-rails (0.3.4)
Using jquery-rails (2.0.1)
Using pg (0.13.2)
Using sass (3.1.15)
Using sass-rails (3.2.4)
Using truncate_html (0.5.4)
Using uglifier (1.2.3)
Using will_paginate (3.0.3)
Using refinerycms-core (2.0.1)
Using refinerycms-authentication (2.0.1)
Using refinerycms-dashboard (2.0.1)
Using refinerycms-images (2.0.1)
Using seo_meta (1.2.0)
Using refinerycms-pages (2.0.1)
Using refinerycms-resources (2.0.1)
Using refinerycms (2.0.1)
Using routing-filter (0.3.0)
Using refinerycms-i18n (2.0.0)
Installing refinerycms-settings (2.0.1)
Using thin (1.3.1)
Your bundle is complete! It was installed into ./vendor/bundle
Cleaning up the bundler cache.
-----> Writing config/database.yml to read from DATABASE_URL
-----> Preparing app for Rails asset pipeline
Detected manifest.yml, assuming assets were compiled locally
-----> Rails plugin injection
Injecting rails_log_stdout
Injecting rails3_serve_static_assets
-----> Discovering process types
Procfile declares types -> web
Default types for Ruby/Rails -> console, rake, worker
-----> Compiled slug size is 22.7MB
-----> Launching... done, v11
http://kikapu.herokuapp.com deployed to Heroku
To git@heroku.com:kikapu.git
2e03a56..8afd8bd master -> master
$ heroku run rake db:migrate
Running rake db:migrate attached to terminal... up, run.1
== CreateRefinerycmsSettingsSchema: migrating ================================
-- create_table(:refinery_settings)
-> 0.2519s
-- add_index(:refinery_settings, :name)
-> 0.0092s
== CreateRefinerycmsSettingsSchema: migrated (0.2613s) =======================
$ heroku run rake db:seed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment