Skip to content

Commit b52302d

Browse files
committed
blank project
0 parents  commit b52302d

Some content is hidden

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

46 files changed

+1171
-0
lines changed

Diff for: .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/

Diff for: .rspec

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
--colour

Diff for: Gemfile

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
source 'http://rubygems.org'
2+
3+
gem 'rails', '3.1.0'
4+
gem 'mysql2'
5+
gem 'jquery-rails'
6+
7+
group :test, :development do
8+
gem 'rspec-rails'
9+
gem 'ffaker'
10+
gem 'populator'
11+
gem 'rainbow'
12+
gem 'text-table'
13+
end
14+
15+
# Gems used only for assets and not required
16+
# in production environments by default.
17+
group :assets do
18+
gem 'sass-rails', '~> 3.1.0'
19+
gem 'coffee-rails', '~> 3.1.0'
20+
gem 'uglifier'
21+
end

Diff for: Gemfile.lock

+136
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,136 @@
1+
GEM
2+
remote: http://rubygems.org/
3+
specs:
4+
actionmailer (3.1.0)
5+
actionpack (= 3.1.0)
6+
mail (~> 2.3.0)
7+
actionpack (3.1.0)
8+
activemodel (= 3.1.0)
9+
activesupport (= 3.1.0)
10+
builder (~> 3.0.0)
11+
erubis (~> 2.7.0)
12+
i18n (~> 0.6)
13+
rack (~> 1.3.2)
14+
rack-cache (~> 1.0.3)
15+
rack-mount (~> 0.8.2)
16+
rack-test (~> 0.6.1)
17+
sprockets (~> 2.0.0)
18+
activemodel (3.1.0)
19+
activesupport (= 3.1.0)
20+
bcrypt-ruby (~> 3.0.0)
21+
builder (~> 3.0.0)
22+
i18n (~> 0.6)
23+
activerecord (3.1.0)
24+
activemodel (= 3.1.0)
25+
activesupport (= 3.1.0)
26+
arel (~> 2.2.1)
27+
tzinfo (~> 0.3.29)
28+
activeresource (3.1.0)
29+
activemodel (= 3.1.0)
30+
activesupport (= 3.1.0)
31+
activesupport (3.1.0)
32+
multi_json (~> 1.0)
33+
arel (2.2.1)
34+
bcrypt-ruby (3.0.0)
35+
builder (3.0.0)
36+
coffee-rails (3.1.0)
37+
coffee-script (>= 2.2.0)
38+
railties (~> 3.1.0.rc1)
39+
coffee-script (2.2.0)
40+
coffee-script-source
41+
execjs
42+
coffee-script-source (1.1.2)
43+
diff-lcs (1.1.3)
44+
erubis (2.7.0)
45+
execjs (1.2.4)
46+
multi_json (~> 1.0)
47+
ffaker (1.8.1)
48+
hike (1.2.1)
49+
i18n (0.6.0)
50+
jquery-rails (1.0.13)
51+
railties (~> 3.0)
52+
thor (~> 0.14)
53+
mail (2.3.0)
54+
i18n (>= 0.4.0)
55+
mime-types (~> 1.16)
56+
treetop (~> 1.4.8)
57+
mime-types (1.16)
58+
multi_json (1.0.3)
59+
mysql2 (0.3.7)
60+
polyglot (0.3.2)
61+
populator (1.0.0)
62+
rack (1.3.2)
63+
rack-cache (1.0.3)
64+
rack (>= 0.4)
65+
rack-mount (0.8.3)
66+
rack (>= 1.0.0)
67+
rack-ssl (1.3.2)
68+
rack
69+
rack-test (0.6.1)
70+
rack (>= 1.0)
71+
rails (3.1.0)
72+
actionmailer (= 3.1.0)
73+
actionpack (= 3.1.0)
74+
activerecord (= 3.1.0)
75+
activeresource (= 3.1.0)
76+
activesupport (= 3.1.0)
77+
bundler (~> 1.0)
78+
railties (= 3.1.0)
79+
railties (3.1.0)
80+
actionpack (= 3.1.0)
81+
activesupport (= 3.1.0)
82+
rack-ssl (~> 1.3.2)
83+
rake (>= 0.8.7)
84+
rdoc (~> 3.4)
85+
thor (~> 0.14.6)
86+
rainbow (1.1.1)
87+
rake (0.9.2)
88+
rdoc (3.9.4)
89+
rspec (2.6.0)
90+
rspec-core (~> 2.6.0)
91+
rspec-expectations (~> 2.6.0)
92+
rspec-mocks (~> 2.6.0)
93+
rspec-core (2.6.4)
94+
rspec-expectations (2.6.0)
95+
diff-lcs (~> 1.1.2)
96+
rspec-mocks (2.6.0)
97+
rspec-rails (2.6.1)
98+
actionpack (~> 3.0)
99+
activesupport (~> 3.0)
100+
railties (~> 3.0)
101+
rspec (~> 2.6.0)
102+
sass (3.1.7)
103+
sass-rails (3.1.0)
104+
actionpack (~> 3.1.0)
105+
railties (~> 3.1.0)
106+
sass (>= 3.1.4)
107+
sprockets (2.0.0)
108+
hike (~> 1.2)
109+
rack (~> 1.0)
110+
tilt (!= 1.3.0, ~> 1.1)
111+
text-table (1.2.2)
112+
thor (0.14.6)
113+
tilt (1.3.3)
114+
treetop (1.4.10)
115+
polyglot
116+
polyglot (>= 0.3.1)
117+
tzinfo (0.3.29)
118+
uglifier (1.0.3)
119+
execjs (>= 0.3.0)
120+
multi_json (>= 1.0.2)
121+
122+
PLATFORMS
123+
ruby
124+
125+
DEPENDENCIES
126+
coffee-rails (~> 3.1.0)
127+
ffaker
128+
jquery-rails
129+
mysql2
130+
populator
131+
rails (= 3.1.0)
132+
rainbow
133+
rspec-rails
134+
sass-rails (~> 3.1.0)
135+
text-table
136+
uglifier

0 commit comments

Comments
 (0)