shoulda-matchers 3.0.0.rc1 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (106) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +2 -3
  3. data/Gemfile.lock +12 -41
  4. data/NEWS.md +118 -26
  5. data/README.md +34 -11
  6. data/doc_config/yard/templates/default/fulldoc/html/css/bootstrap.css +0 -0
  7. data/doc_config/yard/templates/default/fulldoc/html/css/style.css +4 -0
  8. data/gemfiles/4.0.0.gemfile +2 -3
  9. data/gemfiles/4.0.0.gemfile.lock +47 -77
  10. data/gemfiles/4.0.1.gemfile +2 -3
  11. data/gemfiles/4.0.1.gemfile.lock +51 -79
  12. data/gemfiles/4.1.gemfile +2 -3
  13. data/gemfiles/4.1.gemfile.lock +73 -103
  14. data/gemfiles/4.2.gemfile +2 -3
  15. data/gemfiles/4.2.gemfile.lock +90 -124
  16. data/lib/shoulda/matchers.rb +1 -0
  17. data/lib/shoulda/matchers/action_controller/callback_matcher.rb +6 -8
  18. data/lib/shoulda/matchers/action_controller/filter_param_matcher.rb +1 -3
  19. data/lib/shoulda/matchers/action_controller/flash_store.rb +1 -8
  20. data/lib/shoulda/matchers/action_controller/permit_matcher.rb +140 -88
  21. data/lib/shoulda/matchers/action_controller/redirect_to_matcher.rb +2 -5
  22. data/lib/shoulda/matchers/action_controller/render_template_matcher.rb +5 -10
  23. data/lib/shoulda/matchers/action_controller/render_with_layout_matcher.rb +2 -4
  24. data/lib/shoulda/matchers/action_controller/rescue_from_matcher.rb +1 -3
  25. data/lib/shoulda/matchers/action_controller/respond_with_matcher.rb +3 -5
  26. data/lib/shoulda/matchers/action_controller/route_matcher.rb +5 -7
  27. data/lib/shoulda/matchers/action_controller/set_flash_matcher.rb +35 -9
  28. data/lib/shoulda/matchers/action_controller/set_session_matcher.rb +3 -3
  29. data/lib/shoulda/matchers/active_model.rb +57 -1
  30. data/lib/shoulda/matchers/active_model/allow_mass_assignment_of_matcher.rb +2 -5
  31. data/lib/shoulda/matchers/active_model/allow_value_matcher.rb +162 -54
  32. data/lib/shoulda/matchers/active_model/disallow_value_matcher.rb +5 -2
  33. data/lib/shoulda/matchers/active_model/have_secure_password_matcher.rb +1 -3
  34. data/lib/shoulda/matchers/active_model/numericality_matchers/comparison_matcher.rb +24 -11
  35. data/lib/shoulda/matchers/active_model/numericality_matchers/even_number_matcher.rb +4 -3
  36. data/lib/shoulda/matchers/active_model/numericality_matchers/numeric_type_matcher.rb +0 -2
  37. data/lib/shoulda/matchers/active_model/numericality_matchers/odd_number_matcher.rb +4 -3
  38. data/lib/shoulda/matchers/active_model/numericality_matchers/only_integer_matcher.rb +2 -1
  39. data/lib/shoulda/matchers/active_model/validate_absence_of_matcher.rb +15 -13
  40. data/lib/shoulda/matchers/active_model/validate_acceptance_of_matcher.rb +3 -3
  41. data/lib/shoulda/matchers/active_model/validate_confirmation_of_matcher.rb +3 -3
  42. data/lib/shoulda/matchers/active_model/validate_exclusion_of_matcher.rb +4 -4
  43. data/lib/shoulda/matchers/active_model/validate_inclusion_of_matcher.rb +8 -8
  44. data/lib/shoulda/matchers/active_model/validate_length_of_matcher.rb +8 -8
  45. data/lib/shoulda/matchers/active_model/validate_numericality_of_matcher.rb +12 -14
  46. data/lib/shoulda/matchers/active_model/validate_presence_of_matcher.rb +10 -4
  47. data/lib/shoulda/matchers/active_model/validation_matcher.rb +0 -3
  48. data/lib/shoulda/matchers/active_model/validator.rb +0 -8
  49. data/lib/shoulda/matchers/active_record/accept_nested_attributes_for_matcher.rb +4 -6
  50. data/lib/shoulda/matchers/active_record/association_matcher.rb +58 -43
  51. data/lib/shoulda/matchers/active_record/define_enum_for_matcher.rb +2 -2
  52. data/lib/shoulda/matchers/active_record/have_db_column_matcher.rb +3 -5
  53. data/lib/shoulda/matchers/active_record/have_db_index_matcher.rb +3 -5
  54. data/lib/shoulda/matchers/active_record/have_readonly_attribute_matcher.rb +1 -4
  55. data/lib/shoulda/matchers/active_record/serialize_matcher.rb +3 -5
  56. data/lib/shoulda/matchers/active_record/validate_uniqueness_of_matcher.rb +7 -7
  57. data/lib/shoulda/matchers/doublespeak/double.rb +10 -1
  58. data/lib/shoulda/matchers/doublespeak/double_collection.rb +13 -5
  59. data/lib/shoulda/matchers/doublespeak/method_call.rb +10 -1
  60. data/lib/shoulda/matchers/doublespeak/object_double.rb +2 -1
  61. data/lib/shoulda/matchers/doublespeak/world.rb +10 -0
  62. data/lib/shoulda/matchers/error.rb +4 -0
  63. data/lib/shoulda/matchers/independent/delegate_method_matcher.rb +11 -10
  64. data/lib/shoulda/matchers/integrations/libraries.rb +1 -0
  65. data/lib/shoulda/matchers/integrations/libraries/action_controller.rb +1 -1
  66. data/lib/shoulda/matchers/integrations/libraries/active_model.rb +1 -1
  67. data/lib/shoulda/matchers/integrations/libraries/active_record.rb +1 -1
  68. data/lib/shoulda/matchers/integrations/libraries/rails.rb +2 -1
  69. data/lib/shoulda/matchers/integrations/libraries/routing.rb +27 -0
  70. data/lib/shoulda/matchers/integrations/test_frameworks/active_support_test_case.rb +1 -1
  71. data/lib/shoulda/matchers/integrations/test_frameworks/minitest_4.rb +1 -1
  72. data/lib/shoulda/matchers/integrations/test_frameworks/minitest_5.rb +1 -1
  73. data/lib/shoulda/matchers/integrations/test_frameworks/missing_test_framework.rb +1 -1
  74. data/lib/shoulda/matchers/integrations/test_frameworks/rspec.rb +2 -2
  75. data/lib/shoulda/matchers/integrations/test_frameworks/test_unit.rb +1 -1
  76. data/lib/shoulda/matchers/routing.rb +10 -0
  77. data/lib/shoulda/matchers/version.rb +1 -1
  78. data/script/SUPPORTED_VERSIONS +1 -1
  79. data/spec/acceptance/independent_matchers_spec.rb +103 -42
  80. data/spec/doublespeak_spec_helper.rb +5 -1
  81. data/spec/support/acceptance/adds_shoulda_matchers_to_project.rb +34 -11
  82. data/spec/support/acceptance/helpers/rspec_helpers.rb +9 -13
  83. data/spec/support/acceptance/helpers/step_helpers.rb +13 -0
  84. data/spec/support/acceptance/matchers/have_output.rb +1 -1
  85. data/spec/support/acceptance/matchers/indicate_number_of_tests_was_run_matcher.rb +1 -1
  86. data/spec/support/tests/command_runner.rb +5 -1
  87. data/spec/support/unit/helpers/active_record_versions.rb +0 -4
  88. data/spec/support/unit/shared_examples/set_session_or_flash.rb +8 -3
  89. data/spec/unit/shoulda/matchers/action_controller/permit_matcher_spec.rb +198 -39
  90. data/spec/unit/shoulda/matchers/action_controller/route_matcher_spec.rb +269 -102
  91. data/spec/unit/shoulda/matchers/action_controller/set_flash_matcher_spec.rb +24 -0
  92. data/spec/unit/shoulda/matchers/active_model/allow_value_matcher_spec.rb +118 -101
  93. data/spec/unit/shoulda/matchers/active_model/disallow_value_matcher_spec.rb +0 -82
  94. data/spec/unit/shoulda/matchers/active_model/numericality_matchers/comparison_matcher_spec.rb +148 -121
  95. data/spec/unit/shoulda/matchers/active_model/validate_acceptance_of_matcher_spec.rb +20 -8
  96. data/spec/unit/shoulda/matchers/active_model/validate_numericality_of_matcher_spec.rb +64 -183
  97. data/spec/unit/shoulda/matchers/active_model/validate_presence_of_matcher_spec.rb +14 -0
  98. data/spec/unit/shoulda/matchers/doublespeak/double_collection_spec.rb +60 -0
  99. data/spec/unit/shoulda/matchers/doublespeak/double_spec.rb +23 -7
  100. data/spec/unit/shoulda/matchers/routing/route_matcher_spec.rb +242 -0
  101. data/spec/unit_spec_helper.rb +4 -0
  102. data/tasks/documentation.rb +35 -0
  103. metadata +9 -8
  104. data/Guardfile +0 -5
  105. data/cucumber.yml +0 -1
  106. data/lib/shoulda/matchers/active_model/validator_with_captured_range_error.rb +0 -12
