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
###################################################################################################### | |
# IMPORTANT TODO's (July 27, 08): | |
# 1) Add actions and links for "send message, IM user, Send Emotion" | |
# 2) Add code for "City" being clickable | |
# 3) Strip spaces for the interests links | |
# 4) Change selects so values are not numerical | |
# 5) "Add to My M8's" needs an action | |
# 6) "Interests" links needs to be coded | |
####################################################################################################### |
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
➜ bigpond git:(master) rails g controller template_categories index show new | |
/Users/trevor/.rvm/gems/ruby-1.9.3-p286/gems/json-1.7.4/lib/json/ext/parser.bundle: [BUG] Segmentation fault | |
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0] | |
[1] 43213 abort rails g controller template_categories index show new |
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] |
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
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
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
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
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
--- /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
➜ 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 |