This file contains hidden or 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
| run rails new cod.com --database=postgresql from "._deployment" | |
| create | |
| create README.rdoc | |
| create Rakefile | |
| create config.ru | |
| create .gitignore | |
| create Gemfile | |
| create app | |
| create app/assets/images/rails.png | |
| create app/assets/javascripts/application.js |
This file contains hidden or 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
| 0 -0400 | |
| @@ -10,8 +10,8 @@ | |
| append_file 'db/seeds.rb', :verbose => true do | |
| <<-EOH | |
| -# Added by Refinery CMS Seasons extension | |
| -Refinery::Seasons::Engine.load_seed | |
| +# Added by Refinery CMS Sponsors extension | |
| +Refinery::Sponsors::Engine.load_seed | |
| EOH |
This file contains hidden or 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
| ➜ stc git:(master) ✗ rails g refinery:engine sponsor title:string logo:image sponsor_url:string season:references --extension seasons --namespace seasons | |
| identical vendor/extensions/seasons/Gemfile | |
| identical vendor/extensions/seasons/Guardfile | |
| identical vendor/extensions/seasons/Rakefile | |
| identical vendor/extensions/seasons/app/controllers/refinery/seasons/admin/sponsors_controller.rb | |
| identical vendor/extensions/seasons/app/controllers/refinery/seasons/sponsors_controller.rb | |
| identical vendor/extensions/seasons/app/models/refinery/seasons/sponsor.rb | |
| identical vendor/extensions/seasons/app/views/refinery/seasons/admin/sponsors/_actions.html.erb | |
| identical vendor/extensions/seasons/app/views/refinery/seasons/admin/sponsors/_form.html.erb | |
| identical vendor/extensions/seasons/app/views/refinery/seasons/admin/sponsors/_sponsors.html.erb |
This file contains hidden or 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
| --- /Users/trevor/rails_projects/stc/vendor/extensions/seasons/lib/generators/refinery/seasons_generator.rb 2012-09-18 13:24:34.000000000 -0400 | |
| +++ /Users/trevor/rails_projects/stc/vendor/extensions/seasons/lib/generators/refinery/seasons_generator.rb20120918-45556-s71udz 2012-09-18 13:26:51.000000000 -0400 | |
| @@ -10,7 +10,7 @@ | |
| append_file 'db/seeds.rb', :verbose => true do | |
| <<-EOH | |
| -# Added by Refinery CMS Seasons extension | |
| +# Added by Refinery CMS Sponsors extension | |
| Refinery::Seasons::Engine.load_seed | |
| EOH |
This file contains hidden or 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
| module Refinery | |
| module Seasons | |
| class Engine < Rails::Engine | |
| include Refinery::Engine | |
| isolate_namespace Refinery::Seasons | |
| engine_name :refinery_seasons | |
| initializer "register refinerycms_seasons plugin" do | |
| Refinery::Plugin.register do |plugin| |
This file contains hidden or 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
| module Refinery | |
| module Seasons | |
| class Engine < Rails::Engine | |
| include Refinery::Engine | |
| isolate_namespace Refinery::Seasons | |
| engine_name :refinery_seasons | |
| initializer "register refinerycms_sponsors plugin" do | |
| Refinery::Plugin.register do |plugin| |
This file contains hidden or 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
| ruby-1.9.3-p286 - #extract | |
| ruby-1.9.3-p286 - #validate | |
| Libraries missing for ruby-1.9.3-p286: /opt/sm/pkg/versions/libffi/3.0.10/lib/libffi.5.dylib. Refer to your system manual for installing libraries | |
| Mounting remote ruby failed, trying to compile. | |
| Fetching yaml-0.1.4.tar.gz to /Users/trevor/.rvm/archives | |
| % Total % Received % Xferd Average Speed Time Time Time Current | |
| Dload Upload Total Spent Left Speed | |
| 100 460k 100 460k 0 0 96625 0 0:00:04 0:00:04 --:--:-- 115k | |
| Extracting yaml-0.1.4.tar.gz to /Users/trevor/.rvm/src | |
| Configuring yaml in /Users/trevor/.rvm/src/yaml-0.1.4. |
This file contains hidden or 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
| tdelam:~ trevor$ rvm use 1.9.3 | |
| Gemset '' does not exist, 'rvm gemset create ' first, or append '--create'. |
This file contains hidden or 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
| tdelam:~ trevor$ rvm remove 1.9.3 | |
| Removing /Users/trevor/.rvm/src/ruby-1.9.3-p286... | |
| Removing /Users/trevor/.rvm/rubies/ruby-1.9.3-p286... | |
| Removing ruby-1.9.3-p286 aliases... | |
| Removing ruby-1.9.3-p286 wrappers... | |
| Removing ruby-1.9.3-p286 environments... | |
| Removing ruby-1.9.3-p286 binaries... | |
| tdelam:~ trevor$ Already installed ruby-1.9.3-p286. | |
| tdelam:~ trevor$ rvm install 1.9.3 --disable-binary | |
| Already installed ruby-1.9.3-p286. |
This file contains hidden or 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
| ➜ ~ rvm list default | |
| Default Ruby (for new shells) | |
| ruby-1.9.3-p286 [ x86_64 ] | |
| ➜ ~ ruby -v | |
| ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0] |