data/gemfiles/4.1.gemfile CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "appraisal", "~> 1.0"
5
+ gem "appraisal", "~> 2.0"
6
6
  gem "bundler", "~> 1.1"
7
7
  gem "pry", :github => "pry/pry"
8
8
  gem "pry-byebug"
@@ -12,8 +12,7 @@ gem "rspec-expectations", ">= 3.2.0", "< 4"
12
12
  gem "yard"
13
13
  gem "redcarpet"
14
14
  gem "pygments.rb"
15
- gem "guard"
16
- gem "guard-yard"
15
+ gem "fssm"
17
16
  gem "rspec-rails", ">= 3.2.0", "< 4"
18
17
  gem "shoulda-context", "~> 1.2.0"
19
18
  gem "sqlite3", :platform => :ruby
@@ -1,6 +1,6 @@
1
1
  GIT
2
2
  remote: git://github.com/pry/pry.git
3
- revision: f0cbec507111743fdbc273735ea4f0f6164a5b21
3
+ revision: 3c138cbf94a44f7a6696afdab1ab5149d7541974
4
4
  specs:
5
5
  pry (0.10.1)
6
6
  coderay (~> 1.1.0)
@@ -10,159 +10,130 @@ GIT
10
10
  GEM
11
11
  remote: https://rubygems.org/
