Skip to content

Commit 0e63cb2

Browse files
committed
initial rails creation
1 parent 063bab1 commit 0e63cb2

Some content is hidden

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

48 files changed

+1187
-0
lines changed

Gemfile

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
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+
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+
20+
gem 'uglifier', '>= 1.0.3'
21+
end
22+
23+
gem 'jquery-rails'
24+
25+
# To use ActiveModel has_secure_password
26+
# gem 'bcrypt-ruby', '~> 3.0.0'
27+
28+
# To use Jbuilder templates for JSON
29+
# gem 'jbuilder'
30+
31+
# Use unicorn as the app server
32+
# gem 'unicorn'
33+
34+
# Deploy with Capistrano
35+
# gem 'capistrano'
36+
37+
# To use debugger
38+
# gem 'debugger'

Gemfile.lock

+111
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actionmailer (3.2.13)
5+
actionpack (= 3.2.13)
6+
mail (~> 2.5.3)
7+
actionpack (3.2.13)
8+
activemodel (= 3.2.13)
9+
activesupport (= 3.2.13)
10+
builder (~> 3.0.0)
11+
erubis (~> 2.7.0)
12+
journey (~> 1.0.4)
13+
rack (~> 1.4.5)
14+
rack-cache (~> 1.2)
15+
rack-test (~> 0.6.1)
16+
sprockets (~> 2.2.1)
17+
activemodel (3.2.13)
18+
activesupport (= 3.2.13)
19+
builder (~> 3.0.0)
20+
activerecord (3.2.13)
21+
activemodel (= 3.2.13)
22+
activesupport (= 3.2.13)
23+
arel (~> 3.0.2)
24+
tzinfo (~> 0.3.29)
25+
activeresource (3.2.13)
26+
activemodel (= 3.2.13)
27+
activesupport (= 3.2.13)
28+
activesupport (3.2.13)
29+
i18n (= 0.6.1)
30+
multi_json (~> 1.0)
31+
arel (3.0.2)
32+
builder (3.0.4)
33+
coffee-rails (3.2.2)
34+
coffee-script (>= 2.2.0)
35+
railties (~> 3.2.0)
36+
coffee-script (2.2.0)
37+
coffee-script-source
38+
execjs
39+
coffee-script-source (1.6.2)
40+
erubis (2.7.0)
41+
execjs (1.4.0)
42+
multi_json (~> 1.0)
43+
hike (1.2.2)
44+
i18n (0.6.1)
45+
journey (1.0.4)
46+
jquery-rails (2.2.1)
47+
railties (>= 3.0, < 5.0)
48+
thor (>= 0.14, < 2.0)
49+
json (1.8.0)
50+
mail (2.5.4)
51+
mime-types (~> 1.16)
52+
treetop (~> 1.4.8)
53+
mime-types (1.23)
54+
multi_json (1.7.3)
55+
polyglot (0.3.3)
56+
rack (1.4.5)
57+
rack-cache (1.2)
58+
rack (>= 0.4)
59+
rack-ssl (1.3.3)
60+
rack
61+
rack-test (0.6.2)
62+
rack (>= 1.0)
63+
rails (3.2.13)
64+
actionmailer (= 3.2.13)
65+
actionpack (= 3.2.13)
66+
activerecord (= 3.2.13)
67+
activeresource (= 3.2.13)
68+
activesupport (= 3.2.13)
69+
bundler (~> 1.0)
70+
railties (= 3.2.13)
71+
railties (3.2.13)
72+
actionpack (= 3.2.13)
73+
activesupport (= 3.2.13)
74+
rack-ssl (~> 1.3.2)
75+
rake (>= 0.8.7)
76+
rdoc (~> 3.4)
77+
thor (>= 0.14.6, < 2.0)
78+
rake (10.0.4)
79+
rdoc (3.12.2)
80+
json (~> 1.4)
81+
sass (3.2.9)
82+
sass-rails (3.2.6)
83+
railties (~> 3.2.0)
84+
sass (>= 3.1.10)
85+
tilt (~> 1.3)
86+
sprockets (2.2.2)
87+
hike (~> 1.2)
88+
multi_json (~> 1.0)
89+
rack (~> 1.0)
90+
tilt (~> 1.1, != 1.3.0)
91+
sqlite3 (1.3.7)
92+
thor (0.18.1)
93+
tilt (1.4.1)
94+
treetop (1.4.12)
95+
polyglot
96+
polyglot (>= 0.3.1)
97+
tzinfo (0.3.37)
98+
uglifier (2.1.0)
99+
execjs (>= 0.3.0)
100+
multi_json (~> 1.0, >= 1.0.2)
101+
102+
PLATFORMS
103+
ruby
104+
105+
DEPENDENCIES
106+
coffee-rails (~> 3.2.1)
107+
jquery-rails
108+
rails (= 3.2.13)
109+
sass-rails (~> 3.2.3)
110+
sqlite3
111+
uglifier (>= 1.0.3)

0 commit comments

Comments
 (0)