aktion_test_rails 0.1.1 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +3 -0
- data/.rvmrc +1 -1
- data/.travis.yml +3 -6
- data/CHANGELOG.md +35 -0
- data/Gemfile +18 -3
- data/README.md +12 -1
- data/Rakefile +2 -8
- data/aktion_test_rails.gemspec +1 -4
- data/lib/aktion_test_rails/load.rb +18 -0
- data/lib/aktion_test_rails/matchers/active_admin/flash.rb +93 -0
- data/lib/aktion_test_rails/matchers/active_admin.rb +50 -0
- data/lib/aktion_test_rails/matchers/factory_girl/validation.rb +58 -0
- data/lib/aktion_test_rails/matchers/factory_girl.rb +7 -2
- data/lib/aktion_test_rails/support/active_admin/request/sign_in.rb +17 -0
- data/lib/aktion_test_rails/support/active_admin/request.rb +16 -0
- data/lib/aktion_test_rails/support/capybara/rack_app.rb +13 -0
- data/lib/aktion_test_rails/support/rails/model_builder.rb +59 -0
- data/lib/aktion_test_rails/version.rb +1 -1
- data/lib/aktion_test_rails.rb +56 -3
- data/spec/aktion_test_rails/model_builder_spec.rb +68 -0
- data/spec/matchers/active_admin/flash_spec.rb +141 -0
- data/spec/matchers/factory_girl/validation_spec.rb +71 -0
- data/spec/rails_app/.gitignore +15 -0
- data/spec/rails_app/Rakefile +7 -0
- data/spec/rails_app/app/admin/admin_user.rb +22 -0
- data/spec/rails_app/app/admin/dashboard.rb +33 -0
- data/spec/rails_app/app/assets/images/.gitkeep +0 -0
- data/spec/rails_app/app/assets/javascripts/active_admin.js +1 -0
- data/spec/rails_app/app/assets/javascripts/application.js +15 -0
- data/spec/rails_app/app/assets/stylesheets/active_admin.css.scss +29 -0
- data/spec/rails_app/app/assets/stylesheets/application.css +13 -0
- data/spec/rails_app/app/controllers/application_controller.rb +3 -0
- data/spec/rails_app/app/models/admin_user.rb +11 -0
- data/spec/rails_app/app/views/layouts/application.html.erb +14 -0
- data/spec/rails_app/config/application.rb +19 -0
- data/spec/rails_app/config/boot.rb +3 -0
- data/spec/rails_app/config/database.yml +5 -0
- data/spec/rails_app/config/environment.rb +2 -0
- data/spec/rails_app/config/environments/test.rb +37 -0
- data/spec/rails_app/config/initializers/active_admin.rb +7 -0
- data/spec/rails_app/config/initializers/devise.rb +11 -0
- data/spec/rails_app/config/initializers/secret_token.rb +1 -0
- data/spec/rails_app/config/initializers/session_store.rb +1 -0
- data/spec/rails_app/config/initializers/wrap_parameters.rb +6 -0
- data/spec/rails_app/config/locales/devise.en.yml +58 -0
- data/spec/rails_app/config/locales/en.yml +9 -0
- data/spec/rails_app/config/routes.rb +5 -0
- data/spec/rails_app/config.ru +4 -0
- data/spec/rails_app/db/migrate/20121126141714_devise_create_admin_users.rb +52 -0
- data/spec/rails_app/db/migrate/20121126141717_create_admin_notes.rb +17 -0
- data/spec/rails_app/db/migrate/20121126141718_move_admin_notes_to_comments.rb +25 -0
- data/spec/rails_app/public/404.html +26 -0
- data/spec/rails_app/public/422.html +26 -0
- data/spec/rails_app/public/500.html +25 -0
- data/spec/rails_app/public/favicon.ico +0 -0
- data/spec/rails_app/public/robots.txt +5 -0
- data/spec/rails_app/script/rails +6 -0
- data/spec/requests/active_admin/sign_in_spec.rb +34 -0
- data/spec/spec_active_record.rb +13 -0
- data/spec/spec_base.rb +28 -0
- data/spec/spec_rails.rb +18 -0
- metadata +99 -60
- data/Appraisals +0 -15
- data/gemfiles/3.0.gemfile +0 -8
- data/gemfiles/3.0.gemfile.lock +0 -175
- data/gemfiles/3.1.gemfile +0 -10
- data/gemfiles/3.1.gemfile.lock +0 -196
- data/gemfiles/3.2.gemfile +0 -10
- data/gemfiles/3.2.gemfile.lock +0 -194
- data/lib/aktion_test_rails/class_builder.rb +0 -29
- data/lib/aktion_test_rails/matchers/factory_girl/have_a_valid_factory.rb +0 -49
- data/lib/aktion_test_rails/matchers/integrations/rspec.rb +0 -9
- data/lib/aktion_test_rails/matchers.rb +0 -1
- data/lib/aktion_test_rails/model_builder.rb +0 -70
- data/spec/matchers/factory_girl/have_a_valid_factory_spec.rb +0 -64
- data/spec/spec_helper.rb +0 -27
data/gemfiles/3.0.gemfile.lock
DELETED
@@ -1,175 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: /home/chris/code/projects/aktion_test_rails
|
3
|
-
specs:
|
4
|
-
aktion_test_rails (0.0.2)
|
5
|
-
aktion_test (= 0.0.1)
|
6
|
-
capybara (~> 1.1.2)
|
7
|
-
database_cleaner (~> 0.8.0)
|
8
|
-
factory_girl_rails (~> 4.0.0)
|
9
|
-
launchy (~> 2.1.2)
|
10
|
-
poltergeist (~> 1.0.2)
|
11
|
-
rspec-rails (~> 2.11.0)
|
12
|
-
shoulda-matchers (~> 1.3.0)
|
13
|
-
|
14
|
-
GEM
|
15
|
-
remote: https://rubygems.org/
|
16
|
-
specs:
|
17
|
-
abstract (1.0.0)
|
18
|
-
actionmailer (3.0.17)
|
19
|
-
actionpack (= 3.0.17)
|
20
|
-
mail (~> 2.2.19)
|
21
|
-
actionpack (3.0.17)
|
22
|
-
activemodel (= 3.0.17)
|
23
|
-
activesupport (= 3.0.17)
|
24
|
-
builder (~> 2.1.2)
|
25
|
-
erubis (~> 2.6.6)
|
26
|
-
i18n (~> 0.5.0)
|
27
|
-
rack (~> 1.2.5)
|
28
|
-
rack-mount (~> 0.6.14)
|
29
|
-
rack-test (~> 0.5.7)
|
30
|
-
tzinfo (~> 0.3.23)
|
31
|
-
activemodel (3.0.17)
|
32
|
-
activesupport (= 3.0.17)
|
33
|
-
builder (~> 2.1.2)
|
34
|
-
i18n (~> 0.5.0)
|
35
|
-
activerecord (3.0.17)
|
36
|
-
activemodel (= 3.0.17)
|
37
|
-
activesupport (= 3.0.17)
|
38
|
-
arel (~> 2.0.10)
|
39
|
-
tzinfo (~> 0.3.23)
|
40
|
-
activeresource (3.0.17)
|
41
|
-
activemodel (= 3.0.17)
|
42
|
-
activesupport (= 3.0.17)
|
43
|
-
activesupport (3.0.17)
|
44
|
-
addressable (2.3.2)
|
45
|
-
aktion_test (0.0.1)
|
46
|
-
cucumber (~> 1.2.1)
|
47
|
-
factory_girl (~> 4.0.0)
|
48
|
-
faker (~> 1.0.1)
|
49
|
-
rspec (~> 2.11.0)
|
50
|
-
simplecov (~> 0.6.4)
|
51
|
-
timecop (~> 0.4.5)
|
52
|
-
appraisal (0.5.1)
|
53
|
-
bundler
|
54
|
-
rake
|
55
|
-
arel (2.0.10)
|
56
|
-
builder (2.1.2)
|
57
|
-
capybara (1.1.3)
|
58
|
-
mime-types (>= 1.16)
|
59
|
-
nokogiri (>= 1.3.3)
|
60
|
-
rack (>= 1.0.0)
|
61
|
-
rack-test (>= 0.5.4)
|
62
|
-
selenium-webdriver (~> 2.0)
|
63
|
-
xpath (~> 0.1.4)
|
64
|
-
childprocess (0.3.6)
|
65
|
-
ffi (~> 1.0, >= 1.0.6)
|
66
|
-
cucumber (1.2.1)
|
67
|
-
builder (>= 2.1.2)
|
68
|
-
diff-lcs (>= 1.1.3)
|
69
|
-
gherkin (~> 2.11.0)
|
70
|
-
json (>= 1.4.6)
|
71
|
-
database_cleaner (0.8.0)
|
72
|
-
diff-lcs (1.1.3)
|
73
|
-
erubis (2.6.6)
|
74
|
-
abstract (>= 1.0.0)
|
75
|
-
eventmachine (1.0.0)
|
76
|
-
factory_girl (4.0.0)
|
77
|
-
activesupport (>= 3.0.0)
|
78
|
-
factory_girl_rails (4.0.0)
|
79
|
-
factory_girl (~> 4.0.0)
|
80
|
-
railties (>= 3.0.0)
|
81
|
-
faker (1.0.1)
|
82
|
-
i18n (~> 0.4)
|
83
|
-
faye-websocket (0.4.6)
|
84
|
-
eventmachine (>= 0.12.0)
|
85
|
-
ffi (1.2.0)
|
86
|
-
gherkin (2.11.5)
|
87
|
-
json (>= 1.4.6)
|
88
|
-
http_parser.rb (0.5.3)
|
89
|
-
i18n (0.5.0)
|
90
|
-
json (1.7.5)
|
91
|
-
launchy (2.1.2)
|
92
|
-
addressable (~> 2.3)
|
93
|
-
libwebsocket (0.1.6.1)
|
94
|
-
websocket
|
95
|
-
mail (2.2.19)
|
96
|
-
activesupport (>= 2.3.6)
|
97
|
-
i18n (>= 0.4.0)
|
98
|
-
mime-types (~> 1.16)
|
99
|
-
treetop (~> 1.4.8)
|
100
|
-
mime-types (1.19)
|
101
|
-
multi_json (1.3.7)
|
102
|
-
nokogiri (1.5.5)
|
103
|
-
poltergeist (1.0.2)
|
104
|
-
capybara (~> 1.1)
|
105
|
-
childprocess (~> 0.3)
|
106
|
-
faye-websocket (~> 0.4, >= 0.4.4)
|
107
|
-
http_parser.rb (~> 0.5.3)
|
108
|
-
multi_json (~> 1.0)
|
109
|
-
polyglot (0.3.3)
|
110
|
-
rack (1.2.5)
|
111
|
-
rack-mount (0.6.14)
|
112
|
-
rack (>= 1.0.0)
|
113
|
-
rack-test (0.5.7)
|
114
|
-
rack (>= 1.0)
|
115
|
-
rails (3.0.17)
|
116
|
-
actionmailer (= 3.0.17)
|
117
|
-
actionpack (= 3.0.17)
|
118
|
-
activerecord (= 3.0.17)
|
119
|
-
activeresource (= 3.0.17)
|
120
|
-
activesupport (= 3.0.17)
|
121
|
-
bundler (~> 1.0)
|
122
|
-
railties (= 3.0.17)
|
123
|
-
railties (3.0.17)
|
124
|
-
actionpack (= 3.0.17)
|
125
|
-
activesupport (= 3.0.17)
|
126
|
-
rake (>= 0.8.7)
|
127
|
-
rdoc (~> 3.4)
|
128
|
-
thor (~> 0.14.4)
|
129
|
-
rake (10.0.2)
|
130
|
-
rdoc (3.12)
|
131
|
-
json (~> 1.4)
|
132
|
-
rspec (2.11.0)
|
133
|
-
rspec-core (~> 2.11.0)
|
134
|
-
rspec-expectations (~> 2.11.0)
|
135
|
-
rspec-mocks (~> 2.11.0)
|
136
|
-
rspec-core (2.11.1)
|
137
|
-
rspec-expectations (2.11.3)
|
138
|
-
diff-lcs (~> 1.1.3)
|
139
|
-
rspec-mocks (2.11.3)
|
140
|
-
rspec-rails (2.11.4)
|
141
|
-
actionpack (>= 3.0)
|
142
|
-
activesupport (>= 3.0)
|
143
|
-
railties (>= 3.0)
|
144
|
-
rspec (~> 2.11.0)
|
145
|
-
rubyzip (0.9.9)
|
146
|
-
selenium-webdriver (2.26.0)
|
147
|
-
childprocess (>= 0.2.5)
|
148
|
-
libwebsocket (~> 0.1.3)
|
149
|
-
multi_json (~> 1.0)
|
150
|
-
rubyzip
|
151
|
-
shoulda-matchers (1.3.0)
|
152
|
-
activesupport (>= 3.0.0)
|
153
|
-
simplecov (0.6.4)
|
154
|
-
multi_json (~> 1.0)
|
155
|
-
simplecov-html (~> 0.5.3)
|
156
|
-
simplecov-html (0.5.3)
|
157
|
-
sqlite3 (1.3.6)
|
158
|
-
thor (0.14.6)
|
159
|
-
timecop (0.4.6)
|
160
|
-
treetop (1.4.12)
|
161
|
-
polyglot
|
162
|
-
polyglot (>= 0.3.1)
|
163
|
-
tzinfo (0.3.35)
|
164
|
-
websocket (1.0.4)
|
165
|
-
xpath (0.1.4)
|
166
|
-
nokogiri (~> 1.3)
|
167
|
-
|
168
|
-
PLATFORMS
|
169
|
-
ruby
|
170
|
-
|
171
|
-
DEPENDENCIES
|
172
|
-
aktion_test_rails!
|
173
|
-
appraisal (~> 0.5.1)
|
174
|
-
rails (= 3.0.17)
|
175
|
-
sqlite3
|
data/gemfiles/3.1.gemfile
DELETED
data/gemfiles/3.1.gemfile.lock
DELETED
@@ -1,196 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: /home/chris/code/projects/aktion_test_rails
|
3
|
-
specs:
|
4
|
-
aktion_test_rails (0.0.2)
|
5
|
-
aktion_test (= 0.0.1)
|
6
|
-
capybara (~> 1.1.2)
|
7
|
-
database_cleaner (~> 0.8.0)
|
8
|
-
factory_girl_rails (~> 4.0.0)
|
9
|
-
launchy (~> 2.1.2)
|
10
|
-
poltergeist (~> 1.0.2)
|
11
|
-
rspec-rails (~> 2.11.0)
|
12
|
-
shoulda-matchers (~> 1.3.0)
|
13
|
-
|
14
|
-
GEM
|
15
|
-
remote: https://rubygems.org/
|
16
|
-
specs:
|
17
|
-
actionmailer (3.1.8)
|
18
|
-
actionpack (= 3.1.8)
|
19
|
-
mail (~> 2.3.3)
|
20
|
-
actionpack (3.1.8)
|
21
|
-
activemodel (= 3.1.8)
|
22
|
-
activesupport (= 3.1.8)
|
23
|
-
builder (~> 3.0.0)
|
24
|
-
erubis (~> 2.7.0)
|
25
|
-
i18n (~> 0.6)
|
26
|
-
rack (~> 1.3.6)
|
27
|
-
rack-cache (~> 1.2)
|
28
|
-
rack-mount (~> 0.8.2)
|
29
|
-
rack-test (~> 0.6.1)
|
30
|
-
sprockets (~> 2.0.4)
|
31
|
-
activemodel (3.1.8)
|
32
|
-
activesupport (= 3.1.8)
|
33
|
-
builder (~> 3.0.0)
|
34
|
-
i18n (~> 0.6)
|
35
|
-
activerecord (3.1.8)
|
36
|
-
activemodel (= 3.1.8)
|
37
|
-
activesupport (= 3.1.8)
|
38
|
-
arel (~> 2.2.3)
|
39
|
-
tzinfo (~> 0.3.29)
|
40
|
-
activeresource (3.1.8)
|
41
|
-
activemodel (= 3.1.8)
|
42
|
-
activesupport (= 3.1.8)
|
43
|
-
activesupport (3.1.8)
|
44
|
-
multi_json (>= 1.0, < 1.3)
|
45
|
-
addressable (2.3.2)
|
46
|
-
aktion_test (0.0.1)
|
47
|
-
cucumber (~> 1.2.1)
|
48
|
-
factory_girl (~> 4.0.0)
|
49
|
-
faker (~> 1.0.1)
|
50
|
-
rspec (~> 2.11.0)
|
51
|
-
simplecov (~> 0.6.4)
|
52
|
-
timecop (~> 0.4.5)
|
53
|
-
appraisal (0.5.1)
|
54
|
-
bundler
|
55
|
-
rake
|
56
|
-
arel (2.2.3)
|
57
|
-
builder (3.0.4)
|
58
|
-
capybara (1.1.3)
|
59
|
-
mime-types (>= 1.16)
|
60
|
-
nokogiri (>= 1.3.3)
|
61
|
-
rack (>= 1.0.0)
|
62
|
-
rack-test (>= 0.5.4)
|
63
|
-
selenium-webdriver (~> 2.0)
|
64
|
-
xpath (~> 0.1.4)
|
65
|
-
childprocess (0.3.6)
|
66
|
-
ffi (~> 1.0, >= 1.0.6)
|
67
|
-
cucumber (1.2.1)
|
68
|
-
builder (>= 2.1.2)
|
69
|
-
diff-lcs (>= 1.1.3)
|
70
|
-
gherkin (~> 2.11.0)
|
71
|
-
json (>= 1.4.6)
|
72
|
-
database_cleaner (0.8.0)
|
73
|
-
diff-lcs (1.1.3)
|
74
|
-
erubis (2.7.0)
|
75
|
-
eventmachine (1.0.0)
|
76
|
-
factory_girl (4.0.0)
|
77
|
-
activesupport (>= 3.0.0)
|
78
|
-
factory_girl_rails (4.0.0)
|
79
|
-
factory_girl (~> 4.0.0)
|
80
|
-
railties (>= 3.0.0)
|
81
|
-
faker (1.0.1)
|
82
|
-
i18n (~> 0.4)
|
83
|
-
faye-websocket (0.4.6)
|
84
|
-
eventmachine (>= 0.12.0)
|
85
|
-
ffi (1.2.0)
|
86
|
-
gherkin (2.11.5)
|
87
|
-
json (>= 1.4.6)
|
88
|
-
hike (1.2.1)
|
89
|
-
http_parser.rb (0.5.3)
|
90
|
-
i18n (0.6.1)
|
91
|
-
jquery-rails (2.1.3)
|
92
|
-
railties (>= 3.1.0, < 5.0)
|
93
|
-
thor (~> 0.14)
|
94
|
-
json (1.7.5)
|
95
|
-
launchy (2.1.2)
|
96
|
-
addressable (~> 2.3)
|
97
|
-
libwebsocket (0.1.6.1)
|
98
|
-
websocket
|
99
|
-
mail (2.3.3)
|
100
|
-
i18n (>= 0.4.0)
|
101
|
-
mime-types (~> 1.16)
|
102
|
-
treetop (~> 1.4.8)
|
103
|
-
mime-types (1.19)
|
104
|
-
multi_json (1.2.0)
|
105
|
-
nokogiri (1.5.5)
|
106
|
-
poltergeist (1.0.2)
|
107
|
-
capybara (~> 1.1)
|
108
|
-
childprocess (~> 0.3)
|
109
|
-
faye-websocket (~> 0.4, >= 0.4.4)
|
110
|
-
http_parser.rb (~> 0.5.3)
|
111
|
-
multi_json (~> 1.0)
|
112
|
-
polyglot (0.3.3)
|
113
|
-
rack (1.3.6)
|
114
|
-
rack-cache (1.2)
|
115
|
-
rack (>= 0.4)
|
116
|
-
rack-mount (0.8.3)
|
117
|
-
rack (>= 1.0.0)
|
118
|
-
rack-ssl (1.3.2)
|
119
|
-
rack
|
120
|
-
rack-test (0.6.2)
|
121
|
-
rack (>= 1.0)
|
122
|
-
rails (3.1.8)
|
123
|
-
actionmailer (= 3.1.8)
|
124
|
-
actionpack (= 3.1.8)
|
125
|
-
activerecord (= 3.1.8)
|
126
|
-
activeresource (= 3.1.8)
|
127
|
-
activesupport (= 3.1.8)
|
128
|
-
bundler (~> 1.0)
|
129
|
-
railties (= 3.1.8)
|
130
|
-
railties (3.1.8)
|
131
|
-
actionpack (= 3.1.8)
|
132
|
-
activesupport (= 3.1.8)
|
133
|
-
rack-ssl (~> 1.3.2)
|
134
|
-
rake (>= 0.8.7)
|
135
|
-
rdoc (~> 3.4)
|
136
|
-
thor (~> 0.14.6)
|
137
|
-
rake (10.0.2)
|
138
|
-
rdoc (3.12)
|
139
|
-
json (~> 1.4)
|
140
|
-
rspec (2.11.0)
|
141
|
-
rspec-core (~> 2.11.0)
|
142
|
-
rspec-expectations (~> 2.11.0)
|
143
|
-
rspec-mocks (~> 2.11.0)
|
144
|
-
rspec-core (2.11.1)
|
145
|
-
rspec-expectations (2.11.3)
|
146
|
-
diff-lcs (~> 1.1.3)
|
147
|
-
rspec-mocks (2.11.3)
|
148
|
-
rspec-rails (2.11.4)
|
149
|
-
actionpack (>= 3.0)
|
150
|
-
activesupport (>= 3.0)
|
151
|
-
railties (>= 3.0)
|
152
|
-
rspec (~> 2.11.0)
|
153
|
-
rubyzip (0.9.9)
|
154
|
-
sass (3.2.3)
|
155
|
-
sass-rails (3.1.6)
|
156
|
-
actionpack (~> 3.1.0)
|
157
|
-
railties (~> 3.1.0)
|
158
|
-
sass (>= 3.1.10)
|
159
|
-
tilt (~> 1.3.2)
|
160
|
-
selenium-webdriver (2.26.0)
|
161
|
-
childprocess (>= 0.2.5)
|
162
|
-
libwebsocket (~> 0.1.3)
|
163
|
-
multi_json (~> 1.0)
|
164
|
-
rubyzip
|
165
|
-
shoulda-matchers (1.3.0)
|
166
|
-
activesupport (>= 3.0.0)
|
167
|
-
simplecov (0.6.4)
|
168
|
-
multi_json (~> 1.0)
|
169
|
-
simplecov-html (~> 0.5.3)
|
170
|
-
simplecov-html (0.5.3)
|
171
|
-
sprockets (2.0.4)
|
172
|
-
hike (~> 1.2)
|
173
|
-
rack (~> 1.0)
|
174
|
-
tilt (~> 1.1, != 1.3.0)
|
175
|
-
sqlite3 (1.3.6)
|
176
|
-
thor (0.14.6)
|
177
|
-
tilt (1.3.3)
|
178
|
-
timecop (0.4.6)
|
179
|
-
treetop (1.4.12)
|
180
|
-
polyglot
|
181
|
-
polyglot (>= 0.3.1)
|
182
|
-
tzinfo (0.3.35)
|
183
|
-
websocket (1.0.4)
|
184
|
-
xpath (0.1.4)
|
185
|
-
nokogiri (~> 1.3)
|
186
|
-
|
187
|
-
PLATFORMS
|
188
|
-
ruby
|
189
|
-
|
190
|
-
DEPENDENCIES
|
191
|
-
aktion_test_rails!
|
192
|
-
appraisal (~> 0.5.1)
|
193
|
-
jquery-rails
|
194
|
-
rails (= 3.1.8)
|
195
|
-
sass-rails
|
196
|
-
sqlite3
|
data/gemfiles/3.2.gemfile
DELETED
data/gemfiles/3.2.gemfile.lock
DELETED
@@ -1,194 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: /home/chris/code/projects/aktion_test_rails
|
3
|
-
specs:
|
4
|
-
aktion_test_rails (0.0.2)
|
5
|
-
aktion_test (= 0.0.1)
|
6
|
-
capybara (~> 1.1.2)
|
7
|
-
database_cleaner (~> 0.8.0)
|
8
|
-
factory_girl_rails (~> 4.0.0)
|
9
|
-
launchy (~> 2.1.2)
|
10
|
-
poltergeist (~> 1.0.2)
|
11
|
-
rspec-rails (~> 2.11.0)
|
12
|
-
shoulda-matchers (~> 1.3.0)
|
13
|
-
|
14
|
-
GEM
|
15
|
-
remote: https://rubygems.org/
|
16
|
-
specs:
|
17
|
-
actionmailer (3.2.9)
|
18
|
-
actionpack (= 3.2.9)
|
19
|
-
mail (~> 2.4.4)
|
20
|
-
actionpack (3.2.9)
|
21
|
-
activemodel (= 3.2.9)
|
22
|
-
activesupport (= 3.2.9)
|
23
|
-
builder (~> 3.0.0)
|
24
|
-
erubis (~> 2.7.0)
|
25
|
-
journey (~> 1.0.4)
|
26
|
-
rack (~> 1.4.0)
|
27
|
-
rack-cache (~> 1.2)
|
28
|
-
rack-test (~> 0.6.1)
|
29
|
-
sprockets (~> 2.2.1)
|
30
|
-
activemodel (3.2.9)
|
31
|
-
activesupport (= 3.2.9)
|
32
|
-
builder (~> 3.0.0)
|
33
|
-
activerecord (3.2.9)
|
34
|
-
activemodel (= 3.2.9)
|
35
|
-
activesupport (= 3.2.9)
|
36
|
-
arel (~> 3.0.2)
|
37
|
-
tzinfo (~> 0.3.29)
|
38
|
-
activeresource (3.2.9)
|
39
|
-
activemodel (= 3.2.9)
|
40
|
-
activesupport (= 3.2.9)
|
41
|
-
activesupport (3.2.9)
|
42
|
-
i18n (~> 0.6)
|
43
|
-
multi_json (~> 1.0)
|
44
|
-
addressable (2.3.2)
|
45
|
-
aktion_test (0.0.1)
|
46
|
-
cucumber (~> 1.2.1)
|
47
|
-
factory_girl (~> 4.0.0)
|
48
|
-
faker (~> 1.0.1)
|
49
|
-
rspec (~> 2.11.0)
|
50
|
-
simplecov (~> 0.6.4)
|
51
|
-
timecop (~> 0.4.5)
|
52
|
-
appraisal (0.5.1)
|
53
|
-
bundler
|
54
|
-
rake
|
55
|
-
arel (3.0.2)
|
56
|
-
builder (3.0.4)
|
57
|
-
capybara (1.1.3)
|
58
|
-
mime-types (>= 1.16)
|
59
|
-
nokogiri (>= 1.3.3)
|
60
|
-
rack (>= 1.0.0)
|
61
|
-
rack-test (>= 0.5.4)
|
62
|
-
selenium-webdriver (~> 2.0)
|
63
|
-
xpath (~> 0.1.4)
|
64
|
-
childprocess (0.3.6)
|
65
|
-
ffi (~> 1.0, >= 1.0.6)
|
66
|
-
cucumber (1.2.1)
|
67
|
-
builder (>= 2.1.2)
|
68
|
-
diff-lcs (>= 1.1.3)
|
69
|
-
gherkin (~> 2.11.0)
|
70
|
-
json (>= 1.4.6)
|
71
|
-
database_cleaner (0.8.0)
|
72
|
-
diff-lcs (1.1.3)
|
73
|
-
erubis (2.7.0)
|
74
|
-
eventmachine (1.0.0)
|
75
|
-
factory_girl (4.0.0)
|
76
|
-
activesupport (>= 3.0.0)
|
77
|
-
factory_girl_rails (4.0.0)
|
78
|
-
factory_girl (~> 4.0.0)
|
79
|
-
railties (>= 3.0.0)
|
80
|
-
faker (1.0.1)
|
81
|
-
i18n (~> 0.4)
|
82
|
-
faye-websocket (0.4.6)
|
83
|
-
eventmachine (>= 0.12.0)
|
84
|
-
ffi (1.2.0)
|
85
|
-
gherkin (2.11.5)
|
86
|
-
json (>= 1.4.6)
|
87
|
-
hike (1.2.1)
|
88
|
-
http_parser.rb (0.5.3)
|
89
|
-
i18n (0.6.1)
|
90
|
-
journey (1.0.4)
|
91
|
-
jquery-rails (2.1.3)
|
92
|
-
railties (>= 3.1.0, < 5.0)
|
93
|
-
thor (~> 0.14)
|
94
|
-
json (1.7.5)
|
95
|
-
launchy (2.1.2)
|
96
|
-
addressable (~> 2.3)
|
97
|
-
libwebsocket (0.1.6.1)
|
98
|
-
websocket
|
99
|
-
mail (2.4.4)
|
100
|
-
i18n (>= 0.4.0)
|
101
|
-
mime-types (~> 1.16)
|
102
|
-
treetop (~> 1.4.8)
|
103
|
-
mime-types (1.19)
|
104
|
-
multi_json (1.3.7)
|
105
|
-
nokogiri (1.5.5)
|
106
|
-
poltergeist (1.0.2)
|
107
|
-
capybara (~> 1.1)
|
108
|
-
childprocess (~> 0.3)
|
109
|
-
faye-websocket (~> 0.4, >= 0.4.4)
|
110
|
-
http_parser.rb (~> 0.5.3)
|
111
|
-
multi_json (~> 1.0)
|
112
|
-
polyglot (0.3.3)
|
113
|
-
rack (1.4.1)
|
114
|
-
rack-cache (1.2)
|
115
|
-
rack (>= 0.4)
|
116
|
-
rack-ssl (1.3.2)
|
117
|
-
rack
|
118
|
-
rack-test (0.6.2)
|
119
|
-
rack (>= 1.0)
|
120
|
-
rails (3.2.9)
|
121
|
-
actionmailer (= 3.2.9)
|
122
|
-
actionpack (= 3.2.9)
|
123
|
-
activerecord (= 3.2.9)
|
124
|
-
activeresource (= 3.2.9)
|
125
|
-
activesupport (= 3.2.9)
|
126
|
-
bundler (~> 1.0)
|
127
|
-
railties (= 3.2.9)
|
128
|
-
railties (3.2.9)
|
129
|
-
actionpack (= 3.2.9)
|
130
|
-
activesupport (= 3.2.9)
|
131
|
-
rack-ssl (~> 1.3.2)
|
132
|
-
rake (>= 0.8.7)
|
133
|
-
rdoc (~> 3.4)
|
134
|
-
thor (>= 0.14.6, < 2.0)
|
135
|
-
rake (10.0.2)
|
136
|
-
rdoc (3.12)
|
137
|
-
json (~> 1.4)
|
138
|
-
rspec (2.11.0)
|
139
|
-
rspec-core (~> 2.11.0)
|
140
|
-
rspec-expectations (~> 2.11.0)
|
141
|
-
rspec-mocks (~> 2.11.0)
|
142
|
-
rspec-core (2.11.1)
|
143
|
-
rspec-expectations (2.11.3)
|
144
|
-
diff-lcs (~> 1.1.3)
|
145
|
-
rspec-mocks (2.11.3)
|
146
|
-
rspec-rails (2.11.4)
|
147
|
-
actionpack (>= 3.0)
|
148
|
-
activesupport (>= 3.0)
|
149
|
-
railties (>= 3.0)
|
150
|
-
rspec (~> 2.11.0)
|
151
|
-
rubyzip (0.9.9)
|
152
|
-
sass (3.2.3)
|
153
|
-
sass-rails (3.2.5)
|
154
|
-
railties (~> 3.2.0)
|
155
|
-
sass (>= 3.1.10)
|
156
|
-
tilt (~> 1.3)
|
157
|
-
selenium-webdriver (2.26.0)
|
158
|
-
childprocess (>= 0.2.5)
|
159
|
-
libwebsocket (~> 0.1.3)
|
160
|
-
multi_json (~> 1.0)
|
161
|
-
rubyzip
|
162
|
-
shoulda-matchers (1.3.0)
|
163
|
-
activesupport (>= 3.0.0)
|
164
|
-
simplecov (0.6.4)
|
165
|
-
multi_json (~> 1.0)
|
166
|
-
simplecov-html (~> 0.5.3)
|
167
|
-
simplecov-html (0.5.3)
|
168
|
-
sprockets (2.2.1)
|
169
|
-
hike (~> 1.2)
|
170
|
-
multi_json (~> 1.0)
|
171
|
-
rack (~> 1.0)
|
172
|
-
tilt (~> 1.1, != 1.3.0)
|
173
|
-
sqlite3 (1.3.6)
|
174
|
-
thor (0.16.0)
|
175
|
-
tilt (1.3.3)
|
176
|
-
timecop (0.4.6)
|
177
|
-
treetop (1.4.12)
|
178
|
-
polyglot
|
179
|
-
polyglot (>= 0.3.1)
|
180
|
-
tzinfo (0.3.35)
|
181
|
-
websocket (1.0.4)
|
182
|
-
xpath (0.1.4)
|
183
|
-
nokogiri (~> 1.3)
|
184
|
-
|
185
|
-
PLATFORMS
|
186
|
-
ruby
|
187
|
-
|
188
|
-
DEPENDENCIES
|
189
|
-
aktion_test_rails!
|
190
|
-
appraisal (~> 0.5.1)
|
191
|
-
jquery-rails
|
192
|
-
rails (= 3.2.9)
|
193
|
-
sass-rails
|
194
|
-
sqlite3
|