Skip to content

Commit c2968fd

Browse files
committed
Initial comm
0 parents  commit c2968fd

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

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

.rspec

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

Gemfile

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
source 'https://rubygems.org'
2+
3+
gem 'rails', '3.2.3'
4+
5+
group :development, :test do
6+
gem 'sqlite3', '1.3.5'
7+
gem 'rspec-rails', '2.10.0'
8+
end
9+
10+
# Gems used only for assets and not required
11+
# in production environments by default.
12+
group :assets do
13+
gem 'sass-rails', '3.2.4'
14+
gem 'coffee-rails', '3.2.2'
15+
gem 'uglifier', '1.2.3'
16+
end
17+
18+
gem 'jquery-rails', '2.0.0'
19+
20+
group :test do
21+
gem 'capybara', '1.1.2'
22+
end
23+
24+
group :production do
25+
gem 'pg', '0.12.2'
26+
end

Gemfile.lock

+152
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,152 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actionmailer (3.2.3)
5+
actionpack (= 3.2.3)
6+
mail (~> 2.4.4)
7+
actionpack (3.2.3)
8+
activemodel (= 3.2.3)
9+
activesupport (= 3.2.3)
10+
builder (~> 3.0.0)
11+
erubis (~> 2.7.0)
12+
journey (~> 1.0.1)
13+
rack (~> 1.4.0)
14+
rack-cache (~> 1.2)
15+
rack-test (~> 0.6.1)
16+
sprockets (~> 2.1.2)
17+
activemodel (3.2.3)
18+
activesupport (= 3.2.3)
19+
builder (~> 3.0.0)
20+
activerecord (3.2.3)
21+
activemodel (= 3.2.3)
22+
activesupport (= 3.2.3)
23+
arel (~> 3.0.2)
24+
tzinfo (~> 0.3.29)
25+
activeresource (3.2.3)
26+
activemodel (= 3.2.3)
27+
activesupport (= 3.2.3)
28+
activesupport (3.2.3)
29+
i18n (~> 0.6)
30+
multi_json (~> 1.0)
31+
addressable (2.2.8)
32+
arel (3.0.2)
33+
builder (3.0.0)
34+
capybara (1.1.2)
35+
mime-types (>= 1.16)
36+
nokogiri (>= 1.3.3)
37+
rack (>= 1.0.0)
38+
rack-test (>= 0.5.4)
39+
selenium-webdriver (~> 2.0)
40+
xpath (~> 0.1.4)
41+
childprocess (0.3.2)
42+
ffi (~> 1.0.6)
43+
coffee-rails (3.2.2)
44+
coffee-script (>= 2.2.0)
45+
railties (~> 3.2.0)
46+
coffee-script (2.2.0)
47+
coffee-script-source
48+
execjs
49+
coffee-script-source (1.3.3)
50+
diff-lcs (1.1.3)
51+
erubis (2.7.0)
52+
execjs (1.4.0)
53+
multi_json (~> 1.0)
54+
ffi (1.0.11)
55+
hike (1.2.1)
56+
i18n (0.6.0)
57+
journey (1.0.3)
58+
jquery-rails (2.0.0)
59+
railties (>= 3.2.0.beta, < 5.0)
60+
thor (~> 0.14)
61+
json (1.7.3)
62+
libwebsocket (0.1.3)
63+
addressable
64+
mail (2.4.4)
65+
i18n (>= 0.4.0)
66+
mime-types (~> 1.16)
67+
treetop (~> 1.4.8)
68+
mime-types (1.18)
69+
multi_json (1.3.6)
70+
nokogiri (1.5.2)
71+
pg (0.12.2)
72+
polyglot (0.3.3)
73+
rack (1.4.1)
74+
rack-cache (1.2)
75+
rack (>= 0.4)
76+
rack-ssl (1.3.2)
77+
rack
78+
rack-test (0.6.1)
79+
rack (>= 1.0)
80+
rails (3.2.3)
81+
actionmailer (= 3.2.3)
82+
actionpack (= 3.2.3)
83+
activerecord (= 3.2.3)
84+
activeresource (= 3.2.3)
85+
activesupport (= 3.2.3)
86+
bundler (~> 1.0)
87+
railties (= 3.2.3)
88+
railties (3.2.3)
89+
actionpack (= 3.2.3)
90+
activesupport (= 3.2.3)
91+
rack-ssl (~> 1.3.2)
92+
rake (>= 0.8.7)
93+
rdoc (~> 3.4)
94+
thor (~> 0.14.6)
95+
rake (0.9.2.2)
96+
rdoc (3.12)
97+
json (~> 1.4)
98+
rspec (2.10.0)
99+
rspec-core (~> 2.10.0)
100+
rspec-expectations (~> 2.10.0)
101+
rspec-mocks (~> 2.10.0)
102+
rspec-core (2.10.1)
103+
rspec-expectations (2.10.0)
104+
diff-lcs (~> 1.1.3)
105+
rspec-mocks (2.10.1)
106+
rspec-rails (2.10.0)
107+
actionpack (>= 3.0)
108+
activesupport (>= 3.0)
109+
railties (>= 3.0)
110+
rspec (~> 2.10.0)
111+
rubyzip (0.9.8)
112+
sass (3.1.19)
113+
sass-rails (3.2.4)
114+
railties (~> 3.2.0)
115+
sass (>= 3.1.10)
116+
tilt (~> 1.3)
117+
selenium-webdriver (2.21.2)
118+
childprocess (>= 0.2.5)
119+
ffi (~> 1.0)
120+
libwebsocket (~> 0.1.3)
121+
multi_json (~> 1.0)
122+
rubyzip
123+
sprockets (2.1.3)
124+
hike (~> 1.2)
125+
rack (~> 1.0)
126+
tilt (~> 1.1, != 1.3.0)
127+
sqlite3 (1.3.5)
128+
thor (0.14.6)
129+
tilt (1.3.3)
130+
treetop (1.4.10)
131+
polyglot
132+
polyglot (>= 0.3.1)
133+
tzinfo (0.3.33)
134+
uglifier (1.2.3)
135+
execjs (>= 0.3.0)
136+
multi_json (>= 1.0.2)
137+
xpath (0.1.4)
138+
nokogiri (~> 1.3)
139+
140+
PLATFORMS
141+
ruby
142+
143+
DEPENDENCIES
144+
capybara (= 1.1.2)
145+
coffee-rails (= 3.2.2)
146+
jquery-rails (= 2.0.0)
147+
pg (= 0.12.2)
148+
rails (= 3.2.3)
149+
rspec-rails (= 2.10.0)
150+
sass-rails (= 3.2.4)
151+
sqlite3 (= 1.3.5)
152+
uglifier (= 1.2.3)

0 commit comments

Comments
 (0)