shoulda-matchers 3.1.3 → 4.0.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (123) hide show
  1. checksums.yaml +4 -4
  2. data/.hound/ruby.yml +336 -316
  3. data/.python-version +1 -0
  4. data/.rubocop.yml +3 -1
  5. data/.travis.yml +7 -6
  6. data/Appraisals +76 -44
  7. data/CONTRIBUTING.md +137 -66
  8. data/Gemfile +5 -5
  9. data/Gemfile.lock +30 -35
  10. data/MAINTAINING.md +250 -0
  11. data/MIT-LICENSE +1 -1
  12. data/NEWS.md +176 -4
  13. data/README.md +138 -200
  14. data/Rakefile +7 -0
  15. data/bin/setup +190 -0
  16. data/doc_config/yard/templates/default/fulldoc/html/css/global.css +4 -0
  17. data/doc_config/yard/templates/default/fulldoc/html/full_list.erb +0 -6
  18. data/doc_config/yard/templates/default/fulldoc/html/js/app.js +0 -17
  19. data/doc_config/yard/templates/default/fulldoc/html/setup.rb +27 -0
  20. data/gemfiles/4.2.gemfile +21 -20
  21. data/gemfiles/4.2.gemfile.lock +143 -140
  22. data/gemfiles/5.0.gemfile +37 -0
  23. data/gemfiles/5.0.gemfile.lock +238 -0
  24. data/gemfiles/5.1.gemfile +38 -0
  25. data/gemfiles/5.1.gemfile.lock +254 -0
  26. data/gemfiles/5.2.gemfile +40 -0
  27. data/gemfiles/5.2.gemfile.lock +273 -0
  28. data/lib/shoulda/matchers/action_controller/callback_matcher.rb +18 -6
  29. data/lib/shoulda/matchers/action_controller/permit_matcher.rb +6 -1
  30. data/lib/shoulda/matchers/action_controller/redirect_to_matcher.rb +1 -1
  31. data/lib/shoulda/matchers/action_controller/route_matcher.rb +87 -27
  32. data/lib/shoulda/matchers/active_model/allow_value_matcher.rb +1 -0
  33. data/lib/shoulda/matchers/active_model/allow_value_matcher/attribute_setter.rb +0 -4
  34. data/lib/shoulda/matchers/active_model/validate_absence_of_matcher.rb +5 -0
  35. data/lib/shoulda/matchers/active_model/validate_acceptance_of_matcher.rb +5 -0
  36. data/lib/shoulda/matchers/active_model/validate_confirmation_of_matcher.rb +26 -11
  37. data/lib/shoulda/matchers/active_model/validate_exclusion_of_matcher.rb +39 -4
  38. data/lib/shoulda/matchers/active_model/validate_inclusion_of_matcher.rb +116 -47
  39. data/lib/shoulda/matchers/active_model/validate_length_of_matcher.rb +127 -38
  40. data/lib/shoulda/matchers/active_model/validate_numericality_of_matcher.rb +55 -37
  41. data/lib/shoulda/matchers/active_model/validate_presence_of_matcher.rb +30 -1
  42. data/lib/shoulda/matchers/active_model/validation_matcher.rb +11 -4
  43. data/lib/shoulda/matchers/active_model/validation_matcher/build_description.rb +11 -6
  44. data/lib/shoulda/matchers/active_record.rb +3 -0
  45. data/lib/shoulda/matchers/active_record/association_matcher.rb +172 -22
  46. data/lib/shoulda/matchers/active_record/association_matchers/join_table_matcher.rb +1 -1
  47. data/lib/shoulda/matchers/active_record/association_matchers/option_verifier.rb +11 -6
  48. data/lib/shoulda/matchers/active_record/association_matchers/optional_matcher.rb +46 -0
  49. data/lib/shoulda/matchers/active_record/association_matchers/required_matcher.rb +51 -0
  50. data/lib/shoulda/matchers/active_record/define_enum_for_matcher.rb +268 -38
  51. data/lib/shoulda/matchers/active_record/have_db_index_matcher.rb +1 -1
  52. data/lib/shoulda/matchers/active_record/have_secure_token_matcher.rb +111 -0
  53. data/lib/shoulda/matchers/active_record/validate_uniqueness_of_matcher.rb +207 -79
  54. data/lib/shoulda/matchers/doublespeak/object_double.rb +5 -1
  55. data/lib/shoulda/matchers/independent/delegate_method_matcher.rb +100 -21
  56. data/lib/shoulda/matchers/rails_shim.rb +133 -52
  57. data/lib/shoulda/matchers/routing.rb +2 -2
  58. data/lib/shoulda/matchers/util.rb +23 -1
  59. data/lib/shoulda/matchers/util/word_wrap.rb +6 -2
  60. data/lib/shoulda/matchers/version.rb +1 -1
  61. data/script/install_gems_in_all_appraisals +3 -1
  62. data/script/run_all_tests +3 -1
  63. data/script/supported_ruby_versions +7 -0
  64. data/script/update_gem_in_all_appraisals +3 -1
  65. data/script/update_gems_in_all_appraisals +3 -1
  66. data/shoulda-matchers.gemspec +3 -3
  67. data/spec/acceptance/independent_matchers_spec.rb +2 -2
  68. data/spec/acceptance/multiple_libraries_integration_spec.rb +1 -1
  69. data/spec/acceptance/rails_integration_spec.rb +2 -2
  70. data/spec/spec_helper.rb +2 -3
  71. data/spec/support/acceptance/helpers.rb +2 -0
  72. data/spec/support/acceptance/helpers/command_helpers.rb +17 -4
  73. data/spec/support/acceptance/helpers/rails_migration_helpers.rb +21 -0
  74. data/spec/support/acceptance/helpers/step_helpers.rb +1 -1
  75. data/spec/support/tests/current_bundle.rb +3 -9
  76. data/spec/support/tests/filesystem.rb +2 -2
  77. data/spec/support/unit/attribute.rb +0 -2
  78. data/spec/support/unit/capture.rb +9 -3
  79. data/spec/support/unit/helpers/action_pack_versions.rb +22 -0
  80. data/spec/support/unit/helpers/active_model_versions.rb +4 -0
  81. data/spec/support/unit/helpers/active_record_versions.rb +22 -2
  82. data/spec/support/unit/helpers/active_resource_builder.rb +2 -2
  83. data/spec/support/unit/helpers/controller_builder.rb +1 -1
  84. data/spec/support/unit/helpers/message_helpers.rb +19 -0
  85. data/spec/support/unit/helpers/rails_versions.rb +14 -0
  86. data/spec/support/unit/matchers/fail_with_message_matcher.rb +7 -5
  87. data/spec/support/unit/matchers/print_warning_including.rb +21 -13
  88. data/spec/support/unit/model_creation_strategies/active_record.rb +1 -1
  89. data/spec/support/unit/model_creators/active_record.rb +0 -1
  90. data/spec/support/unit/model_creators/basic.rb +7 -2
  91. data/spec/support/unit/rails_application.rb +25 -0
  92. data/spec/support/unit/record_validating_confirmation_builder.rb +5 -2
  93. data/spec/support/unit/validation_matcher_scenario.rb +0 -2
  94. data/spec/unit/shoulda/matchers/action_controller/callback_matcher_spec.rb +18 -18
  95. data/spec/unit/shoulda/matchers/action_controller/permit_matcher_spec.rb +33 -5
  96. data/spec/unit/shoulda/matchers/action_controller/render_template_matcher_spec.rb +1 -1
  97. data/spec/unit/shoulda/matchers/active_model/allow_mass_assignment_of_matcher_spec.rb +80 -78
  98. data/spec/unit/shoulda/matchers/active_model/allow_value_matcher_spec.rb +7 -9
  99. data/spec/unit/shoulda/matchers/active_model/validate_absence_of_matcher_spec.rb +28 -4
  100. data/spec/unit/shoulda/matchers/active_model/validate_acceptance_of_matcher_spec.rb +19 -1
  101. data/spec/unit/shoulda/matchers/active_model/validate_confirmation_of_matcher_spec.rb +27 -4
  102. data/spec/unit/shoulda/matchers/active_model/validate_exclusion_of_matcher_spec.rb +62 -5
  103. data/spec/unit/shoulda/matchers/active_model/validate_inclusion_of_matcher_spec.rb +52 -18
  104. data/spec/unit/shoulda/matchers/active_model/validate_length_of_matcher_spec.rb +51 -4
  105. data/spec/unit/shoulda/matchers/active_model/validate_numericality_of_matcher_spec.rb +99 -71
  106. data/spec/unit/shoulda/matchers/active_model/validate_presence_of_matcher_spec.rb +41 -15
  107. data/spec/unit/shoulda/matchers/active_record/association_matcher_spec.rb +445 -15
  108. data/spec/unit/shoulda/matchers/active_record/define_enum_for_matcher_spec.rb +615 -93
  109. data/spec/unit/shoulda/matchers/active_record/have_secure_token_matcher_spec.rb +169 -0
  110. data/spec/unit/shoulda/matchers/active_record/validate_uniqueness_of_matcher_spec.rb +167 -97
  111. data/spec/unit/shoulda/matchers/doublespeak/world_spec.rb +2 -4
  112. data/spec/unit/shoulda/matchers/independent/delegate_method_matcher_spec.rb +152 -19
  113. data/spec/unit/shoulda/matchers/routing/route_matcher_spec.rb +258 -94
  114. data/spec/unit_spec_helper.rb +9 -1
  115. data/zeus.json +1 -1
  116. metadata +31 -16
  117. data/gemfiles/4.0.0.gemfile +0 -38
  118. data/gemfiles/4.0.0.gemfile.lock +0 -223
  119. data/gemfiles/4.0.1.gemfile +0 -38
  120. data/gemfiles/4.0.1.gemfile.lock +0 -225
  121. data/gemfiles/4.1.gemfile +0 -38
  122. data/gemfiles/4.1.gemfile.lock +0 -220
  123. data/script/SUPPORTED_VERSIONS +0 -1
