Skip to content

Commit aac29e6

Browse files
committedOct 31, 2012
init the application
0 parents  commit aac29e6

Some content is hidden

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

67 files changed

+1563
-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

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

0 commit comments

Comments
 (0)
Please sign in to comment.