Skip to content
This repository was archived by the owner on Jan 1, 2020. It is now read-only.

Commit a36ac9e

Browse files
committedJun 11, 2013
Initial commit
0 parents  commit a36ac9e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+785
-0
lines changed
 

‎.gitignore

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
*.rbc
2+
*.sassc
3+
.sass-cache
4+
capybara-*.html
5+
.rspec
6+
.rvmrc
7+
.ruby-version
8+
.ruby-gemset
9+
/.bundle
10+
/vendor/bundle
11+
/log/*
12+
/tmp/*
13+
/db/*.sqlite3
14+
/public/system/*
15+
/coverage/
16+
/spec/tmp/*
17+
/config/database.yml
18+
**.orig
19+
rerun.txt
20+
pickle-email-*.html
21+
.project

‎Gemfile

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
source 'https://rubygems.org'
2+
3+
gem 'active_model_serializers'
4+
gem 'coffee-rails', '~> 4.0.0'
5+
gem 'ember-rails', :git => "git://github.com/emberjs/ember-rails.git", :branch => "master"
6+
gem 'ember-source', '1.0.0.rc5'
7+
gem 'jquery-rails'
8+
gem 'pg'
9+
gem 'rails', '4.0.0.rc1'
10+
gem 'sass-rails', '~> 4.0.0.rc1'
11+
gem 'uglifier', '>= 1.3.0'
12+
gem 'unicorn'
13+
14+
group :development do
15+
gem 'capistrano'
16+
end
17+
18+
group :doc do
19+
gem 'sdoc', require: false
20+
end

0 commit comments

Comments
 (0)