12
12
  specs:
13
- actionmailer (4.1.7)
14
- actionpack (= 4.1.7)
15
- actionview (= 4.1.7)
13
+ actionmailer (4.1.13)
14
+ actionpack (= 4.1.13)
15
+ actionview (= 4.1.13)
16
16
  mail (~> 2.5, >= 2.5.4)
17
- actionpack (4.1.7)
18
- actionview (= 4.1.7)
19
- activesupport (= 4.1.7)
17
+ actionpack (4.1.13)
18
+ actionview (= 4.1.13)
19
+ activesupport (= 4.1.13)
20
20
  rack (~> 1.5.2)
21
21
  rack-test (~> 0.6.2)
22
- actionview (4.1.7)
23
- activesupport (= 4.1.7)
22
+ actionview (4.1.13)
23
+ activesupport (= 4.1.13)
24
24
  builder (~> 3.1)
25
25
  erubis (~> 2.7.0)
26
- activemodel (4.1.7)
27
- activesupport (= 4.1.7)
26
+ activemodel (4.1.13)
27
+ activesupport (= 4.1.13)
28
28
  builder (~> 3.1)
29
- activerecord (4.1.7)
30
- activemodel (= 4.1.7)
31
- activesupport (= 4.1.7)
29
+ activerecord (4.1.13)
30
+ activemodel (= 4.1.13)
31
+ activesupport (= 4.1.13)
32
32
  arel (~> 5.0.0)
33
33
  activeresource (4.0.0)
34
34
  activemodel (~> 4.0)
35
35
  activesupport (~> 4.0)
36
36
  rails-observers (~> 0.1.1)
37
- activesupport (4.1.7)
37
+ activesupport (4.1.13)
38
38
  i18n (~> 0.6, >= 0.6.9)
39
39
  json (~> 1.7, >= 1.7.7)
40
40
  minitest (~> 5.1)
41
41
  thread_safe (~> 0.1)
42
42
  tzinfo (~> 1.1)
43
43
  ansi (1.5.0)
44
- appraisal (1.0.2)
44
+ appraisal (2.1.0)
45
45
  bundler
46
46
  rake
47
47
  thor (>= 0.14.0)
48
48
  arel (5.0.1.20140414130214)
49
49
  bcrypt (3.1.10)
50
50
  builder (3.2.2)
51
- byebug (4.0.4)
51
+ byebug (5.0.0)
52
52
  columnize (= 0.9.0)
53
- celluloid (0.16.0)
54
- timers (~> 4.0.0)
55
53
  coderay (1.1.0)
56
54
  coffee-rails (4.0.1)
57
55
  coffee-script (>= 2.2.0)
58
56
  railties (>= 4.0.0, < 5.0)
59
- coffee-script (2.3.0)
57
+ coffee-script (2.4.1)
60
58
  coffee-script-source
61
59
  execjs
62
- coffee-script-source (1.9.0)
60
+ coffee-script-source (1.9.1.1)
63
61
  columnize (0.9.0)
64
62
  diff-lcs (1.2.5)
65
63
  erubis (2.7.0)
