Created
May 23, 2012 13:28
-
-
Save ryanwood/2775235 to your computer and use it in GitHub Desktop.
Revisions
-
ryanwood created this gist
May 23, 2012 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,28 @@ ... group :assets do gem 'sass-rails', '~> 3.2.3' gem 'coffee-rails', '~> 3.2.1' gem 'uglifier', '>= 1.0.3' gem 'skim' end gem 'jquery-rails' gem 'devise' gem 'slim' gem 'responders' gem 'cancan' gem 'simple_form', git: 'https://github.com/plataformatec/simple_form.git' gem 'will_paginate', '~> 3.0.2' gem 'settingslogic' gem 'paperclip' gem 'carmen' gem 'heroku' gem 'airbrake' gem 'fog', '~> 1.1.2' # Sidekiq related gems: gem 'sidekiq' gem 'sinatra' gem 'stripe' gem 'backbone-on-rails' ... 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ # app/assets/javascripts/forms.js.coffee jQuery -> class FormsView extends Backbone.View el: $('#forms') initialize: -> _.bindAll @ @render() render: -> $(@el).append( JST['forms/index'] { word: 'Test' } ) listView = new FormsView 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,2 @@ # app/assets/templates/forms/index.jst.skim p This is from <strong>Skim</strong>. #{ @word }