@@ -1,38 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "appraisal", "~> 2.0"
6
- gem "bundler", "~> 1.1"
7
- gem "pry", :github => "pry/pry"
8
- gem "pry-byebug"
9
- gem "rake", ">= 10.5.0", "< 11"
10
- gem "rspec", "~> 3.2"
11
- gem "zeus"
12
- gem "yard"
13
- gem "redcarpet"
14
- gem "pygments.rb"
15
- gem "fssm"
16
- gem "rspec-rails", ">= 3.2.0", "< 4"
17
- gem "shoulda-context", "~> 1.2.0"
18
- gem "sqlite3", :platform => :ruby
19
- gem "pg", :platform => :ruby
20
- gem "activerecord-jdbc-adapter", :platform => :jruby
21
- gem "activerecord-jdbcsqlite3-adapter", :platform => :jruby
22
- gem "jdbc-sqlite3", :platform => :jruby
23
- gem "jruby-openssl", :platform => :jruby
24
- gem "therubyrhino", :platform => :jruby
25
- gem "spring"
26
- gem "spring-commands-rspec"
27
- gem "uglifier", ">= 1.3.0"
28
- gem "coffee-rails", "~> 4.0.0"
29
- gem "jquery-rails"
30
- gem "turbolinks"
31
- gem "sdoc"
32
- gem "activeresource", "4.0.0"
33
- gem "protected_attributes"
34
- gem "minitest-reporters"
35
- gem "rails", "4.0.1"
36
- gem "jbuilder", "~> 1.2"
37
- gem "sass-rails", "~> 4.0.0"
38
- gem "bcrypt-ruby", "~> 3.1.2"
@@ -1,225 +0,0 @@
1
- GIT
2
- remote: git://github.com/pry/pry.git
3
- revision: 3c138cbf94a44f7a6696afdab1ab5149d7541974
4
- specs:
5
- pry (0.10.1)
6
- coderay (~> 1.1.0)
7
- method_source (~> 0.8.1)
8
- slop (~> 3.4)
9
-
10
- GEM
11
- remote: https://rubygems.org/
12
- specs:
13
- actionmailer (4.0.1)
14
- actionpack (= 4.0.1)
15
- mail (~> 2.5.4)
16
- actionpack (4.0.1)
17
- activesupport (= 4.0.1)
18
- builder (~> 3.1.0)
19
- erubis (~> 2.7.0)
20
- rack (~> 1.5.2)
21
- rack-test (~> 0.6.2)
22
- activemodel (4.0.1)
23
- activesupport (= 4.0.1)
24
- builder (~> 3.1.0)
25
- activerecord (4.0.1)
26
- activemodel (= 4.0.1)
27
- activerecord-deprecated_finders (~> 1.0.2)
28
- activesupport (= 4.0.1)
29
- arel (~> 4.0.0)
30
- activerecord-deprecated_finders (1.0.4)
31
- activeresource (4.0.0)
32
- activemodel (~> 4.0)
33
- activesupport (~> 4.0)
34
- rails-observers (~> 0.1.1)
35
- activesupport (4.0.1)
36
- i18n (~> 0.6, >= 0.6.4)
37
- minitest (~> 4.2)
38
- multi_json (~> 1.3)
39
- thread_safe (~> 0.1)
40
- tzinfo (~> 0.3.37)
41
- ansi (1.5.0)
42
- appraisal (2.1.0)
43
- bundler
44
- rake
45
- thor (>= 0.14.0)
46
- arel (4.0.2)
47
- bcrypt (3.1.10)
48
- bcrypt-ruby (3.1.5)
49
- bcrypt (>= 3.1.3)
50
- builder (3.1.4)
51
- byebug (5.0.0)
52
- columnize (= 0.9.0)
53
- coderay (1.1.0)
54
- coffee-rails (4.0.1)
55
- coffee-script (>= 2.2.0)
56
- railties (>= 4.0.0, < 5.0)
57
- coffee-script (2.4.1)
58
- coffee-script-source
59
- execjs
60
- coffee-script-source (1.9.1.1)
61
- columnize (0.9.0)
62
- diff-lcs (1.2.5)
63
- erubis (2.7.0)
64
- execjs (2.6.0)
65
- fssm (0.2.10)
66
- hashie (3.4.2)
67
- hike (1.2.3)
68
- i18n (0.7.0)
69
- jbuilder (1.5.3)
70
- activesupport (>= 3.0.0)
71
- multi_json (>= 1.2.0)
72
- jquery-rails (3.1.4)
73
- railties (>= 3.0, < 5.0)
74
- thor (>= 0.14, < 2.0)
75
- json (1.8.3)
76
- mail (2.5.4)
77
- mime-types (~> 1.16)
78
- treetop (~> 1.4.8)
79
- method_source (0.8.2)
80
- mime-types (1.25.1)
81
- minitest (4.7.5)
82
- minitest-reporters (0.14.24)
83
- ansi
84
- builder
85
- minitest (>= 2.12, < 5.0)
86
- powerbar
87
- multi_json (1.11.2)
88
- pg (0.18.3)
89
- polyglot (0.3.5)
90
- posix-spawn (0.3.11)
91
- powerbar (1.0.12)
92
- ansi (~> 1.5.0)
93
- hashie (>= 1.1.0)
94
- protected_attributes (1.1.3)
95
- activemodel (>= 4.0.1, < 5.0)
96
- pry-byebug (3.2.0)
97
- byebug (~> 5.0)
98
- pry (~> 0.10)
99
- pygments.rb (0.6.3)
100
- posix-spawn (~> 0.3.6)
101
- yajl-ruby (~> 1.2.0)
102
- rack (1.5.5)
103
- rack-test (0.6.3)
104
- rack (>= 1.0)
105
- rails (4.0.1)
106
- actionmailer (= 4.0.1)
107
- actionpack (= 4.0.1)
108
- activerecord (= 4.0.1)
109
- activesupport (= 4.0.1)
110
- bundler (>= 1.3.0, < 2.0)
111
- railties (= 4.0.1)
112
- sprockets-rails (~> 2.0.0)
113
- rails-observers (0.1.2)
114
- activemodel (~> 4.0)
115
- railties (4.0.1)
116
- actionpack (= 4.0.1)
117
- activesupport (= 4.0.1)
118
- rake (>= 0.8.7)
119
- thor (>= 0.18.1, < 2.0)
120
- rake (10.5.0)
121
- rdoc (4.3.0)
122
- redcarpet (3.3.2)
123
- rspec (3.4.0)
124
- rspec-core (~> 3.4.0)
125
- rspec-expectations (~> 3.4.0)
126
- rspec-mocks (~> 3.4.0)
127
- rspec-core (3.4.1)
128
- rspec-support (~> 3.4.0)
129
- rspec-expectations (3.4.0)
130
- diff-lcs (>= 1.2.0, < 2.0)
131
- rspec-support (~> 3.4.0)
132
- rspec-mocks (3.4.0)
133
- diff-lcs (>= 1.2.0, < 2.0)
134
- rspec-support (~> 3.4.0)
135
- rspec-rails (3.4.0)
136
- actionpack (>= 3.0, < 4.3)
137
- activesupport (>= 3.0, < 4.3)
138
- railties (>= 3.0, < 4.3)
139
- rspec-core (~> 3.4.0)
140
- rspec-expectations (~> 3.4.0)
141
- rspec-mocks (~> 3.4.0)
142
- rspec-support (~> 3.4.0)
143
- rspec-support (3.4.1)
144
- sass (3.2.19)
145
- sass-rails (4.0.5)
146
- railties (>= 4.0.0, < 5.0)
147
- sass (~> 3.2.2)
148
- sprockets (~> 2.8, < 3.0)
149
- sprockets-rails (~> 2.0)
150
- sdoc (0.4.1)
151
- json (~> 1.7, >= 1.7.7)
152
- rdoc (~> 4.0)
153
- shoulda-context (1.2.1)
154
- slop (3.6.0)
155
- spring (1.4.0)
156
- spring-commands-rspec (1.0.4)
157
- spring (>= 0.9.1)
158
- sprockets (2.12.4)
159
- hike (~> 1.2)
160
- multi_json (~> 1.0)
161
- rack (~> 1.0)
162
- tilt (~> 1.1, != 1.3.0)
163
- sprockets-rails (2.0.1)
164
- actionpack (>= 3.0)
165
- activesupport (>= 3.0)
166
- sprockets (~> 2.8)
167
- sqlite3 (1.3.10)
168
- thor (0.19.1)
169
- thread_safe (0.3.5)
170
- tilt (1.4.1)
171
- treetop (1.4.15)
172
- polyglot
173
- polyglot (>= 0.3.1)
174
- turbolinks (2.5.3)
175
- coffee-rails
176
- tzinfo (0.3.46)
177
- uglifier (2.7.2)
178
- execjs (>= 0.3.0)
179
- json (>= 1.8.0)
180
- yajl-ruby (1.2.1)
181
- yard (0.8.7.6)
182
- zeus (0.15.4)
183
- method_source (>= 0.6.7)
184
-
185
- PLATFORMS
186
- ruby
187
-
188
- DEPENDENCIES
189
- activerecord-jdbc-adapter
190
- activerecord-jdbcsqlite3-adapter
191
- activeresource (= 4.0.0)
192
- appraisal (~> 2.0)
193
- bcrypt-ruby (~> 3.1.2)
194
- bundler (~> 1.1)
195
- coffee-rails (~> 4.0.0)
196
- fssm
197
- jbuilder (~> 1.2)
198
- jdbc-sqlite3
199
- jquery-rails
200
- jruby-openssl
201
- minitest-reporters
202
- pg
203
- protected_attributes
204
- pry!
205
- pry-byebug
206
- pygments.rb
207
- rails (= 4.0.1)
208
- rake (>= 10.5.0, < 11)
209
- redcarpet
210
- rspec (~> 3.2)
211
- rspec-rails (>= 3.2.0, < 4)
212
- sass-rails (~> 4.0.0)
213
- sdoc
214
- shoulda-context (~> 1.2.0)
215
- spring
216
- spring-commands-rspec
217
- sqlite3
218
- therubyrhino
219
- turbolinks
220
- uglifier (>= 1.3.0)
221
- yard
222
- zeus
223
-
224
- BUNDLED WITH
225
- 1.11.2
@@ -1,38 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "appraisal", "~> 2.0"
6
- gem "bundler", "~> 1.1"
7
- gem "pry", :github => "pry/pry"
8
- gem "pry-byebug"
9
- gem "rake", ">= 10.5.0", "< 11"
10
- gem "rspec", "~> 3.2"
11
- gem "zeus"
12
- gem "yard"
13
- gem "redcarpet"
14
- gem "pygments.rb"
15
- gem "fssm"
16
- gem "rspec-rails", ">= 3.2.0", "< 4"
17
- gem "shoulda-context", "~> 1.2.0"
18
- gem "sqlite3", :platform => :ruby
19
- gem "pg", :platform => :ruby
20
- gem "activerecord-jdbc-adapter", :platform => :jruby
21
- gem "activerecord-jdbcsqlite3-adapter", :platform => :jruby
22
- gem "jdbc-sqlite3", :platform => :jruby
23
- gem "jruby-openssl", :platform => :jruby
24
- gem "therubyrhino", :platform => :jruby
25
- gem "spring"
26
- gem "spring-commands-rspec"
27
- gem "uglifier", ">= 1.3.0"
28
- gem "coffee-rails", "~> 4.0.0"
29
- gem "jquery-rails"
30
- gem "turbolinks"
31
- gem "sdoc", "~> 0.4.0"
32
- gem "activeresource", "4.0.0"
33
- gem "protected_attributes", "~> 1.0.6"
34
- gem "minitest-reporters"
35
- gem "rails", "~> 4.1.0"
36
- gem "jbuilder", "~> 2.0"
37
- gem "sass-rails", "~> 4.0.3"
38
- gem "bcrypt", "~> 3.1.7"
@@ -1,220 +0,0 @@
1
- GIT
2
- remote: git://github.com/pry/pry.git
3
- revision: 3c138cbf94a44f7a6696afdab1ab5149d7541974
4
- specs:
5
- pry (0.10.1)
6
- coderay (~> 1.1.0)
7
- method_source (~> 0.8.1)
8
- slop (~> 3.4)
9
-
10
- GEM
11
- remote: https://rubygems.org/
12
- specs:
13
- actionmailer (4.1.13)
14
- actionpack (= 4.1.13)
15
- actionview (= 4.1.13)
16
- mail (~> 2.5, >= 2.5.4)
17
- actionpack (4.1.13)
18
- actionview (= 4.1.13)
19
- activesupport (= 4.1.13)
20
- rack (~> 1.5.2)
21
- rack-test (~> 0.6.2)
22
- actionview (4.1.13)
23
- activesupport (= 4.1.13)
24
- builder (~> 3.1)
25
- erubis (~> 2.7.0)
26
- activemodel (4.1.13)
27
- activesupport (= 4.1.13)
28
- builder (~> 3.1)
29
- activerecord (4.1.13)
30
- activemodel (= 4.1.13)
31
- activesupport (= 4.1.13)
32
- arel (~> 5.0.0)
33
- activeresource (4.0.0)
34
- activemodel (~> 4.0)
35
- activesupport (~> 4.0)
36
- rails-observers (~> 0.1.1)
37
- activesupport (4.1.13)
38
- i18n (~> 0.6, >= 0.6.9)
39
- json (~> 1.7, >= 1.7.7)
40
- minitest (~> 5.1)
41
- thread_safe (~> 0.1)
42
- tzinfo (~> 1.1)
43
- ansi (1.5.0)
44
- appraisal (2.1.0)
45
- bundler
46
- rake
47
- thor (>= 0.14.0)
48
- arel (5.0.1.20140414130214)
49
- bcrypt (3.1.10)
50
- builder (3.2.2)
51
- byebug (5.0.0)
52
- columnize (= 0.9.0)
53
- coderay (1.1.0)
54
- coffee-rails (4.0.1)
55
- coffee-script (>= 2.2.0)
56
- railties (>= 4.0.0, < 5.0)
57
- coffee-script (2.4.1)
58
- coffee-script-source
59
- execjs
60
- coffee-script-source (1.9.1.1)
61
- columnize (0.9.0)
62
- diff-lcs (1.2.5)
63
- erubis (2.7.0)
64
- execjs (2.6.0)
65
- fssm (0.2.10)
66
- hike (1.2.3)
67
- i18n (0.7.0)
68
- jbuilder (2.3.1)
69
- activesupport (>= 3.0.0, < 5)
70
- multi_json (~> 1.2)
71
- jquery-rails (3.1.4)
72
- railties (>= 3.0, < 5.0)
73
- thor (>= 0.14, < 2.0)
74
- json (1.8.3)
75
- mail (2.6.3)
76
- mime-types (>= 1.16, < 3)
77
- method_source (0.8.2)
78
- mime-types (2.6.2)
79
- minitest (5.8.3)
80
- minitest-reporters (1.1.2)
81
- ansi
82
- builder
83
- minitest (>= 5.0)
84
- ruby-progressbar
85
- multi_json (1.11.2)
86
- pg (0.18.3)
87
- posix-spawn (0.3.11)
88
- protected_attributes (1.0.9)
89
- activemodel (>= 4.0.1, < 5.0)
90
- pry-byebug (3.2.0)
91
- byebug (~> 5.0)
92
- pry (~> 0.10)
93
- pygments.rb (0.6.3)
94
- posix-spawn (~> 0.3.6)
95
- yajl-ruby (~> 1.2.0)
96
- rack (1.5.5)
97
- rack-test (0.6.3)
98
- rack (>= 1.0)
99
- rails (4.1.13)
100
- actionmailer (= 4.1.13)
101
- actionpack (= 4.1.13)
102
- actionview (= 4.1.13)
103
- activemodel (= 4.1.13)
104
- activerecord (= 4.1.13)
105
- activesupport (= 4.1.13)
106
- bundler (>= 1.3.0, < 2.0)
107
- railties (= 4.1.13)
108
- sprockets-rails (~> 2.0)
109
- rails-observers (0.1.2)
110
- activemodel (~> 4.0)
111
- railties (4.1.13)
112
- actionpack (= 4.1.13)
113
- activesupport (= 4.1.13)
114
- rake (>= 0.8.7)
115
- thor (>= 0.18.1, < 2.0)
116
- rake (10.5.0)
117
- rdoc (4.3.0)
118
- redcarpet (3.3.2)
119
- rspec (3.4.0)
120
- rspec-core (~> 3.4.0)
121
- rspec-expectations (~> 3.4.0)
122
- rspec-mocks (~> 3.4.0)
123
- rspec-core (3.4.1)
124
- rspec-support (~> 3.4.0)
125
- rspec-expectations (3.4.0)
126
- diff-lcs (>= 1.2.0, < 2.0)
127
- rspec-support (~> 3.4.0)
128
- rspec-mocks (3.4.0)
129
- diff-lcs (>= 1.2.0, < 2.0)
130
- rspec-support (~> 3.4.0)
131
- rspec-rails (3.4.0)
132
- actionpack (>= 3.0, < 4.3)
133
- activesupport (>= 3.0, < 4.3)
134
- railties (>= 3.0, < 4.3)
135
- rspec-core (~> 3.4.0)
136
- rspec-expectations (~> 3.4.0)
137
- rspec-mocks (~> 3.4.0)
138
- rspec-support (~> 3.4.0)
139
- rspec-support (3.4.1)
140
- ruby-progressbar (1.7.5)
141
- sass (3.2.19)
142
- sass-rails (4.0.5)
143
- railties (>= 4.0.0, < 5.0)
144
- sass (~> 3.2.2)
145
- sprockets (~> 2.8, < 3.0)
146
- sprockets-rails (~> 2.0)
147
- sdoc (0.4.1)
148
- json (~> 1.7, >= 1.7.7)
149
- rdoc (~> 4.0)
150
- shoulda-context (1.2.1)
151
- slop (3.6.0)
152
- spring (1.4.0)
153
- spring-commands-rspec (1.0.4)
154
- spring (>= 0.9.1)
155
- sprockets (2.12.4)
156
- hike (~> 1.2)
157
- multi_json (~> 1.0)
158
- rack (~> 1.0)
159
- tilt (~> 1.1, != 1.3.0)
160
- sprockets-rails (2.3.3)
161
- actionpack (>= 3.0)
162
- activesupport (>= 3.0)
163
- sprockets (>= 2.8, < 4.0)
164
- sqlite3 (1.3.10)
165
- thor (0.19.1)
166
- thread_safe (0.3.5)
167
- tilt (1.4.1)
168
- turbolinks (2.5.3)
169
- coffee-rails
170
- tzinfo (1.2.2)
171
- thread_safe (~> 0.1)
172
- uglifier (2.7.2)
173
- execjs (>= 0.3.0)
174
- json (>= 1.8.0)
175
- yajl-ruby (1.2.1)
176
- yard (0.8.7.6)
177
- zeus (0.15.4)
178
- method_source (>= 0.6.7)
179
-
180
- PLATFORMS
181
- ruby
182
-
183
- DEPENDENCIES
184
- activerecord-jdbc-adapter
185
- activerecord-jdbcsqlite3-adapter
186
- activeresource (= 4.0.0)
187
- appraisal (~> 2.0)
188
- bcrypt (~> 3.1.7)
189
- bundler (~> 1.1)
190
- coffee-rails (~> 4.0.0)
191
- fssm
192
- jbuilder (~> 2.0)
193
- jdbc-sqlite3
194
- jquery-rails
195
- jruby-openssl
196
- minitest-reporters
197
- pg
198
- protected_attributes (~> 1.0.6)
199
- pry!
200
- pry-byebug
201
- pygments.rb
202
- rails (~> 4.1.0)
203
- rake (>= 10.5.0, < 11)
204
- redcarpet
205
- rspec (~> 3.2)
206
- rspec-rails (>= 3.2.0, < 4)
207
- sass-rails (~> 4.0.3)
208
- sdoc (~> 0.4.0)
209
- shoulda-context (~> 1.2.0)
210
- spring
211
- spring-commands-rspec
212
- sqlite3
213
- therubyrhino
214
- turbolinks
215
- uglifier (>= 1.3.0)
216
- yard
217
- zeus
218
-
219
- BUNDLED WITH
220
- 1.11.2