Skip to content
This repository was archived by the owner on Dec 16, 2022. It is now read-only.

Commit c11431b

Browse files
committed
Initial commit
0 parents  commit c11431b

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

+897
-0
lines changed

.gitignore

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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
16+
*.swp

.rspec

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

Gemfile

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
source 'https://rubygems.org'
2+
3+
gem 'rails', '3.2.2'
4+
5+
gem 'json'
6+
7+
group :test do
8+
gem 'cucumber-rails'
9+
gem 'capybara-webkit', :git => '[email protected]:mhoran/capybara-webkit.git'
10+
end
11+
12+
group :test, :development do
13+
gem 'rspec-rails'
14+
end

Gemfile.lock

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

0 commit comments

Comments
 (0)