shoulda-matchers 2.8.0 → 3.0.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (171) hide show
  1. checksums.yaml +4 -4
  2. data/.hound_config/ruby.yml +7 -0
  3. data/.travis.yml +11 -54
  4. data/Appraisals +45 -100
  5. data/CONTRIBUTING.md +51 -7
  6. data/Gemfile +7 -19
  7. data/Gemfile.lock +60 -134
  8. data/Guardfile +5 -0
  9. data/NEWS.md +203 -0
  10. data/README.md +95 -50
  11. data/Rakefile +1 -0
  12. data/doc_config/yard/templates/default/layout/html/setup.rb +1 -1
  13. data/gemfiles/4.0.0.gemfile +10 -7
  14. data/gemfiles/4.0.0.gemfile.lock +103 -79
  15. data/gemfiles/4.0.1.gemfile +10 -7
  16. data/gemfiles/4.0.1.gemfile.lock +109 -83
  17. data/gemfiles/4.1.gemfile +10 -7
  18. data/gemfiles/4.1.gemfile.lock +109 -85
  19. data/gemfiles/4.2.gemfile +10 -9
  20. data/gemfiles/4.2.gemfile.lock +86 -78
  21. data/lib/shoulda/matchers.rb +13 -18
  22. data/lib/shoulda/matchers/action_controller.rb +4 -1
  23. data/lib/shoulda/matchers/action_controller/flash_store.rb +95 -0
  24. data/lib/shoulda/matchers/action_controller/{strong_parameters_matcher.rb → permit_matcher.rb} +147 -30
  25. data/lib/shoulda/matchers/action_controller/redirect_to_matcher.rb +1 -1
  26. data/lib/shoulda/matchers/action_controller/render_template_matcher.rb +1 -1
  27. data/lib/shoulda/matchers/action_controller/render_with_layout_matcher.rb +1 -1
  28. data/lib/shoulda/matchers/action_controller/rescue_from_matcher.rb +1 -1
  29. data/lib/shoulda/matchers/action_controller/route_matcher.rb +5 -1
  30. data/lib/shoulda/matchers/action_controller/route_params.rb +15 -6
  31. data/lib/shoulda/matchers/action_controller/session_store.rb +34 -0
  32. data/lib/shoulda/matchers/action_controller/set_flash_matcher.rb +30 -136
  33. data/lib/shoulda/matchers/action_controller/set_session_matcher.rb +28 -109
  34. data/lib/shoulda/matchers/action_controller/set_session_or_flash_matcher.rb +103 -0
  35. data/lib/shoulda/matchers/active_model/allow_mass_assignment_of_matcher.rb +1 -12
  36. data/lib/shoulda/matchers/active_model/allow_value_matcher.rb +79 -10
  37. data/lib/shoulda/matchers/active_model/numericality_matchers/numeric_type_matcher.rb +10 -0
  38. data/lib/shoulda/matchers/active_model/validate_absence_of_matcher.rb +21 -0
  39. data/lib/shoulda/matchers/active_model/validate_acceptance_of_matcher.rb +24 -0
  40. data/lib/shoulda/matchers/active_model/validate_confirmation_of_matcher.rb +22 -5
  41. data/lib/shoulda/matchers/active_model/validate_exclusion_of_matcher.rb +29 -10
  42. data/lib/shoulda/matchers/active_model/validate_inclusion_of_matcher.rb +27 -10
  43. data/lib/shoulda/matchers/active_model/validate_length_of_matcher.rb +27 -12
  44. data/lib/shoulda/matchers/active_model/validate_numericality_of_matcher.rb +56 -20
  45. data/lib/shoulda/matchers/active_model/validate_presence_of_matcher.rb +3 -11
  46. data/lib/shoulda/matchers/active_model/validation_message_finder.rb +65 -0
  47. data/lib/shoulda/matchers/active_record/association_matcher.rb +40 -6
  48. data/lib/shoulda/matchers/active_record/association_matchers/join_table_matcher.rb +21 -7
  49. data/lib/shoulda/matchers/active_record/association_matchers/model_reflection.rb +11 -40
  50. data/lib/shoulda/matchers/active_record/association_matchers/model_reflector.rb +1 -1
  51. data/lib/shoulda/matchers/active_record/define_enum_for_matcher.rb +2 -6
  52. data/lib/shoulda/matchers/active_record/validate_uniqueness_of_matcher.rb +137 -22
  53. data/lib/shoulda/matchers/configuration.rb +20 -0
  54. data/lib/shoulda/matchers/doublespeak.rb +11 -1
  55. data/lib/shoulda/matchers/doublespeak/double.rb +29 -11
  56. data/lib/shoulda/matchers/doublespeak/double_collection.rb +4 -3
  57. data/lib/shoulda/matchers/doublespeak/method_call.rb +35 -0
  58. data/lib/shoulda/matchers/doublespeak/object_double.rb +7 -2
  59. data/lib/shoulda/matchers/doublespeak/proxy_implementation.rb +4 -3
  60. data/lib/shoulda/matchers/doublespeak/stub_implementation.rb +3 -3
  61. data/lib/shoulda/matchers/doublespeak/world.rb +21 -1
  62. data/lib/shoulda/matchers/integrations.rb +43 -0
  63. data/lib/shoulda/matchers/integrations/configuration.rb +68 -0
  64. data/lib/shoulda/matchers/integrations/configuration_error.rb +9 -0
  65. data/lib/shoulda/matchers/integrations/inclusion.rb +20 -0
  66. data/lib/shoulda/matchers/integrations/libraries.rb +15 -0
  67. data/lib/shoulda/matchers/integrations/libraries/action_controller.rb +31 -0
  68. data/lib/shoulda/matchers/integrations/libraries/active_model.rb +26 -0
  69. data/lib/shoulda/matchers/integrations/libraries/active_record.rb +26 -0
  70. data/lib/shoulda/matchers/integrations/libraries/missing_library.rb +19 -0
  71. data/lib/shoulda/matchers/integrations/libraries/rails.rb +30 -0
  72. data/lib/shoulda/matchers/integrations/rails.rb +12 -0
  73. data/lib/shoulda/matchers/integrations/registry.rb +28 -0
  74. data/lib/shoulda/matchers/integrations/test_frameworks.rb +16 -0
  75. data/lib/shoulda/matchers/integrations/test_frameworks/active_support_test_case.rb +37 -0
  76. data/lib/shoulda/matchers/integrations/test_frameworks/minitest_4.rb +36 -0
  77. data/lib/shoulda/matchers/integrations/test_frameworks/minitest_5.rb +37 -0
  78. data/lib/shoulda/matchers/integrations/test_frameworks/missing_test_framework.rb +40 -0
  79. data/lib/shoulda/matchers/integrations/test_frameworks/rspec.rb +29 -0
  80. data/lib/shoulda/matchers/integrations/test_frameworks/test_unit.rb +36 -0
  81. data/lib/shoulda/matchers/rails_shim.rb +0 -40
  82. data/lib/shoulda/matchers/version.rb +1 -1
  83. data/script/SUPPORTED_VERSIONS +1 -1
  84. data/script/update_gems_in_all_appraisals +14 -0
  85. data/shoulda-matchers.gemspec +2 -2
  86. data/spec/acceptance/active_model_integration_spec.rb +4 -1
  87. data/spec/acceptance/independent_matchers_spec.rb +6 -6
  88. data/spec/acceptance/multiple_libraries_integration_spec.rb +52 -0
  89. data/spec/acceptance/rails_integration_spec.rb +15 -5
  90. data/spec/acceptance_spec_helper.rb +8 -0
  91. data/spec/doublespeak_spec_helper.rb +14 -0
  92. data/spec/support/acceptance/adds_shoulda_matchers_to_project.rb +110 -0
  93. data/spec/support/acceptance/helpers.rb +2 -0
  94. data/spec/support/acceptance/helpers/base_helpers.rb +6 -1
  95. data/spec/support/acceptance/helpers/command_helpers.rb +6 -2
  96. data/spec/support/acceptance/helpers/minitest_helpers.rb +0 -8
  97. data/spec/support/acceptance/helpers/n_unit_helpers.rb +25 -0
  98. data/spec/support/acceptance/helpers/rspec_helpers.rb +2 -0
  99. data/spec/support/acceptance/helpers/step_helpers.rb +13 -19
  100. data/spec/support/acceptance/matchers/have_output.rb +1 -1
  101. data/spec/support/tests/bundle.rb +1 -1
  102. data/spec/support/tests/command_runner.rb +25 -13
  103. data/spec/support/tests/current_bundle.rb +47 -0
  104. data/spec/support/tests/database.rb +28 -0
  105. data/spec/support/tests/database_adapters/postgresql.rb +25 -0
  106. data/spec/support/tests/database_adapters/sqlite3.rb +26 -0
  107. data/spec/support/tests/database_configuration.rb +33 -0
  108. data/spec/support/tests/database_configuration_registry.rb +28 -0
  109. data/spec/support/tests/filesystem.rb +25 -2
  110. data/spec/support/unit/helpers/active_record_versions.rb +12 -0
  111. data/spec/support/unit/helpers/class_builder.rb +6 -2
  112. data/spec/support/unit/helpers/column_type_helpers.rb +26 -0
  113. data/spec/support/unit/helpers/controller_builder.rb +0 -28
  114. data/spec/support/unit/helpers/database_helpers.rb +18 -0
  115. data/spec/support/unit/helpers/model_builder.rb +38 -6
  116. data/spec/support/unit/helpers/rails_versions.rb +2 -2
  117. data/spec/support/unit/matchers/fail_with_message_including_matcher.rb +9 -8
  118. data/spec/support/unit/matchers/fail_with_message_matcher.rb +1 -1
  119. data/spec/support/unit/rails_application.rb +29 -13
  120. data/spec/support/unit/record_validating_confirmation_builder.rb +1 -2
  121. data/spec/support/unit/shared_examples/set_session_or_flash.rb +355 -0
  122. data/spec/unit/shoulda/matchers/action_controller/permit_matcher_spec.rb +433 -0
  123. data/spec/unit/shoulda/matchers/action_controller/render_with_layout_matcher_spec.rb +1 -5
  124. data/spec/unit/shoulda/matchers/action_controller/route_matcher_spec.rb +37 -0
  125. data/spec/unit/shoulda/matchers/action_controller/set_flash_matcher_spec.rb +23 -147
  126. data/spec/unit/shoulda/matchers/action_controller/set_session_matcher_spec.rb +8 -285
  127. data/spec/unit/shoulda/matchers/action_controller/set_session_or_flash_matcher_spec.rb +562 -0
  128. data/spec/unit/shoulda/matchers/active_model/allow_value_matcher_spec.rb +81 -14
  129. data/spec/unit/shoulda/matchers/active_model/disallow_value_matcher_spec.rb +16 -8
  130. data/spec/unit/shoulda/matchers/active_model/numericality_matchers/comparison_matcher_spec.rb +101 -9
  131. data/spec/unit/shoulda/matchers/active_model/numericality_matchers/even_number_matcher_spec.rb +39 -1
  132. data/spec/unit/shoulda/matchers/active_model/numericality_matchers/odd_number_matcher_spec.rb +39 -1
  133. data/spec/unit/shoulda/matchers/active_model/numericality_matchers/only_integer_matcher_spec.rb +39 -0
  134. data/spec/unit/shoulda/matchers/active_model/validate_exclusion_of_matcher_spec.rb +0 -17
  135. data/spec/unit/shoulda/matchers/active_model/validate_inclusion_of_matcher_spec.rb +0 -17
  136. data/spec/unit/shoulda/matchers/active_model/validate_length_of_matcher_spec.rb +0 -17
  137. data/spec/unit/shoulda/matchers/active_model/validate_numericality_of_matcher_spec.rb +838 -271
  138. data/spec/unit/shoulda/matchers/active_model/validate_presence_of_matcher_spec.rb +0 -19
  139. data/spec/unit/shoulda/matchers/active_record/association_matcher_spec.rb +93 -0
  140. data/spec/unit/shoulda/matchers/active_record/association_matchers/model_reflection_spec.rb +3 -3
  141. data/spec/unit/shoulda/matchers/active_record/define_enum_for_matcher_spec.rb +25 -0
  142. data/spec/unit/shoulda/matchers/active_record/validate_uniqueness_of_matcher_spec.rb +905 -0
  143. data/spec/unit/shoulda/matchers/doublespeak/double_collection_spec.rb +17 -11
  144. data/spec/unit/shoulda/matchers/doublespeak/double_implementation_registry_spec.rb +1 -1
  145. data/spec/unit/shoulda/matchers/doublespeak/double_spec.rb +144 -43
  146. data/spec/unit/shoulda/matchers/doublespeak/object_double_spec.rb +1 -1
  147. data/spec/unit/shoulda/matchers/doublespeak/proxy_implementation_spec.rb +36 -11
  148. data/spec/unit/shoulda/matchers/doublespeak/stub_implementation_spec.rb +29 -16
  149. data/spec/unit/shoulda/matchers/doublespeak/world_spec.rb +8 -5
  150. data/spec/unit/shoulda/matchers/doublespeak_spec.rb +1 -1
  151. data/spec/unit_spec_helper.rb +15 -14
  152. data/spec/warnings_spy.rb +1 -1
  153. metadata +68 -29
  154. data/docs.watchr +0 -5
  155. data/gemfiles/3.0.gemfile +0 -26
  156. data/gemfiles/3.0.gemfile.lock +0 -173
  157. data/gemfiles/3.1.gemfile +0 -32
  158. data/gemfiles/3.1.gemfile.lock +0 -212
  159. data/gemfiles/3.1_1.9.2.gemfile +0 -32
  160. data/gemfiles/3.1_1.9.2.gemfile.lock +0 -212
  161. data/gemfiles/3.2.gemfile +0 -33
  162. data/gemfiles/3.2.gemfile.lock +0 -212
  163. data/gemfiles/3.2_1.9.2.gemfile +0 -31
  164. data/gemfiles/3.2_1.9.2.gemfile.lock +0 -207
  165. data/lib/shoulda/matchers/assertion_error.rb +0 -27
  166. data/lib/shoulda/matchers/doublespeak/structs.rb +0 -10
  167. data/lib/shoulda/matchers/integrations/nunit_test_case_detection.rb +0 -39
  168. data/lib/shoulda/matchers/integrations/rspec.rb +0 -19
  169. data/lib/shoulda/matchers/integrations/test_unit.rb +0 -34
  170. data/spec/unit/shoulda/matchers/action_controller/strong_parameters_matcher_spec.rb +0 -331
  171. data/spec/unit/shoulda/matchers/active_model/validate_uniqueness_of_matcher_spec.rb +0 -564
