Skip to content

Commit 00a4979

Browse files
author
tk
committed
Initial commit
0 parents  commit 00a4979

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

+1273
-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+
--color

Gemfile

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

Gemfile.lock

+151
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,151 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actionmailer (3.2.8)
5+
actionpack (= 3.2.8)
6+
mail (~> 2.4.4)
7+
actionpack (3.2.8)
8+
activemodel (= 3.2.8)
9+
activesupport (= 3.2.8)
10+
builder (~> 3.0.0)
11+
erubis (~> 2.7.0)
12+
journey (~> 1.0.4)
13+
rack (~> 1.4.0)
14+
rack-cache (~> 1.2)
15+
rack-test (~> 0.6.1)
16+
sprockets (~> 2.1.3)
17+
activemodel (3.2.8)
18+
activesupport (= 3.2.8)
19+
builder (~> 3.0.0)
20+
activerecord (3.2.8)
21+
activemodel (= 3.2.8)
22+
activesupport (= 3.2.8)
23+
arel (~> 3.0.2)
24+
tzinfo (~> 0.3.29)
25+
activeresource (3.2.8)
26+
activemodel (= 3.2.8)
27+
activesupport (= 3.2.8)
28+
activesupport (3.2.8)
29+
i18n (~> 0.6)
30+
multi_json (~> 1.0)
31+
addressable (2.3.2)
32+
arel (3.0.2)
33+
builder (3.0.3)
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.5)
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.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.1.5)
55+
hike (1.2.1)
56+
i18n (0.6.1)
57+
journey (1.0.4)
58+
jquery-rails (2.0.2)
59+
railties (>= 3.2.0, < 5.0)
60+
thor (~> 0.14)
61+
json (1.7.5)
62+
libwebsocket (0.1.5)
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.19)
69+
multi_json (1.3.6)
70+
nokogiri (1.5.5)
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.2)
79+
rack (>= 1.0)
80+
rails (3.2.8)
81+
actionmailer (= 3.2.8)
82+
actionpack (= 3.2.8)
83+
activerecord (= 3.2.8)
84+
activeresource (= 3.2.8)
85+
activesupport (= 3.2.8)
86+
bundler (~> 1.0)
87+
railties (= 3.2.8)
88+
railties (3.2.8)
89+
actionpack (= 3.2.8)
90+
activesupport (= 3.2.8)
91+
rack-ssl (~> 1.3.2)
92+
rake (>= 0.8.7)
93+
rdoc (~> 3.4)
94+
thor (>= 0.14.6, < 2.0)
95+
rake (0.9.2.2)
96+
rdoc (3.12)
97+
json (~> 1.4)
98+
rspec (2.11.0)
99+
rspec-core (~> 2.11.0)
100+
rspec-expectations (~> 2.11.0)
101+
rspec-mocks (~> 2.11.0)
102+
rspec-core (2.11.1)
103+
rspec-expectations (2.11.3)
104+
diff-lcs (~> 1.1.3)
105+
rspec-mocks (2.11.3)
106+
rspec-rails (2.11.0)
107+
actionpack (>= 3.0)
108+
activesupport (>= 3.0)
109+
railties (>= 3.0)
110+
rspec (~> 2.11.0)
111+
rubyzip (0.9.9)
112+
sass (3.2.1)
113+
sass-rails (3.2.5)
114+
railties (~> 3.2.0)
115+
sass (>= 3.1.10)
116+
tilt (~> 1.3)
117+
selenium-webdriver (2.25.0)
118+
childprocess (>= 0.2.5)
119+
libwebsocket (~> 0.1.3)
120+
multi_json (~> 1.0)
121+
rubyzip
122+
sprockets (2.1.3)
123+
hike (~> 1.2)
124+
rack (~> 1.0)
125+
tilt (~> 1.1, != 1.3.0)
126+
sqlite3 (1.3.5)
127+
thor (0.16.0)
128+
tilt (1.3.3)
129+
treetop (1.4.10)
130+
polyglot
131+
polyglot (>= 0.3.1)
132+
tzinfo (0.3.33)
133+
uglifier (1.2.3)
134+
execjs (>= 0.3.0)
135+
multi_json (>= 1.0.2)
136+
xpath (0.1.4)
137+
nokogiri (~> 1.3)
138+
139+
PLATFORMS
140+
ruby
141+
142+
DEPENDENCIES
143+
capybara (= 1.1.2)
144+
coffee-rails (= 3.2.2)
145+
jquery-rails (= 2.0.2)
146+
pg (= 0.12.2)
147+
rails (= 3.2.8)
148+
rspec-rails (= 2.11.0)
149+
sass-rails (= 3.2.5)
150+
sqlite3 (= 1.3.5)
151+
uglifier (= 1.2.3)

0 commit comments

Comments
 (0)