Skip to content

Commit 8a4678b

Browse files
committedApr 25, 2013
Initial commit
0 parents  commit 8a4678b

Some content is hidden

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

50 files changed

+1207
-0
lines changed
 

‎.gitignore

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
#
3+
# If you find yourself ignoring temporary files generated by your text editor
4+
# or operating system, you probably want to add a global ignore instead:
5+
# git config --global core.excludesfile ~/.gitignore_global
6+
7+
# Ignore bundler config
8+
/.bundle
9+
10+
# Ignore the default SQLite database.
11+
/db/*.sqlite3
12+
13+
# Ignore all logfiles and tempfiles.
14+
/log/*.log
15+
/tmp

‎Gemfile

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
source 'https://rubygems.org'
2+
3+
gem 'rails', '3.2.13'
4+
5+
# Bundle edge Rails instead:
6+
# gem 'rails', :git => 'git://github.com/rails/rails.git'
7+
8+
group :development do
9+
gem 'sqlite3', '1.3.5'
10+
end
11+
12+
13+
# Gems used only for assets and not required
14+
# in production environments by default.
15+
group :assets do
16+
gem 'sass-rails', '3.2.5'
17+
gem 'coffee-rails', '3.2.2'
18+
19+
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
20+
# gem 'therubyracer', :platforms => :ruby
21+
22+
gem 'uglifier', '1.2.3'
23+
end
24+
25+
gem 'jquery-rails','2.0.2'
26+
27+
# To use ActiveModel has_secure_password
28+
# gem 'bcrypt-ruby', '~> 3.0.0'
29+
30+
# To use Jbuilder templates for JSON
31+
# gem 'jbuilder'
32+
33+
# Use unicorn as the app server
34+
# gem 'unicorn'
35+
36+
# Deploy with Capistrano
37+
# gem 'capistrano'
38+
39+
# To use debugger
40+
# gem 'debugger'

0 commit comments

Comments
 (0)
Please sign in to comment.