Skip to content

Commit b75bb6e

Browse files
committed
Initial commit
0 parents  commit b75bb6e

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

+1267
-0
lines changed

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

Diff for: .rspec

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

Diff for: Gemfile

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
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+
group :development, :test do
9+
gem 'sqlite3', '1.3.5'
10+
gem 'rspec-rails', '2.9.0'
11+
end
12+
13+
# Gems used only for assets and not required
14+
# in production environments by default.
15+
group :assets do
16+
gem 'sass-rails', '3.2.4'
17+
gem 'coffee-rails', '3.2.2'
18+
19+
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
20+
# gem 'therubyracer', :platforms => :ruby
21+
22+
gem 'uglifier', '1.2.3'
23+
end
24+
25+
gem 'jquery-rails'
26+
27+
group :test do
28+
gem 'capybara', '1.1.2'
29+
end
30+
31+
group :production do
32+
gem 'pg', '0.12.2'
33+
end
34+
35+
# To use ActiveModel has_secure_password
36+
# gem 'bcrypt-ruby', '~> 3.0.0'
37+
38+
# To use Jbuilder templates for JSON
39+
# gem 'jbuilder'
40+
41+
# Use unicorn as the app server
42+
# gem 'unicorn'
43+
44+
# Deploy with Capistrano
45+
# gem 'capistrano'
46+
47+
# To use debugger
48+
# gem 'debugger'

Diff for: Gemfile.lock

+150
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,150 @@
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.3)
32+
builder (3.0.4)
33+
capybara (1.1.2)
34+
mime-types (>= 1.16)
35+
nokogiri (>= 1.3.3)
36+
rack (>= 1.0.0)
37+
rack-test (>= 0.5.4)
38+
selenium-webdriver (~> 2.0)
39+
xpath (~> 0.1.4)
40+
childprocess (0.3.9)
41+
ffi (~> 1.0, >= 1.0.11)
42+
coffee-rails (3.2.2)
43+
coffee-script (>= 2.2.0)
44+
railties (~> 3.2.0)
45+
coffee-script (2.2.0)
46+
coffee-script-source
47+
execjs
48+
coffee-script-source (1.6.3)
49+
diff-lcs (1.1.3)
50+
erubis (2.7.0)
51+
execjs (2.0.2)
52+
ffi (1.9.3)
53+
hike (1.2.3)
54+
i18n (0.6.1)
55+
journey (1.0.4)
56+
jquery-rails (3.0.4)
57+
railties (>= 3.0, < 5.0)
58+
thor (>= 0.14, < 2.0)
59+
json (1.8.1)
60+
mail (2.5.4)
61+
mime-types (~> 1.16)
62+
treetop (~> 1.4.8)
63+
mime-types (1.25.1)
64+
mini_portile (0.5.2)
65+
multi_json (1.8.2)
66+
nokogiri (1.6.1)
67+
mini_portile (~> 0.5.0)
68+
pg (0.12.2)
69+
polyglot (0.3.3)
70+
rack (1.4.5)
71+
rack-cache (1.2)
72+
rack (>= 0.4)
73+
rack-ssl (1.3.3)
74+
rack
75+
rack-test (0.6.2)
76+
rack (>= 1.0)
77+
rails (3.2.13)
78+
actionmailer (= 3.2.13)
79+
actionpack (= 3.2.13)
80+
activerecord (= 3.2.13)
81+
activeresource (= 3.2.13)
82+
activesupport (= 3.2.13)
83+
bundler (~> 1.0)
84+
railties (= 3.2.13)
85+
railties (3.2.13)
86+
actionpack (= 3.2.13)
87+
activesupport (= 3.2.13)
88+
rack-ssl (~> 1.3.2)
89+
rake (>= 0.8.7)
90+
rdoc (~> 3.4)
91+
thor (>= 0.14.6, < 2.0)
92+
rake (10.1.1)
93+
rdoc (3.12.2)
94+
json (~> 1.4)
95+
rspec (2.9.0)
96+
rspec-core (~> 2.9.0)
97+
rspec-expectations (~> 2.9.0)
98+
rspec-mocks (~> 2.9.0)
99+
rspec-core (2.9.0)
100+
rspec-expectations (2.9.1)
101+
diff-lcs (~> 1.1.3)
102+
rspec-mocks (2.9.0)
103+
rspec-rails (2.9.0)
104+
actionpack (>= 3.0)
105+
activesupport (>= 3.0)
106+
railties (>= 3.0)
107+
rspec (~> 2.9.0)
108+
rubyzip (1.1.0)
109+
sass (3.2.13)
110+
sass-rails (3.2.4)
111+
railties (~> 3.2.0)
112+
sass (>= 3.1.10)
113+
tilt (~> 1.3)
114+
selenium-webdriver (2.39.0)
115+
childprocess (>= 0.2.5)
116+
multi_json (~> 1.0)
117+
rubyzip (~> 1.0)
118+
websocket (~> 1.0.4)
119+
sprockets (2.2.2)
120+
hike (~> 1.2)
121+
multi_json (~> 1.0)
122+
rack (~> 1.0)
123+
tilt (~> 1.1, != 1.3.0)
124+
sqlite3 (1.3.5)
125+
thor (0.18.1)
126+
tilt (1.4.1)
127+
treetop (1.4.15)
128+
polyglot
129+
polyglot (>= 0.3.1)
130+
tzinfo (0.3.38)
131+
uglifier (1.2.3)
132+
execjs (>= 0.3.0)
133+
multi_json (>= 1.0.2)
134+
websocket (1.0.7)
135+
xpath (0.1.4)
136+
nokogiri (~> 1.3)
137+
138+
PLATFORMS
139+
ruby
140+
141+
DEPENDENCIES
142+
capybara (= 1.1.2)
143+
coffee-rails (= 3.2.2)
144+
jquery-rails
145+
pg (= 0.12.2)
146+
rails (= 3.2.13)
147+
rspec-rails (= 2.9.0)
148+
sass-rails (= 3.2.4)
149+
sqlite3 (= 1.3.5)
150+
uglifier (= 1.2.3)

0 commit comments

Comments
 (0)