66
- execjs (2.3.0)
67
- ffi (1.9.8)
68
- formatador (0.2.5)
69
- guard (2.12.5)
70
- formatador (>= 0.2.4)
71
- listen (~> 2.7)
72
- lumberjack (~> 1.0)
73
- nenv (~> 0.1)
74
- notiffany (~> 0.0)
75
- pry (>= 0.9.12)
76
- shellany (~> 0.0)
77
- thor (>= 0.18.1)
78
- guard-yard (2.1.4)
79
- guard (>= 1.1.0)
80
- yard (>= 0.7.0)
64
+ execjs (2.6.0)
65
+ fssm (0.2.10)
81
66
  hike (1.2.3)
82
- hitimes (1.2.2)
83
67
  i18n (0.7.0)
84
- jbuilder (2.2.6)
68
+ jbuilder (2.3.1)
85
69
  activesupport (>= 3.0.0, < 5)
86
70
  multi_json (~> 1.2)
87
- jquery-rails (3.1.2)
71
+ jquery-rails (3.1.4)
88
72
  railties (>= 3.0, < 5.0)
89
73
  thor (>= 0.14, < 2.0)
90
- json (1.8.2)
91
- listen (2.10.0)
92
- celluloid (~> 0.16.0)
93
- rb-fsevent (>= 0.9.3)
94
- rb-inotify (>= 0.9)
95
- lumberjack (1.0.9)
74
+ json (1.8.3)
96
75
  mail (2.6.3)
97
76
  mime-types (>= 1.16, < 3)
98
77
  method_source (0.8.2)
99
- mime-types (2.4.3)
100
- minitest (5.5.1)
101
- minitest-reporters (1.0.10)
78
+ mime-types (2.6.2)
79
+ minitest (5.8.1)
80
+ minitest-reporters (1.1.2)
102
81
  ansi
103
82
  builder
104
83
  minitest (>= 5.0)
105
84
  ruby-progressbar
106
- multi_json (1.10.1)
107
- nenv (0.2.0)
108
- notiffany (0.0.6)
109
- nenv (~> 0.1)
110
- shellany (~> 0.0)
111
- pg (0.18.1)
112
- posix-spawn (0.3.9)
113
- protected_attributes (1.0.8)
85
+ multi_json (1.11.2)
86
+ pg (0.18.3)
87
+ posix-spawn (0.3.11)
88
+ protected_attributes (1.0.9)
114
89
  activemodel (>= 4.0.1, < 5.0)
115
- pry-byebug (3.1.0)
116
- byebug (~> 4.0)
90
+ pry-byebug (3.2.0)
91
+ byebug (~> 5.0)
117
92
  pry (~> 0.10)
118
- pygments.rb (0.6.2)
93
+ pygments.rb (0.6.3)
119
94
  posix-spawn (~> 0.3.6)
120
95
  yajl-ruby (~> 1.2.0)
121
- rack (1.5.2)
96
+ rack (1.5.5)
122
97
  rack-test (0.6.3)
123
98
  rack (>= 1.0)
124
- rails (4.1.7)
125
- actionmailer (= 4.1.7)
126
- actionpack (= 4.1.7)
127
- actionview (= 4.1.7)
128
- activemodel (= 4.1.7)
129
- activerecord (= 4.1.7)
130
- activesupport (= 4.1.7)
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)
131
106
  bundler (>= 1.3.0, < 2.0)
132
- railties (= 4.1.7)
107
+ railties (= 4.1.13)
133
108
  sprockets-rails (~> 2.0)
134
109
  rails-observers (0.1.2)
135
110
  activemodel (~> 4.0)
136
- railties (4.1.7)
137
- actionpack (= 4.1.7)
138
- activesupport (= 4.1.7)
111
+ railties (4.1.13)
112
+ actionpack (= 4.1.13)
113
+ activesupport (= 4.1.13)
139
114
  rake (>= 0.8.7)
140
115
  thor (>= 0.18.1, < 2.0)
141
116
  rake (10.4.2)
142
- rb-fsevent (0.9.4)
143
- rb-inotify (0.9.5)
144
- ffi (>= 0.5.0)
145
117
  rdoc (4.2.0)
146
- json (~> 1.4)
147
- redcarpet (3.2.2)
148
- rspec-core (3.2.0)
149
- rspec-support (~> 3.2.0)
150
- rspec-expectations (3.2.0)
118
+ redcarpet (3.3.2)
119
+ rspec-core (3.3.2)
120
+ rspec-support (~> 3.3.0)
121
+ rspec-expectations (3.3.1)
151
122
  diff-lcs (>= 1.2.0, < 2.0)
152
- rspec-support (~> 3.2.0)
153
- rspec-mocks (3.2.0)
123
+ rspec-support (~> 3.3.0)
124
+ rspec-mocks (3.3.2)
154
125
  diff-lcs (>= 1.2.0, < 2.0)