@@ -1,32 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "appraisal", "~> 1.0"
6
- gem "aruba"
7
- gem "bourne", "~> 1.3"
8
- gem "bundler", "~> 1.1"
9
- gem "pry-nav"
10
- gem "rails", "~> 3.1.8"
11
- gem "rake", ">= 0.9.2"
12
- gem "rspec-rails", "2.99.0"
13
- gem "yard"
14
- gem "redcarpet"
15
- gem "pygments.rb"
16
- gem "watchr"
17
- gem "shoulda-context", "~> 1.2.0"
18
- gem "sqlite3", :platform => :ruby
19
- gem "activerecord-jdbc-adapter", :platform => :jruby
20
- gem "activerecord-jdbcsqlite3-adapter", :platform => :jruby
21
- gem "jdbc-sqlite3", :platform => :jruby
22
- gem "jruby-openssl", :platform => :jruby
23
- gem "therubyrhino", :platform => :jruby
24
- gem "strong_parameters"
25
- gem "minitest", "~> 4.0"
26
- gem "minitest-reporters"
27
- gem "bcrypt-ruby", "~> 3.0.0"
28
- gem "jquery-rails"
29
- gem "sass-rails", "~> 3.1.5"
30
- gem "coffee-rails", "~> 3.1.1"
31
- gem "uglifier", ">= 1.0.3"
32
- gem "turn", "0.8.2"
@@ -1,212 +0,0 @@
1
- GEM
2
- remote: https://rubygems.org/
3
- specs:
4
- actionmailer (3.1.11)
5
- actionpack (= 3.1.11)
6
- mail (~> 2.3.3)
7
- actionpack (3.1.11)
8
- activemodel (= 3.1.11)
9
- activesupport (= 3.1.11)
10
- builder (~> 3.0.0)
11
- erubis (~> 2.7.0)
12
- i18n (~> 0.6)
13
- rack (~> 1.3.6)
14
- rack-cache (~> 1.2)
15
- rack-mount (~> 0.8.2)
16
- rack-test (~> 0.6.1)
17
- sprockets (~> 2.0.4)
18
- activemodel (3.1.11)
19
- activesupport (= 3.1.11)
20
- builder (~> 3.0.0)
21
- i18n (~> 0.6)
22
- activerecord (3.1.11)
23
- activemodel (= 3.1.11)
24
- activesupport (= 3.1.11)
25
- arel (~> 2.2.3)
26
- tzinfo (~> 0.3.29)
27
- activeresource (3.1.11)
28
- activemodel (= 3.1.11)
29
- activesupport (= 3.1.11)
30
- activesupport (3.1.11)
31
- multi_json (~> 1.0)
32
- ansi (1.4.3)
33
- appraisal (1.0.0)
34
- bundler
35
- rake
36
- thor (>= 0.14.0)
37
- arel (2.2.3)
38
- aruba (0.6.0)
39
- childprocess (>= 0.3.6)
40
- cucumber (>= 1.1.1)
41
- rspec-expectations (>= 2.7.0)
42
- bcrypt-ruby (3.0.1)
43
- bourne (1.5.0)
44
- mocha (>= 0.13.2, < 0.15)
45
- builder (3.0.4)
46
- childprocess (0.5.3)
47
- ffi (~> 1.0, >= 1.0.11)
48
- coderay (1.1.0)
49
- coffee-rails (3.1.1)
50
- coffee-script (>= 2.2.0)
51
- railties (~> 3.1.0)
52
- coffee-script (2.2.0)
53
- coffee-script-source
54
- execjs
55
- coffee-script-source (1.7.0)
56
- cucumber (1.3.16)
57
- builder (>= 2.1.2)
58
- diff-lcs (>= 1.1.3)
59
- gherkin (~> 2.12)
60
- multi_json (>= 1.7.5, < 2.0)
61
- multi_test (>= 0.1.1)
62
- diff-lcs (1.2.5)
63
- erubis (2.7.0)
64
- execjs (2.0.2)
65
- ffi (1.9.3)
66
- gherkin (2.12.2)
67
- multi_json (~> 1.3)
68
- hashie (3.3.1)
69
- hike (1.2.3)
70
- i18n (0.6.11)
71
- jquery-rails (2.2.1)
72
- railties (>= 3.0, < 5.0)
73
- thor (>= 0.14, < 2.0)
74
- json (1.8.1)
75
- mail (2.3.3)
76
- i18n (>= 0.4.0)
77
- mime-types (~> 1.16)
78
- treetop (~> 1.4.8)
79
- metaclass (0.0.1)
80
- method_source (0.8.2)
81
- mime-types (1.25.1)
82
- minitest (4.7.5)
83
- minitest-reporters (0.14.24)
84
- ansi
85
- builder
86
- minitest (>= 2.12, < 5.0)
87
- powerbar
88
- mocha (0.14.0)
89
- metaclass (~> 0.0.1)
90
- multi_json (1.10.1)
91
- multi_test (0.1.1)
92
- polyglot (0.3.3)
93
- posix-spawn (0.3.8)
94
- powerbar (1.0.11)
95
- ansi (~> 1.4.0)
96
- hashie (>= 1.1.0)
97
- pry (0.10.1)
98
- coderay (~> 1.1.0)
99
- method_source (~> 0.8.1)
100
- slop (~> 3.4)
101
- pry-nav (0.2.4)
102
- pry (>= 0.9.10, < 0.11.0)
103
- pygments.rb (0.6.0)
104
- posix-spawn (~> 0.3.6)
105
- yajl-ruby (~> 1.1.0)
106
- rack (1.3.10)
107
- rack-cache (1.2)
108
- rack (>= 0.4)
109
- rack-mount (0.8.3)
110
- rack (>= 1.0.0)
111
- rack-ssl (1.3.4)
112
- rack
113
- rack-test (0.6.2)
114
- rack (>= 1.0)
115
- rails (3.1.11)
116
- actionmailer (= 3.1.11)
117
- actionpack (= 3.1.11)
118
- activerecord (= 3.1.11)
119
- activeresource (= 3.1.11)
120
- activesupport (= 3.1.11)
121
- bundler (~> 1.0)
122
- railties (= 3.1.11)
123
- railties (3.1.11)
124
- actionpack (= 3.1.11)
125
- activesupport (= 3.1.11)
126
- rack-ssl (~> 1.3.2)
127
- rake (>= 0.8.7)
128
- rdoc (~> 3.4)
129
- thor (~> 0.14.6)
130
- rake (10.3.2)
131
- rdoc (3.12.2)
132
- json (~> 1.4)
133
- redcarpet (3.1.2)
134
- rspec-collection_matchers (1.0.0)
135
- rspec-expectations (>= 2.99.0.beta1)
136
- rspec-core (2.99.1)
137
- rspec-expectations (2.99.2)
138
- diff-lcs (>= 1.1.3, < 2.0)
139
- rspec-mocks (2.99.2)
140
- rspec-rails (2.99.0)
141
- actionpack (>= 3.0)
142
- activemodel (>= 3.0)
143
- activesupport (>= 3.0)
144
- railties (>= 3.0)
145
- rspec-collection_matchers
146
- rspec-core (~> 2.99.0)
147
- rspec-expectations (~> 2.99.0)
148
- rspec-mocks (~> 2.99.0)
149
- sass (3.2.12)
150
- sass-rails (3.1.6)
151
- actionpack (~> 3.1.0)
152
- railties (~> 3.1.0)
153
- sass (>= 3.1.10)
154
- tilt (~> 1.3.2)
155
- shoulda-context (1.2.0)
156
- slop (3.6.0)
157
- sprockets (2.0.4)
158
- hike (~> 1.2)
159
- rack (~> 1.0)
160
- tilt (~> 1.1, != 1.3.0)
161
- sqlite3 (1.3.8)
162
- strong_parameters (0.2.0)
163
- actionpack (~> 3.0)
164
- activemodel (~> 3.0)
165
- railties (~> 3.0)
166
- thor (0.14.6)
167
- tilt (1.3.7)
168
- treetop (1.4.15)
169
- polyglot
170
- polyglot (>= 0.3.1)
171
- turn (0.8.2)
172
- ansi (>= 1.2.2)
173
- tzinfo (0.3.38)
174
- uglifier (2.5.0)
175
- execjs (>= 0.3.0)
176
- json (>= 1.8.0)
177
- watchr (0.7)
178
- yajl-ruby (1.1.0)
179
- yard (0.8.7.3)
180
-
181
- PLATFORMS
182
- ruby
183
-
184
- DEPENDENCIES
185
- activerecord-jdbc-adapter
186
- activerecord-jdbcsqlite3-adapter
187
- appraisal (~> 1.0)
188
- aruba
189
- bcrypt-ruby (~> 3.0.0)
190
- bourne (~> 1.3)
191
- bundler (~> 1.1)
192
- coffee-rails (~> 3.1.1)
193
- jdbc-sqlite3
194
- jquery-rails
195
- jruby-openssl
196
- minitest (~> 4.0)
197
- minitest-reporters
198
- pry-nav
199
- pygments.rb
200
- rails (~> 3.1.8)
201
- rake (>= 0.9.2)
202
- redcarpet
203
- rspec-rails (= 2.99.0)
204
- sass-rails (~> 3.1.5)
205
- shoulda-context (~> 1.2.0)
206
- sqlite3
207
- strong_parameters
208
- therubyrhino
209
- turn (= 0.8.2)
210
- uglifier (>= 1.0.3)
211
- watchr
212
- yard
@@ -1,33 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "appraisal", "~> 1.0"
6
- gem "aruba"
7
- gem "bourne", "~> 1.3"
8
- gem "bundler", "~> 1.1"
9
- gem "pry-nav"
10
- gem "rails", "~> 3.2.13"
11
- gem "rake", ">= 0.9.2"
12
- gem "rspec-rails", "2.99.0"
13
- gem "yard"
14
- gem "redcarpet"
15
- gem "pygments.rb"
16
- gem "watchr"
17
- gem "shoulda-context", "~> 1.2.0"
18
- gem "sqlite3", :platform => :ruby
19
- gem "activerecord-jdbc-adapter", :platform => :jruby
20
- gem "activerecord-jdbcsqlite3-adapter", :platform => :jruby
21
- gem "jdbc-sqlite3", :platform => :jruby
22
- gem "jruby-openssl", :platform => :jruby
23
- gem "therubyrhino", :platform => :jruby
24
- gem "strong_parameters"
25
- gem "minitest", "~> 4.0"
26
- gem "minitest-reporters"
27
- gem "bcrypt-ruby", "~> 3.0.0"
28
- gem "jquery-rails"
29
- gem "sass-rails", "~> 3.2.3"
30
- gem "coffee-rails", "~> 3.2.1"
31
- gem "uglifier", ">= 1.0.3"
32
- gem "spring"
33
- gem "spring-commands-rspec"
@@ -1,212 +0,0 @@
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
- ansi (1.4.3)
32
- appraisal (1.0.2)
33
- bundler
34
- rake
35
- thor (>= 0.14.0)
36
- arel (3.0.2)
37
- aruba (0.6.0)
38
- childprocess (>= 0.3.6)
39
- cucumber (>= 1.1.1)
40
- rspec-expectations (>= 2.7.0)
41
- bcrypt-ruby (3.0.1)
42
- bourne (1.4.0)
43
- mocha (~> 0.13.2)
44
- builder (3.0.4)
45
- childprocess (0.5.3)
46
- ffi (~> 1.0, >= 1.0.11)
47
- coderay (1.1.0)
48
- coffee-rails (3.2.2)
49
- coffee-script (>= 2.2.0)
50
- railties (~> 3.2.0)
51
- coffee-script (2.2.0)
52
- coffee-script-source
53
- execjs
54
- coffee-script-source (1.7.0)
55
- cucumber (1.3.16)
56
- builder (>= 2.1.2)
57
- diff-lcs (>= 1.1.3)
58
- gherkin (~> 2.12)
59
- multi_json (>= 1.7.5, < 2.0)
60
- multi_test (>= 0.1.1)
61
- diff-lcs (1.2.5)
62
- erubis (2.7.0)
63
- execjs (2.0.2)
64
- ffi (1.9.3)
65
- gherkin (2.12.2)
66
- multi_json (~> 1.3)
67
- hashie (3.3.1)
68
- hike (1.2.3)
69
- i18n (0.6.1)
70
- journey (1.0.4)
71
- jquery-rails (2.2.1)
72
- railties (>= 3.0, < 5.0)
73
- thor (>= 0.14, < 2.0)
74
- json (1.8.1)
75
- mail (2.5.3)
76
- i18n (>= 0.4.0)
77
- mime-types (~> 1.16)
78
- treetop (~> 1.4.8)
79
- metaclass (0.0.1)
80
- method_source (0.8.2)
81
- mime-types (1.21)
82
- minitest (4.7.5)
83
- minitest-reporters (0.14.24)
84
- ansi
85
- builder
86
- minitest (>= 2.12, < 5.0)
87
- powerbar
88
- mocha (0.13.3)
89
- metaclass (~> 0.0.1)
90
- multi_json (1.10.1)
91
- multi_test (0.1.1)
92
- polyglot (0.3.3)
93
- posix-spawn (0.3.8)
94
- powerbar (1.0.11)
95
- ansi (~> 1.4.0)
96
- hashie (>= 1.1.0)
97
- pry (0.10.1)
98
- coderay (~> 1.1.0)
99
- method_source (~> 0.8.1)
100
- slop (~> 3.4)
101
- pry-nav (0.2.4)
102
- pry (>= 0.9.10, < 0.11.0)
103
- pygments.rb (0.6.0)
104
- posix-spawn (~> 0.3.6)
105
- yajl-ruby (~> 1.1.0)
106
- rack (1.4.5)
107
- rack-cache (1.2)
108
- rack (>= 0.4)
109
- rack-ssl (1.3.4)
110
- rack
111
- rack-test (0.6.2)
112
- rack (>= 1.0)
113
- rails (3.2.13)
114
- actionmailer (= 3.2.13)
115
- actionpack (= 3.2.13)
116
- activerecord (= 3.2.13)
117
- activeresource (= 3.2.13)
118
- activesupport (= 3.2.13)
119
- bundler (~> 1.0)
120
- railties (= 3.2.13)
121
- railties (3.2.13)
122
- actionpack (= 3.2.13)
123
- activesupport (= 3.2.13)
124
- rack-ssl (~> 1.3.2)
125
- rake (>= 0.8.7)
126
- rdoc (~> 3.4)
127
- thor (>= 0.14.6, < 2.0)
128
- rake (10.3.2)
129
- rdoc (3.12.2)
130
- json (~> 1.4)
131
- redcarpet (3.1.2)
132
- rspec-collection_matchers (1.0.0)
133
- rspec-expectations (>= 2.99.0.beta1)
134
- rspec-core (2.99.1)
135
- rspec-expectations (2.99.2)
136
- diff-lcs (>= 1.1.3, < 2.0)
137
- rspec-mocks (2.99.2)
138
- rspec-rails (2.99.0)
139
- actionpack (>= 3.0)
140
- activemodel (>= 3.0)
141
- activesupport (>= 3.0)
142
- railties (>= 3.0)
143
- rspec-collection_matchers
144
- rspec-core (~> 2.99.0)
145
- rspec-expectations (~> 2.99.0)
146
- rspec-mocks (~> 2.99.0)
147
- sass (3.2.7)
148
- sass-rails (3.2.6)
149
- railties (~> 3.2.0)
150
- sass (>= 3.1.10)
151
- tilt (~> 1.3)
152
- shoulda-context (1.2.0)
153
- slop (3.6.0)
154
- spring (1.1.3)
155
- spring-commands-rspec (1.0.2)
156
- spring (>= 0.9.1)
157
- sprockets (2.2.2)
158
- hike (~> 1.2)
159
- multi_json (~> 1.0)
160
- rack (~> 1.0)
161
- tilt (~> 1.1, != 1.3.0)
162
- sqlite3 (1.3.7)
163
- strong_parameters (0.2.0)
164
- actionpack (~> 3.0)
165
- activemodel (~> 3.0)
166
- railties (~> 3.0)
167
- thor (0.19.1)
168
- tilt (1.4.1)
169
- treetop (1.4.12)
170
- polyglot
171
- polyglot (>= 0.3.1)
172
- tzinfo (0.3.37)
173
- uglifier (2.2.1)
174
- execjs (>= 0.3.0)
175
- multi_json (~> 1.0, >= 1.0.2)
176
- watchr (0.7)
177
- yajl-ruby (1.1.0)
178
- yard (0.8.7.3)
179
-
180
- PLATFORMS
181
- ruby
182
-
183
- DEPENDENCIES
184
- activerecord-jdbc-adapter
185
- activerecord-jdbcsqlite3-adapter
186
- appraisal (~> 1.0)
187
- aruba
188
- bcrypt-ruby (~> 3.0.0)
189
- bourne (~> 1.3)
190
- bundler (~> 1.1)
191
- coffee-rails (~> 3.2.1)
192
- jdbc-sqlite3
193
- jquery-rails
194
- jruby-openssl
195
- minitest (~> 4.0)
196
- minitest-reporters
197
- pry-nav
198
- pygments.rb
199
- rails (~> 3.2.13)
200
- rake (>= 0.9.2)
201
- redcarpet
202
- rspec-rails (= 2.99.0)
203
- sass-rails (~> 3.2.3)
204
- shoulda-context (~> 1.2.0)
205
- spring
206
- spring-commands-rspec
207
- sqlite3
208
- strong_parameters
209
- therubyrhino
210
- uglifier (>= 1.0.3)
211
- watchr
212
- yard