Skip to content

Commit ac5a971

Browse files
committed
Add source
1 parent 1e34ba0 commit ac5a971

Some content is hidden

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

71 files changed

+1361
-0
lines changed

Gemfile

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
source 'https://rubygems.org'
2+
3+
gem 'rails', '3.2.2'
4+
5+
# Bundle edge Rails instead:
6+
# gem 'rails', :git => 'git://github.com/rails/rails.git'
7+
8+
gem 'mysql2'
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'
19+
20+
gem 'uglifier', '>= 1.0.3'
21+
gem 'bcrypt-ruby', :require => 'bcrypt'
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 'ruby-debug19', :require => 'ruby-debug'

Gemfile.lock

Lines changed: 113 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actionmailer (3.2.2)
5+
actionpack (= 3.2.2)
6+
mail (~> 2.4.0)
7+
actionpack (3.2.2)
8+
activemodel (= 3.2.2)
9+
activesupport (= 3.2.2)
10+
builder (~> 3.0.0)
11+
erubis (~> 2.7.0)
12+
journey (~> 1.0.1)
13+
rack (~> 1.4.0)
14+
rack-cache (~> 1.1)
15+
rack-test (~> 0.6.1)
16+
sprockets (~> 2.1.2)
17+
activemodel (3.2.2)
18+
activesupport (= 3.2.2)
19+
builder (~> 3.0.0)
20+
activerecord (3.2.2)
21+
activemodel (= 3.2.2)
22+
activesupport (= 3.2.2)
23+
arel (~> 3.0.2)
24+
tzinfo (~> 0.3.29)
25+
activeresource (3.2.2)
26+
activemodel (= 3.2.2)
27+
activesupport (= 3.2.2)
28+
activesupport (3.2.2)
29+
i18n (~> 0.6)
30+
multi_json (~> 1.0)
31+
arel (3.0.2)
32+
bcrypt-ruby (3.0.1)
33+
builder (3.0.0)
34+
coffee-rails (3.2.2)
35+
coffee-script (>= 2.2.0)
36+
railties (~> 3.2.0)
37+
coffee-script (2.2.0)
38+
coffee-script-source
39+
execjs
40+
coffee-script-source (1.2.0)
41+
erubis (2.7.0)
42+
execjs (1.3.0)
43+
multi_json (~> 1.0)
44+
hike (1.2.1)
45+
i18n (0.6.0)
46+
journey (1.0.3)
47+
jquery-rails (2.0.1)
48+
railties (>= 3.2.0, < 5.0)
49+
thor (~> 0.14)
50+
json (1.6.5)
51+
mail (2.4.4)
52+
i18n (>= 0.4.0)
53+
mime-types (~> 1.16)
54+
treetop (~> 1.4.8)
55+
mime-types (1.17.2)
56+
multi_json (1.1.0)
57+
mysql2 (0.3.11)
58+
polyglot (0.3.3)
59+
rack (1.4.1)
60+
rack-cache (1.2)
61+
rack (>= 0.4)
62+
rack-ssl (1.3.2)
63+
rack
64+
rack-test (0.6.1)
65+
rack (>= 1.0)
66+
rails (3.2.2)
67+
actionmailer (= 3.2.2)
68+
actionpack (= 3.2.2)
69+
activerecord (= 3.2.2)
70+
activeresource (= 3.2.2)
71+
activesupport (= 3.2.2)
72+
bundler (~> 1.0)
73+
railties (= 3.2.2)
74+
railties (3.2.2)
75+
actionpack (= 3.2.2)
76+
activesupport (= 3.2.2)
77+
rack-ssl (~> 1.3.2)
78+
rake (>= 0.8.7)
79+
rdoc (~> 3.4)
80+
thor (~> 0.14.6)
81+
rake (0.9.2.2)
82+
rdoc (3.12)
83+
json (~> 1.4)
84+
sass (3.1.15)
85+
sass-rails (3.2.5)
86+
railties (~> 3.2.0)
87+
sass (>= 3.1.10)
88+
tilt (~> 1.3)
89+
sprockets (2.1.2)
90+
hike (~> 1.2)
91+
rack (~> 1.0)
92+
tilt (~> 1.1, != 1.3.0)
93+
thor (0.14.6)
94+
tilt (1.3.3)
95+
treetop (1.4.10)
96+
polyglot
97+
polyglot (>= 0.3.1)
98+
tzinfo (0.3.32)
99+
uglifier (1.2.3)
100+
execjs (>= 0.3.0)
101+
multi_json (>= 1.0.2)
102+
103+
PLATFORMS
104+
ruby
105+
106+
DEPENDENCIES
107+
bcrypt-ruby
108+
coffee-rails (~> 3.2.1)
109+
jquery-rails
110+
mysql2
111+
rails (= 3.2.2)
112+
sass-rails (~> 3.2.3)
113+
uglifier (>= 1.0.3)

0 commit comments

Comments
 (0)