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
resources :channels do | |
shallow do | |
resources :posts do | |
member do | |
put :disable | |
put :toggle_stickiness | |
put :add_channel | |
end | |
resources :replies, :only => [:index, :new, :create, :show] | |
end |
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
* Start Small, Stay Small: A Developer's Guide to Launching a Startup | |
* The Art of Game Design: A book of lenses | |
* Do More Faster: TechStars Lessons to Accelerate Your Startup | |
* The No Asshole Rule: Building a Civilized Workplace and Surviving One That Isn't | |
* Free: The Future of a Radical Price | |
* Founders at Work: Stories of Startups' Early Days | |
* Hackers and Painters: Big Ideas from the Computer Age | |
* The Pragmatic Programmer: From Journeyman to Master |
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
module BabyTalk | |
class Engine < Rails::Engine | |
config.to_prepare do | |
User.class_eval do | |
has_many :participations, :foreign_key => "participant_id" | |
has_many :rooms, :through => :participations | |
end | |
end | |
end | |
end |
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
{ | |
"continents": { | |
"Africa": [ | |
"Africa" | |
], | |
"Antarctica": [ | |
"Antarctica" | |
], | |
"Asia": [ | |
"Asia" |