Skip to content

Commit 868b583

Browse files
author
Ruan Pethiyagoda
committed
Initial commit
0 parents  commit 868b583

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

.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

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
source 'https://rubygems.org'
2+
3+
gem 'rails', '3.2.3'
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'
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', :platform => :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 'ruby-debug19', :require => 'ruby-debug'

Gemfile.lock

+153
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,153 @@
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.3.2)
32+
arel (3.0.2)
33+
builder (3.0.4)
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.6)
42+
ffi (~> 1.0, >= 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.4.0)
50+
diff-lcs (1.1.3)
51+
erubis (2.7.0)
52+
execjs (1.4.0)
53+
multi_json (~> 1.0)
54+
ffi (1.3.1-x86-mingw32)
55+
hike (1.2.1)
56+
i18n (0.6.1)
57+
journey (1.0.4)
58+
jquery-rails (2.1.4)
59+
railties (>= 3.0, < 5.0)
60+
thor (>= 0.14, < 2.0)
61+
json (1.7.6)
62+
libwebsocket (0.1.7.1)
63+
addressable
64+
websocket
65+
mail (2.4.4)
66+
i18n (>= 0.4.0)
67+
mime-types (~> 1.16)
68+
treetop (~> 1.4.8)
69+
mime-types (1.19)
70+
multi_json (1.5.0)
71+
nokogiri (1.5.6-x86-mingw32)
72+
pg (0.12.2-x86-mingw32)
73+
polyglot (0.3.3)
74+
rack (1.4.4)
75+
rack-cache (1.2)
76+
rack (>= 0.4)
77+
rack-ssl (1.3.2)
78+
rack
79+
rack-test (0.6.2)
80+
rack (>= 1.0)
81+
rails (3.2.3)
82+
actionmailer (= 3.2.3)
83+
actionpack (= 3.2.3)
84+
activerecord (= 3.2.3)
85+
activeresource (= 3.2.3)
86+
activesupport (= 3.2.3)
87+
bundler (~> 1.0)
88+
railties (= 3.2.3)
89+
railties (3.2.3)
90+
actionpack (= 3.2.3)
91+
activesupport (= 3.2.3)
92+
rack-ssl (~> 1.3.2)
93+
rake (>= 0.8.7)
94+
rdoc (~> 3.4)
95+
thor (~> 0.14.6)
96+
rake (10.0.3)
97+
rdoc (3.12)
98+
json (~> 1.4)
99+
rspec (2.9.0)
100+
rspec-core (~> 2.9.0)
101+
rspec-expectations (~> 2.9.0)
102+
rspec-mocks (~> 2.9.0)
103+
rspec-core (2.9.0)
104+
rspec-expectations (2.9.1)
105+
diff-lcs (~> 1.1.3)
106+
rspec-mocks (2.9.0)
107+
rspec-rails (2.9.0)
108+
actionpack (>= 3.0)
109+
activesupport (>= 3.0)
110+
railties (>= 3.0)
111+
rspec (~> 2.9.0)
112+
rubyzip (0.9.9)
113+
sass (3.2.5)
114+
sass-rails (3.2.4)
115+
railties (~> 3.2.0)
116+
sass (>= 3.1.10)
117+
tilt (~> 1.3)
118+
selenium-webdriver (2.27.2)
119+
childprocess (>= 0.2.5)
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.7-x86-mingw32)
128+
thor (0.14.6)
129+
tilt (1.3.3)
130+
treetop (1.4.12)
131+
polyglot
132+
polyglot (>= 0.3.1)
133+
tzinfo (0.3.35)
134+
uglifier (1.2.3)
135+
execjs (>= 0.3.0)
136+
multi_json (>= 1.0.2)
137+
websocket (1.0.6)
138+
xpath (0.1.4)
139+
nokogiri (~> 1.3)
140+
141+
PLATFORMS
142+
x86-mingw32
143+
144+
DEPENDENCIES
145+
capybara (= 1.1.2)
146+
coffee-rails (= 3.2.2)
147+
jquery-rails
148+
pg (= 0.12.2)
149+
rails (= 3.2.3)
150+
rspec-rails (= 2.9.0)
151+
sass-rails (= 3.2.4)
152+
sqlite3
153+
uglifier (= 1.2.3)

0 commit comments

Comments
 (0)