Skip to content

Commit a8cd6a6

Browse files
committed
empty rails project
0 parents  commit a8cd6a6

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

+1147
-0
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.bundle
2+
db/*.sqlite3
3+
log/*.log
4+
tmp/
5+
.sass-cache/

Gemfile

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
source 'http://rubygems.org'
2+
3+
gem 'rails', '3.1.1'
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.1.4'
15+
gem 'coffee-rails', '~> 3.1.1'
16+
gem 'uglifier', '>= 1.0.3'
17+
end
18+
19+
gem 'jquery-rails'
20+
gem 'haml'
21+
22+
# To use ActiveModel has_secure_password
23+
# gem 'bcrypt-ruby', '~> 3.0.0'
24+
25+
# Use unicorn as the web server
26+
# gem 'unicorn'
27+
28+
# Deploy with Capistrano
29+
# gem 'capistrano'
30+
31+
# To use debugger
32+
# gem 'ruby-debug19', :require => 'ruby-debug'
33+
34+
group :test do
35+
# Pretty printed test output
36+
gem 'turn', :require => false
37+
end

Gemfile.lock

+121
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
GEM
2+
remote: http://rubygems.org/
3+
specs:
4+
actionmailer (3.1.1)
5+
actionpack (= 3.1.1)
6+
mail (~> 2.3.0)
7+
actionpack (3.1.1)
8+
activemodel (= 3.1.1)
9+
activesupport (= 3.1.1)
10+
builder (~> 3.0.0)
11+
erubis (~> 2.7.0)
12+
i18n (~> 0.6)
13+
rack (~> 1.3.2)
14+
rack-cache (~> 1.1)
15+
rack-mount (~> 0.8.2)
16+
rack-test (~> 0.6.1)
17+
sprockets (~> 2.0.2)
18+
activemodel (3.1.1)
19+
activesupport (= 3.1.1)
20+
builder (~> 3.0.0)
21+
i18n (~> 0.6)
22+
activerecord (3.1.1)
23+
activemodel (= 3.1.1)
24+
activesupport (= 3.1.1)
25+
arel (~> 2.2.1)
26+
tzinfo (~> 0.3.29)
27+
activeresource (3.1.1)
28+
activemodel (= 3.1.1)
29+
activesupport (= 3.1.1)
30+
activesupport (3.1.1)
31+
multi_json (~> 1.0)
32+
ansi (1.4.0)
33+
arel (2.2.1)
34+
builder (3.0.0)
35+
coffee-rails (3.1.1)
36+
coffee-script (>= 2.2.0)
37+
railties (~> 3.1.0)
38+
coffee-script (2.2.0)
39+
coffee-script-source
40+
execjs
41+
coffee-script-source (1.1.2)
42+
erubis (2.7.0)
43+
execjs (1.2.9)
44+
multi_json (~> 1.0)
45+
haml (3.1.2)
46+
hike (1.2.1)
47+
i18n (0.6.0)
48+
jquery-rails (1.0.16)
49+
railties (~> 3.0)
50+
thor (~> 0.14)
51+
json (1.6.1)
52+
mail (2.3.0)
53+
i18n (>= 0.4.0)
54+
mime-types (~> 1.16)
55+
treetop (~> 1.4.8)
56+
mime-types (1.17.2)
57+
multi_json (1.0.3)
58+
polyglot (0.3.3)
59+
rack (1.3.5)
60+
rack-cache (1.1)
61+
rack (>= 0.4)
62+
rack-mount (0.8.3)
63+
rack (>= 1.0.0)
64+
rack-ssl (1.3.2)
65+
rack
66+
rack-test (0.6.1)
67+
rack (>= 1.0)
68+
rails (3.1.1)
69+
actionmailer (= 3.1.1)
70+
actionpack (= 3.1.1)
71+
activerecord (= 3.1.1)
72+
activeresource (= 3.1.1)
73+
activesupport (= 3.1.1)
74+
bundler (~> 1.0)
75+
railties (= 3.1.1)
76+
railties (3.1.1)
77+
actionpack (= 3.1.1)
78+
activesupport (= 3.1.1)
79+
rack-ssl (~> 1.3.2)
80+
rake (>= 0.8.7)
81+
rdoc (~> 3.4)
82+
thor (~> 0.14.6)
83+
rake (0.9.2.2)
84+
rdoc (3.11)
85+
json (~> 1.4)
86+
sass (3.1.10)
87+
sass-rails (3.1.4)
88+
actionpack (~> 3.1.0)
89+
railties (~> 3.1.0)
90+
sass (>= 3.1.4)
91+
sprockets (~> 2.0.0)
92+
tilt (~> 1.3.2)
93+
sprockets (2.0.3)
94+
hike (~> 1.2)
95+
rack (~> 1.0)
96+
tilt (!= 1.3.0, ~> 1.1)
97+
sqlite3 (1.3.4)
98+
thor (0.14.6)
99+
tilt (1.3.3)
100+
treetop (1.4.10)
101+
polyglot
102+
polyglot (>= 0.3.1)
103+
turn (0.8.3)
104+
ansi
105+
tzinfo (0.3.31)
106+
uglifier (1.0.4)
107+
execjs (>= 0.3.0)
108+
multi_json (>= 1.0.2)
109+
110+
PLATFORMS
111+
ruby
112+
113+
DEPENDENCIES
114+
coffee-rails (~> 3.1.1)
115+
haml
116+
jquery-rails
117+
rails (= 3.1.1)
118+
sass-rails (~> 3.1.4)
119+
sqlite3
120+
turn
121+
uglifier (>= 1.0.3)

0 commit comments

Comments
 (0)