155
- rspec-support (~> 3.2.0)
156
- rspec-rails (3.2.0)
157
- actionpack (>= 3.0, <= 4.2)
158
- activesupport (>= 3.0, <= 4.2)
159
- railties (>= 3.0, <= 4.2)
160
- rspec-core (~> 3.2.0)
161
- rspec-expectations (~> 3.2.0)
162
- rspec-mocks (~> 3.2.0)
163
- rspec-support (~> 3.2.0)
164
- rspec-support (3.2.1)
165
- ruby-progressbar (1.7.1)
126
+ rspec-support (~> 3.3.0)
127
+ rspec-rails (3.3.3)
128
+ actionpack (>= 3.0, < 4.3)
129
+ activesupport (>= 3.0, < 4.3)
130
+ railties (>= 3.0, < 4.3)
131
+ rspec-core (~> 3.3.0)
132
+ rspec-expectations (~> 3.3.0)
133
+ rspec-mocks (~> 3.3.0)
134
+ rspec-support (~> 3.3.0)
135
+ rspec-support (3.3.0)
136
+ ruby-progressbar (1.7.5)
166
137
  sass (3.2.19)
167
138
  sass-rails (4.0.5)
168
139
  railties (>= 4.0.0, < 5.0)
@@ -172,32 +143,29 @@ GEM
172
143
  sdoc (0.4.1)
173
144
  json (~> 1.7, >= 1.7.7)
174
145
  rdoc (~> 4.0)
175
- shellany (0.0.1)
176
146
  shoulda-context (1.2.1)
177
147
  slop (3.6.0)
178
- spring (1.2.0)
148
+ spring (1.4.0)
179
149
  spring-commands-rspec (1.0.4)
180
150
  spring (>= 0.9.1)
181
- sprockets (2.12.3)
151
+ sprockets (2.12.4)
182
152
  hike (~> 1.2)
183
153
  multi_json (~> 1.0)
184
154
  rack (~> 1.0)
185
155
  tilt (~> 1.1, != 1.3.0)
186
- sprockets-rails (2.2.4)
156
+ sprockets-rails (2.3.3)
187
157
  actionpack (>= 3.0)
188
158
  activesupport (>= 3.0)
189
159
  sprockets (>= 2.8, < 4.0)
190
160
  sqlite3 (1.3.10)
191
161
  thor (0.19.1)
192
- thread_safe (0.3.4)
162
+ thread_safe (0.3.5)
193
163
  tilt (1.4.1)
194
- timers (4.0.1)
195
- hitimes
196
164
  turbolinks (2.5.3)
197
165
  coffee-rails
198
166
  tzinfo (1.2.2)
199
167
  thread_safe (~> 0.1)
200
- uglifier (2.7.0)
168
+ uglifier (2.7.2)
201
169
  execjs (>= 0.3.0)
202
170
  json (>= 1.8.0)
203
171
  yajl-ruby (1.2.1)
@@ -210,12 +178,11 @@ DEPENDENCIES
210
178
  activerecord-jdbc-adapter
211
179
  activerecord-jdbcsqlite3-adapter
212
180
  activeresource (= 4.0.0)
213
- appraisal (~> 1.0)
181
+ appraisal (~> 2.0)
214
182
  bcrypt (~> 3.1.7)
215
183
  bundler (~> 1.1)
216
184
  coffee-rails (~> 4.0.0)
217
- guard
218
- guard-yard
185
+ fssm
219
186
  jbuilder (~> 2.0)
220
187
  jdbc-sqlite3
221
188
  jquery-rails
@@ -242,3 +209,6 @@ DEPENDENCIES
242
209
  turbolinks
243
210
  uglifier (>= 1.3.0)
244
211
  yard
212
+
213
+ BUNDLED WITH
214
+ 1.10.6
data/gemfiles/4.2.gemfile CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "appraisal", "~> 1.0"
5
+ gem "appraisal", "~> 2.0"
6
6
  gem "bundler", "~> 1.1"
7
7
  gem "pry", :github => "pry/pry"
8
8
  gem "pry-byebug"
@@ -12,8 +12,7 @@ gem "rspec-expectations", ">= 3.2.0", "< 4"
12
12
  gem "yard"
13
13
  gem "redcarpet"
14
14
  gem "pygments.rb"
15
- gem "guard"
16
- gem "guard-yard"
15
+ gem "fssm"
17
16
  gem "rspec-rails", ">= 3.2.0", "< 4"
18
17
  gem "shoulda-context", "~> 1.2.0"
19
18
  gem "sqlite3", :platform => :ruby
@@ -1,6 +1,6 @@
1
1
  GIT
2
2
  remote: git://github.com/pry/pry.git
3
- revision: f0cbec507111743fdbc273735ea4f0f6164a5b21
3
+ revision: 3c138cbf94a44f7a6696afdab1ab5149d7541974
4
4
  specs:
5
5
  pry (0.10.1)
6
6
  coderay (~> 1.1.0)
@@ -10,221 +10,185 @@ GIT
10
10
  GEM
11
11
  remote: https://rubygems.org/
12
12
  specs:
13
- actionmailer (4.2.0)
14
- actionpack (= 4.2.0)
15
- actionview (= 4.2.0)
16
- activejob (= 4.2.0)
13
+ actionmailer (4.2.4)
14
+ actionpack (= 4.2.4)
15
+ actionview (= 4.2.4)
16
+ activejob (= 4.2.4)
17
17
  mail (~> 2.5, >= 2.5.4)
18
18
  rails-dom-testing (~> 1.0, >= 1.0.5)
19
- actionpack (4.2.0)
20
- actionview (= 4.2.0)
21
- activesupport (= 4.2.0)
22
- rack (~> 1.6.0)
19
+ actionpack (4.2.4)
20
+ actionview (= 4.2.4)
21
+ activesupport (= 4.2.4)
22
+ rack (~> 1.6)
23
23
  rack-test (~> 0.6.2)
24
24
  rails-dom-testing (~> 1.0, >= 1.0.5)
25
- rails-html-sanitizer (~> 1.0, >= 1.0.1)
26
- actionview (4.2.0)
27
- activesupport (= 4.2.0)
25
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
26
+ actionview (4.2.4)
27
+ activesupport (= 4.2.4)
28
28
  builder (~> 3.1)
29
29
  erubis (~> 2.7.0)
30
30
  rails-dom-testing (~> 1.0, >= 1.0.5)
31
- rails-html-sanitizer (~> 1.0, >= 1.0.1)
32
- activejob (4.2.0)
33
- activesupport (= 4.2.0)
31
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
32
+ activejob (4.2.4)
33
+ activesupport (= 4.2.4)
34
34
  globalid (>= 0.3.0)
35
- activemodel (4.2.0)
36
- activesupport (= 4.2.0)
35
+ activemodel (4.2.4)
36
+ activesupport (= 4.2.4)
37
37
  builder (~> 3.1)
38
- activerecord (4.2.0)
39
- activemodel (= 4.2.0)
40
- activesupport (= 4.2.0)
38
+ activerecord (4.2.4)
39
+ activemodel (= 4.2.4)
40
+ activesupport (= 4.2.4)
41
41
  arel (~> 6.0)
42
42
  activeresource (4.0.0)
43
43
  activemodel (~> 4.0)
44
44
  activesupport (~> 4.0)
45
45
  rails-observers (~> 0.1.1)
46
- activesupport (4.2.0)
46
+ activesupport (4.2.4)
47
47
  i18n (~> 0.7)
48
48
  json (~> 1.7, >= 1.7.7)
49
49
  minitest (~> 5.1)
50
50
  thread_safe (~> 0.3, >= 0.3.4)
51
51
  tzinfo (~> 1.1)
52
52
  ansi (1.5.0)
53
- appraisal (1.0.2)
53
+ appraisal (2.1.0)
54
54
  bundler
55
55
  rake
56
56
  thor (>= 0.14.0)
57
- arel (6.0.0)
57
+ arel (6.0.3)
58
58
  bcrypt (3.1.10)
59
59
  builder (3.2.2)
60
- byebug (4.0.4)
60
+ byebug (5.0.0)
61
61
  columnize (= 0.9.0)
62
- celluloid (0.16.0)
63
- timers (~> 4.0.0)
64
62
  coderay (1.1.0)
65
63
  coffee-rails (4.1.0)
66
64
  coffee-script (>= 2.2.0)
67
65
  railties (>= 4.0.0, < 5.0)
68
- coffee-script (2.3.0)
66
+ coffee-script (2.4.1)
69
67
  coffee-script-source
70
68
  execjs
71
- coffee-script-source (1.9.0)
69
+ coffee-script-source (1.9.1.1)
72
70
  columnize (0.9.0)
73
71
  diff-lcs (1.2.5)
74
72
  erubis (2.7.0)
75
- execjs (2.3.0)
76
- ffi (1.9.8)
77
- formatador (0.2.5)
78
- globalid (0.3.0)
73
+ execjs (2.6.0)
74
+ fssm (0.2.10)
75
+ globalid (0.3.6)
79
76
  activesupport (>= 4.1.0)
80
- guard (2.12.5)
81
- formatador (>= 0.2.4)
82
- listen (~> 2.7)
83
- lumberjack (~> 1.0)
84
- nenv (~> 0.1)
85
- notiffany (~> 0.0)
86
- pry (>= 0.9.12)
87
- shellany (~> 0.0)
88
- thor (>= 0.18.1)
89
- guard-yard (2.1.4)
90
- guard (>= 1.1.0)
91
- yard (>= 0.7.0)
92
- hike (1.2.3)
93
- hitimes (1.2.2)
94
77
  i18n (0.7.0)
95
- jbuilder (2.2.6)
78
+ jbuilder (2.3.1)
96
79
  activesupport (>= 3.0.0, < 5)
97
80
  multi_json (~> 1.2)
98
- jquery-rails (4.0.3)
81
+ jquery-rails (4.0.5)
99
82
  rails-dom-testing (~> 1.0)
100
83
  railties (>= 4.2.0)
101
84
  thor (>= 0.14, < 2.0)
102
- json (1.8.2)
103
- listen (2.10.0)
104
- celluloid (~> 0.16.0)
105
- rb-fsevent (>= 0.9.3)
106
- rb-inotify (>= 0.9)
107
- loofah (2.0.1)
85
+ json (1.8.3)
86
+ loofah (2.0.3)
108
87
  nokogiri (>= 1.5.9)
109
- lumberjack (1.0.9)
110
88
  mail (2.6.3)
111
89
  mime-types (>= 1.16, < 3)
112
90
  method_source (0.8.2)
113
- mime-types (2.4.3)
91
+ mime-types (2.6.2)
114
92
  mini_portile (0.6.2)
115
- minitest (5.5.1)
116
- minitest-reporters (1.0.10)
93
+ minitest (5.8.1)
94
+ minitest-reporters (1.1.2)
117
95
  ansi
118
96
  builder
119
97
  minitest (>= 5.0)
120
98
  ruby-progressbar
121
- multi_json (1.10.1)
122
- nenv (0.2.0)
99
+ multi_json (1.11.2)
123
100
  nokogiri (1.6.6.2)
124
101
  mini_portile (~> 0.6.0)
125
- notiffany (0.0.6)
126
- nenv (~> 0.1)
127
- shellany (~> 0.0)
128
- pg (0.18.1)
129
- posix-spawn (0.3.9)
130
- protected_attributes (1.0.8)
102
+ pg (0.18.3)
103
+ posix-spawn (0.3.11)
104
+ protected_attributes (1.0.9)
131
105
  activemodel (>= 4.0.1, < 5.0)
132
- pry-byebug (3.1.0)
133
- byebug (~> 4.0)
106
+ pry-byebug (3.2.0)
107
+ byebug (~> 5.0)
134
108
  pry (~> 0.10)
135
- pygments.rb (0.6.2)
109
+ pygments.rb (0.6.3)
136
110
  posix-spawn (~> 0.3.6)
137
111
  yajl-ruby (~> 1.2.0)
138
- rack (1.6.0)
112
+ rack (1.6.4)
139
113
  rack-test (0.6.3)
140
114
  rack (>= 1.0)
141
- rails (4.2.0)
142
- actionmailer (= 4.2.0)
143
- actionpack (= 4.2.0)
144
- actionview (= 4.2.0)
145
- activejob (= 4.2.0)
146
- activemodel (= 4.2.0)
147
- activerecord (= 4.2.0)
148
- activesupport (= 4.2.0)
115
+ rails (4.2.4)
116
+ actionmailer (= 4.2.4)
117
+ actionpack (= 4.2.4)
118
+ actionview (= 4.2.4)
119
+ activejob (= 4.2.4)
120
+ activemodel (= 4.2.4)
121
+ activerecord (= 4.2.4)
122
+ activesupport (= 4.2.4)
149
123
  bundler (>= 1.3.0, < 2.0)
150
- railties (= 4.2.0)
124
+ railties (= 4.2.4)
151
125
  sprockets-rails
152
126
  rails-deprecated_sanitizer (1.0.3)
153
127
  activesupport (>= 4.2.0.alpha)
154
- rails-dom-testing (1.0.5)
128
+ rails-dom-testing (1.0.7)
155
129
  activesupport (>= 4.2.0.beta, < 5.0)
156
130
  nokogiri (~> 1.6.0)
157
131
  rails-deprecated_sanitizer (>= 1.0.1)
158
- rails-html-sanitizer (1.0.1)
132
+ rails-html-sanitizer (1.0.2)
159
133
  loofah (~> 2.0)
160
134
  rails-observers (0.1.2)
161
135
  activemodel (~> 4.0)
162
- railties (4.2.0)
163
- actionpack (= 4.2.0)
164
- activesupport (= 4.2.0)
136
+ railties (4.2.4)
137
+ actionpack (= 4.2.4)
138
+ activesupport (= 4.2.4)
165
139
  rake (>= 0.8.7)
166
140
  thor (>= 0.18.1, < 2.0)
167
141
  rake (10.4.2)
168
- rb-fsevent (0.9.4)
169
- rb-inotify (0.9.5)
170
- ffi (>= 0.5.0)
171
142
  rdoc (4.2.0)
172
- json (~> 1.4)
173
- redcarpet (3.2.2)
174
- rspec-core (3.2.0)
175
- rspec-support (~> 3.2.0)
176
- rspec-expectations (3.2.0)
143
+ redcarpet (3.3.2)
144
+ rspec-core (3.3.2)
145
+ rspec-support (~> 3.3.0)
146
+ rspec-expectations (3.3.1)
177
147
  diff-lcs (>= 1.2.0, < 2.0)
178
- rspec-support (~> 3.2.0)
179
- rspec-mocks (3.2.0)
148
+ rspec-support (~> 3.3.0)
149
+ rspec-mocks (3.3.2)
180
150
  diff-lcs (>= 1.2.0, < 2.0)
181
- rspec-support (~> 3.2.0)
182
- rspec-rails (3.2.0)
183
- actionpack (>= 3.0, <= 4.2)
184
- activesupport (>= 3.0, <= 4.2)
185
- railties (>= 3.0, <= 4.2)
186
- rspec-core (~> 3.2.0)
187
- rspec-expectations (~> 3.2.0)
188
- rspec-mocks (~> 3.2.0)
189
- rspec-support (~> 3.2.0)
190
- rspec-support (3.2.1)
191
- ruby-progressbar (1.7.1)
192
- sass (3.4.11)
193
- sass-rails (5.0.1)
151
+ rspec-support (~> 3.3.0)
152
+ rspec-rails (3.3.3)
153
+ actionpack (>= 3.0, < 4.3)
154
+ activesupport (>= 3.0, < 4.3)
155
+ railties (>= 3.0, < 4.3)
156
+ rspec-core (~> 3.3.0)
157
+ rspec-expectations (~> 3.3.0)
158
+ rspec-mocks (~> 3.3.0)
159
+ rspec-support (~> 3.3.0)
160
+ rspec-support (3.3.0)
161
+ ruby-progressbar (1.7.5)
162
+ sass (3.4.18)
163
+ sass-rails (5.0.4)
194
164
  railties (>= 4.0.0, < 5.0)
195
165
  sass (~> 3.1)
196
166
  sprockets (>= 2.8, < 4.0)
197
167
  sprockets-rails (>= 2.0, < 4.0)
198
- tilt (~> 1.1)
168
+ tilt (>= 1.1, < 3)
199
169
  sdoc (0.4.1)
200
170
  json (~> 1.7, >= 1.7.7)
201
171
  rdoc (~> 4.0)
202
- shellany (0.0.1)
203
172
  shoulda-context (1.2.1)
204
173
  slop (3.6.0)
205
- spring (1.2.0)
174
+ spring (1.4.0)
206
175
  spring-commands-rspec (1.0.4)
207
176
  spring (>= 0.9.1)
208
- sprockets (2.12.3)
209
- hike (~> 1.2)
210
- multi_json (~> 1.0)
211
- rack (~> 1.0)
212
- tilt (~> 1.1, != 1.3.0)
213
- sprockets-rails (2.2.4)
177
+ sprockets (3.3.5)
178
+ rack (> 1, < 3)
179
+ sprockets-rails (2.3.3)
214
180
  actionpack (>= 3.0)
215
181
  activesupport (>= 3.0)
216
182
  sprockets (>= 2.8, < 4.0)
217
183
  sqlite3 (1.3.10)
218
184
  thor (0.19.1)
219
- thread_safe (0.3.4)
220
- tilt (1.4.1)
221
- timers (4.0.1)
222
- hitimes
185
+ thread_safe (0.3.5)
186
+ tilt (2.0.1)
223
187
  turbolinks (2.5.3)
224
188
  coffee-rails
225
189
  tzinfo (1.2.2)
226
190
  thread_safe (~> 0.1)
227
- uglifier (2.7.0)
191
+ uglifier (2.7.2)
228
192
  execjs (>= 0.3.0)
229
193
  json (>= 1.8.0)
230
194
  yajl-ruby (1.2.1)
@@ -237,12 +201,11 @@ DEPENDENCIES
237
201
  activerecord-jdbc-adapter
238
202
  activerecord-jdbcsqlite3-adapter
239
203
  activeresource (= 4.0.0)
240
- appraisal (~> 1.0)
204
+ appraisal (~> 2.0)
241
205
  bcrypt (~> 3.1.7)
242
206
  bundler (~> 1.1)
243
207
  coffee-rails (~> 4.1.0)
244
- guard
245
- guard-yard
208
+ fssm
246
209
  jbuilder (~> 2.0)
247
210
  jdbc-sqlite3
248
211
  jquery-rails
@@ -269,3 +232,6 @@ DEPENDENCIES
269
232
  turbolinks
270
233
  uglifier (>= 1.3.0)
271
234
  yard
235
+
236
+ BUNDLED WITH
237
+ 1.10.6