shoulda-matchers 2.6.1 → 2.6.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (146) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/.travis.yml +9 -0
  4. data/.yardopts +8 -0
  5. data/Appraisals +82 -33
  6. data/Gemfile +18 -2
  7. data/Gemfile.lock +13 -1
  8. data/NEWS.md +27 -2
  9. data/README.md +83 -1329
  10. data/Rakefile +118 -1
  11. data/cucumber.yml +1 -0
  12. data/doc_config/gh-pages/index.html.erb +9 -0
  13. data/doc_config/yard/setup.rb +22 -0
  14. data/doc_config/yard/templates/default/fulldoc/html/css/bootstrap.css +5967 -0
  15. data/doc_config/yard/templates/default/fulldoc/html/css/full_list.css +12 -0
  16. data/doc_config/yard/templates/default/fulldoc/html/css/global.css +45 -0
  17. data/doc_config/yard/templates/default/fulldoc/html/css/solarized.css +69 -0
  18. data/doc_config/yard/templates/default/fulldoc/html/css/style.css +283 -0
  19. data/doc_config/yard/templates/default/fulldoc/html/full_list.erb +32 -0
  20. data/doc_config/yard/templates/default/fulldoc/html/full_list_class.erb +1 -0
  21. data/doc_config/yard/templates/default/fulldoc/html/full_list_method.erb +8 -0
  22. data/doc_config/yard/templates/default/fulldoc/html/js/app.js +298 -0
  23. data/doc_config/yard/templates/default/fulldoc/html/js/full_list.js +1 -0
  24. data/doc_config/yard/templates/default/fulldoc/html/js/jquery.stickyheaders.js +289 -0
  25. data/doc_config/yard/templates/default/fulldoc/html/js/underscore.min.js +6 -0
  26. data/doc_config/yard/templates/default/fulldoc/html/setup.rb +8 -0
  27. data/doc_config/yard/templates/default/layout/html/breadcrumb.erb +14 -0
  28. data/doc_config/yard/templates/default/layout/html/fonts.erb +1 -0
  29. data/doc_config/yard/templates/default/layout/html/layout.erb +23 -0
  30. data/doc_config/yard/templates/default/layout/html/search.erb +13 -0
  31. data/doc_config/yard/templates/default/layout/html/setup.rb +40 -0
  32. data/doc_config/yard/templates/default/method_details/html/source.erb +10 -0
  33. data/doc_config/yard/templates/default/module/html/box_info.erb +31 -0
  34. data/docs.watchr +5 -0
  35. data/features/rails_integration.feature +32 -0
  36. data/features/step_definitions/rails_steps.rb +55 -9
  37. data/features/support/env.rb +1 -0
  38. data/gemfiles/3.0.gemfile +13 -1
  39. data/gemfiles/3.0.gemfile.lock +13 -1
  40. data/gemfiles/3.1.gemfile +17 -2
  41. data/gemfiles/3.1.gemfile.lock +31 -2
  42. data/gemfiles/3.1_1.9.2.gemfile +33 -0
  43. data/gemfiles/3.1_1.9.2.gemfile.lock +203 -0
  44. data/gemfiles/3.2.gemfile +18 -2
  45. data/gemfiles/3.2.gemfile.lock +32 -2
  46. data/gemfiles/3.2_1.9.2.gemfile +32 -0
  47. data/gemfiles/3.2_1.9.2.gemfile.lock +200 -0
  48. data/gemfiles/4.0.0.gemfile +20 -1
  49. data/gemfiles/4.0.0.gemfile.lock +46 -2
  50. data/gemfiles/4.0.1.gemfile +20 -1
  51. data/gemfiles/4.0.1.gemfile.lock +46 -2
  52. data/gemfiles/4.1.gemfile +21 -2
  53. data/gemfiles/4.1.gemfile.lock +47 -4
  54. data/lib/shoulda/matchers/action_controller.rb +0 -20
  55. data/lib/shoulda/matchers/action_controller/callback_matcher.rb +119 -28
  56. data/lib/shoulda/matchers/action_controller/filter_param_matcher.rb +22 -6
  57. data/lib/shoulda/matchers/action_controller/redirect_to_matcher.rb +43 -10
  58. data/lib/shoulda/matchers/action_controller/render_template_matcher.rb +40 -13
  59. data/lib/shoulda/matchers/action_controller/render_with_layout_matcher.rb +63 -11
  60. data/lib/shoulda/matchers/action_controller/rescue_from_matcher.rb +34 -1
  61. data/lib/shoulda/matchers/action_controller/respond_with_matcher.rb +84 -15
  62. data/lib/shoulda/matchers/action_controller/route_matcher.rb +84 -28
  63. data/lib/shoulda/matchers/action_controller/route_params.rb +4 -3
  64. data/lib/shoulda/matchers/action_controller/set_session_matcher.rb +76 -13
  65. data/lib/shoulda/matchers/action_controller/set_the_flash_matcher.rb +147 -13
  66. data/lib/shoulda/matchers/action_controller/strong_parameters_matcher.rb +148 -2
  67. data/lib/shoulda/matchers/active_model.rb +0 -25
  68. data/lib/shoulda/matchers/active_model/allow_mass_assignment_of_matcher.rb +66 -9
  69. data/lib/shoulda/matchers/active_model/allow_value_matcher.rb +161 -19
  70. data/lib/shoulda/matchers/active_model/disallow_value_matcher.rb +5 -5
  71. data/lib/shoulda/matchers/active_model/ensure_exclusion_of_matcher.rb +92 -13
  72. data/lib/shoulda/matchers/active_model/ensure_inclusion_of_matcher.rb +218 -16
  73. data/lib/shoulda/matchers/active_model/ensure_length_of_matcher.rb +198 -32
  74. data/lib/shoulda/matchers/active_model/errors.rb +5 -2
  75. data/lib/shoulda/matchers/active_model/exception_message_finder.rb +1 -1
  76. data/lib/shoulda/matchers/active_model/have_secure_password_matcher.rb +29 -8
  77. data/lib/shoulda/matchers/active_model/helpers.rb +20 -8
  78. data/lib/shoulda/matchers/active_model/numericality_matchers.rb +9 -0
  79. data/lib/shoulda/matchers/active_model/numericality_matchers/comparison_matcher.rb +4 -6
  80. data/lib/shoulda/matchers/active_model/numericality_matchers/even_number_matcher.rb +4 -3
  81. data/lib/shoulda/matchers/active_model/numericality_matchers/numeric_type_matcher.rb +3 -2
  82. data/lib/shoulda/matchers/active_model/numericality_matchers/odd_number_matcher.rb +4 -3
  83. data/lib/shoulda/matchers/active_model/numericality_matchers/only_integer_matcher.rb +4 -3
  84. data/lib/shoulda/matchers/active_model/validate_absence_of_matcher.rb +52 -14
  85. data/lib/shoulda/matchers/active_model/validate_acceptance_of_matcher.rb +51 -13
  86. data/lib/shoulda/matchers/active_model/validate_confirmation_of_matcher.rb +53 -7
  87. data/lib/shoulda/matchers/active_model/validate_numericality_of_matcher.rb +275 -19
  88. data/lib/shoulda/matchers/active_model/validate_presence_of_matcher.rb +84 -14
  89. data/lib/shoulda/matchers/active_model/validate_uniqueness_of_matcher.rb +170 -41
  90. data/lib/shoulda/matchers/active_model/validation_matcher.rb +20 -15
  91. data/lib/shoulda/matchers/active_model/validation_message_finder.rb +1 -2
  92. data/lib/shoulda/matchers/active_record.rb +1 -12
  93. data/lib/shoulda/matchers/active_record/accept_nested_attributes_for_matcher.rb +89 -15
  94. data/lib/shoulda/matchers/active_record/association_matcher.rb +726 -70
  95. data/lib/shoulda/matchers/active_record/association_matchers.rb +9 -0
  96. data/lib/shoulda/matchers/active_record/association_matchers/counter_cache_matcher.rb +4 -3
  97. data/lib/shoulda/matchers/active_record/association_matchers/dependent_matcher.rb +4 -3
  98. data/lib/shoulda/matchers/active_record/association_matchers/inverse_of_matcher.rb +4 -3
  99. data/lib/shoulda/matchers/active_record/association_matchers/model_reflection.rb +2 -1
  100. data/lib/shoulda/matchers/active_record/association_matchers/model_reflector.rb +4 -3
  101. data/lib/shoulda/matchers/active_record/association_matchers/option_verifier.rb +4 -5
  102. data/lib/shoulda/matchers/active_record/association_matchers/order_matcher.rb +4 -3
  103. data/lib/shoulda/matchers/active_record/association_matchers/source_matcher.rb +4 -3
  104. data/lib/shoulda/matchers/active_record/association_matchers/through_matcher.rb +4 -3
  105. data/lib/shoulda/matchers/active_record/have_db_column_matcher.rb +79 -15
  106. data/lib/shoulda/matchers/active_record/have_db_index_matcher.rb +64 -15
  107. data/lib/shoulda/matchers/active_record/have_readonly_attribute_matcher.rb +21 -7
  108. data/lib/shoulda/matchers/active_record/serialize_matcher.rb +85 -10
  109. data/lib/shoulda/matchers/assertion_error.rb +7 -1
  110. data/lib/shoulda/matchers/doublespeak.rb +2 -1
  111. data/lib/shoulda/matchers/doublespeak/double.rb +3 -1
  112. data/lib/shoulda/matchers/doublespeak/double_collection.rb +2 -1
  113. data/lib/shoulda/matchers/doublespeak/double_implementation_registry.rb +1 -0
  114. data/lib/shoulda/matchers/doublespeak/object_double.rb +2 -1
  115. data/lib/shoulda/matchers/doublespeak/proxy_implementation.rb +2 -1
  116. data/lib/shoulda/matchers/doublespeak/structs.rb +2 -0
  117. data/lib/shoulda/matchers/doublespeak/stub_implementation.rb +2 -1
  118. data/lib/shoulda/matchers/doublespeak/world.rb +3 -4
  119. data/lib/shoulda/matchers/error.rb +1 -0
  120. data/lib/shoulda/matchers/independent/delegate_matcher.rb +108 -20
  121. data/lib/shoulda/matchers/independent/delegate_matcher/stubbed_target.rb +4 -3
  122. data/lib/shoulda/matchers/integrations/nunit_test_case_detection.rb +3 -0
  123. data/lib/shoulda/matchers/rails_shim.rb +3 -2
  124. data/lib/shoulda/matchers/version.rb +2 -1
  125. data/lib/shoulda/matchers/warn.rb +1 -0
  126. data/script/SUPPORTED_VERSIONS +1 -0
  127. data/script/install_gems_in_all_appraisals +14 -0
  128. data/script/run_all_tests +14 -0
  129. data/shoulda-matchers.gemspec +0 -10
  130. data/spec/report_warnings.rb +7 -0
  131. data/spec/shoulda/matchers/action_controller/route_matcher_spec.rb +1 -1
  132. data/spec/shoulda/matchers/action_controller/strong_parameters_matcher_spec.rb +9 -0
  133. data/spec/shoulda/matchers/active_model/validate_uniqueness_of_matcher_spec.rb +0 -36
  134. data/spec/shoulda/matchers/active_model/validation_message_finder_spec.rb +2 -2
  135. data/spec/shoulda/matchers/doublespeak/double_spec.rb +1 -1
  136. data/spec/shoulda/matchers/doublespeak/world_spec.rb +11 -29
  137. data/spec/shoulda/matchers/doublespeak_spec.rb +3 -3
  138. data/spec/spec_helper.rb +17 -0
  139. data/spec/support/class_builder.rb +4 -0
  140. data/spec/support/test_application.rb +1 -1
  141. data/spec/warnings_spy.rb +64 -0
  142. data/spec/warnings_spy/filesystem.rb +45 -0
  143. data/spec/warnings_spy/partitioner.rb +29 -0
  144. data/spec/warnings_spy/reader.rb +64 -0
  145. data/spec/warnings_spy/reporter.rb +87 -0
  146. metadata +49 -134
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../
3
3
  specs:
4
- shoulda-matchers (2.6.1)
4
+ shoulda-matchers (2.6.2)
5
5
  activesupport (>= 3.0.0)
6
6
 
7
7
  GEM
@@ -35,6 +35,7 @@ GEM
35
35
  activesupport (= 3.1.11)
36
36
  activesupport (3.1.11)
37
37
  multi_json (~> 1.0)
38
+ ansi (1.4.3)
38
39
  appraisal (1.0.0.beta2)
39
40
  bundler
40
41
  rake
@@ -51,6 +52,13 @@ GEM
51
52
  childprocess (0.3.9)
52
53
  ffi (~> 1.0, >= 1.0.11)
53
54
  coderay (1.1.0)
55
+ coffee-rails (3.1.1)
56
+ coffee-script (>= 2.2.0)
57
+ railties (~> 3.1.0)
58
+ coffee-script (2.2.0)
59
+ coffee-script-source
60
+ execjs
61
+ coffee-script-source (1.7.0)
54
62
  cucumber (1.2.3)
55
63
  builder (>= 2.1.2)
56
64
  diff-lcs (>= 1.1.3)
@@ -58,6 +66,7 @@ GEM
58
66
  multi_json (~> 1.3)
59
67
  diff-lcs (1.2.1)
60
68
  erubis (2.7.0)
69
+ execjs (2.0.2)
61
70
  ffi (1.4.0)
62
71
  gherkin (2.11.6)
63
72
  json (>= 1.7.6)
@@ -78,10 +87,14 @@ GEM
78
87
  metaclass (~> 0.0.1)
79
88
  multi_json (1.7.1)
80
89
  polyglot (0.3.3)
90
+ posix-spawn (0.3.8)
81
91
  pry (0.9.12.6)
82
92
  coderay (~> 1.0)
83
93
  method_source (~> 0.8)
84
94
  slop (~> 3.4)
95
+ pygments.rb (0.6.0)
96
+ posix-spawn (~> 0.3.6)
97
+ yajl-ruby (~> 1.1.0)
85
98
  rack (1.3.10)
86
99
  rack-cache (1.2)
87
100
  rack (>= 0.4)
@@ -109,6 +122,7 @@ GEM
109
122
  rake (10.0.3)
110
123
  rdoc (3.12.2)
111
124
  json (~> 1.4)
125
+ redcarpet (3.1.2)
112
126
  rspec-core (2.13.1)
113
127
  rspec-expectations (2.13.0)
114
128
  diff-lcs (>= 1.1.3, < 2.0)
@@ -142,7 +156,15 @@ GEM
142
156
  treetop (1.4.12)
143
157
  polyglot
144
158
  polyglot (>= 0.3.1)
159
+ turn (0.8.3)
160
+ ansi
145
161
  tzinfo (0.3.37)
162
+ uglifier (2.2.1)
163
+ execjs (>= 0.3.0)
164
+ multi_json (~> 1.0, >= 1.0.2)
165
+ watchr (0.7)
166
+ yajl-ruby (1.1.0)
167
+ yard (0.8.7.3)
146
168
 
147
169
  PLATFORMS
148
170
  ruby
@@ -155,17 +177,24 @@ DEPENDENCIES
155
177
  bcrypt-ruby (~> 3.0.0)
156
178
  bourne (~> 1.3)
157
179
  bundler (~> 1.1)
180
+ coffee-rails (~> 3.1.1)
158
181
  cucumber (~> 1.1)
159
182
  jdbc-sqlite3
160
183
  jquery-rails
161
184
  jruby-openssl
162
185
  pry
186
+ pygments.rb
163
187
  rails (~> 3.1.8)
164
188
  rake (>= 0.9.2)
189
+ redcarpet
165
190
  rspec-rails (>= 2.13.1, < 3)
166
- sass-rails
191
+ sass-rails (~> 3.1.5)
167
192
  shoulda-context (~> 1.2.0)
168
193
  shoulda-matchers!
169
194
  sqlite3
170
195
  strong_parameters
171
196
  therubyrhino
197
+ turn (~> 0.8.3)
198
+ uglifier (>= 1.0.3)
199
+ watchr
200
+ yard
@@ -0,0 +1,33 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "appraisal", "~> 1.0.0.beta2"
6
+ gem "aruba"
7
+ gem "bourne", "~> 1.3"
8
+ gem "bundler", "~> 1.1"
9
+ gem "cucumber", "~> 1.1"
10
+ gem "pry"
11
+ gem "rake", ">= 0.9.2"
12
+ gem "rspec-rails", ">= 2.13.1", "< 3"
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 "rails", "~> 3.1.8"
26
+ gem "bcrypt-ruby", "~> 3.0.0"
27
+ gem "jquery-rails"
28
+ gem "sass-rails", "~> 3.1.5"
29
+ gem "coffee-rails", "~> 3.1.1"
30
+ gem "uglifier", ">= 1.0.3"
31
+ gem "turn", "0.8.2"
32
+
33
+ gemspec :path=>".././"
@@ -0,0 +1,203 @@
1
+ PATH
2
+ remote: .././
3
+ specs:
4
+ shoulda-matchers (2.6.2)
5
+ activesupport (>= 3.0.0)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actionmailer (3.1.11)
11
+ actionpack (= 3.1.11)
12
+ mail (~> 2.3.3)
13
+ actionpack (3.1.11)
14
+ activemodel (= 3.1.11)
15
+ activesupport (= 3.1.11)
16
+ builder (~> 3.0.0)
17
+ erubis (~> 2.7.0)
18
+ i18n (~> 0.6)
19
+ rack (~> 1.3.6)
20
+ rack-cache (~> 1.2)
21
+ rack-mount (~> 0.8.2)
22
+ rack-test (~> 0.6.1)
23
+ sprockets (~> 2.0.4)
24
+ activemodel (3.1.11)
25
+ activesupport (= 3.1.11)
26
+ builder (~> 3.0.0)
27
+ i18n (~> 0.6)
28
+ activerecord (3.1.11)
29
+ activemodel (= 3.1.11)
30
+ activesupport (= 3.1.11)
31
+ arel (~> 2.2.3)
32
+ tzinfo (~> 0.3.29)
33
+ activeresource (3.1.11)
34
+ activemodel (= 3.1.11)
35
+ activesupport (= 3.1.11)
36
+ activesupport (3.1.11)
37
+ multi_json (~> 1.0)
38
+ ansi (1.4.3)
39
+ appraisal (1.0.0.beta2)
40
+ bundler
41
+ rake
42
+ thor (>= 0.14.0)
43
+ arel (2.2.3)
44
+ aruba (0.5.3)
45
+ childprocess (>= 0.3.6)
46
+ cucumber (>= 1.1.1)
47
+ rspec-expectations (>= 2.7.0)
48
+ bcrypt-ruby (3.0.1)
49
+ bourne (1.5.0)
50
+ mocha (>= 0.13.2, < 0.15)
51
+ builder (3.0.4)
52
+ childprocess (0.3.9)
53
+ ffi (~> 1.0, >= 1.0.11)
54
+ coderay (1.1.0)
55
+ coffee-rails (3.1.1)
56
+ coffee-script (>= 2.2.0)
57
+ railties (~> 3.1.0)
58
+ coffee-script (2.2.0)
59
+ coffee-script-source
60
+ execjs
61
+ coffee-script-source (1.7.0)
62
+ cucumber (1.3.10)
63
+ builder (>= 2.1.2)
64
+ diff-lcs (>= 1.1.3)
65
+ gherkin (~> 2.12)
66
+ multi_json (>= 1.7.5, < 2.0)
67
+ multi_test (>= 0.0.2)
68
+ diff-lcs (1.2.5)
69
+ erubis (2.7.0)
70
+ execjs (2.0.2)
71
+ ffi (1.9.3)
72
+ gherkin (2.12.2)
73
+ multi_json (~> 1.3)
74
+ hike (1.2.3)
75
+ i18n (0.6.9)
76
+ jquery-rails (2.2.1)
77
+ railties (>= 3.0, < 5.0)
78
+ thor (>= 0.14, < 2.0)
79
+ json (1.8.1)
80
+ mail (2.3.3)
81
+ i18n (>= 0.4.0)
82
+ mime-types (~> 1.16)
83
+ treetop (~> 1.4.8)
84
+ metaclass (0.0.1)
85
+ method_source (0.8.2)
86
+ mime-types (1.25.1)
87
+ mocha (0.14.0)
88
+ metaclass (~> 0.0.1)
89
+ multi_json (1.8.4)
90
+ multi_test (0.0.3)
91
+ polyglot (0.3.3)
92
+ posix-spawn (0.3.8)
93
+ pry (0.9.12.6)
94
+ coderay (~> 1.0)
95
+ method_source (~> 0.8)
96
+ slop (~> 3.4)
97
+ pygments.rb (0.6.0)
98
+ posix-spawn (~> 0.3.6)
99
+ yajl-ruby (~> 1.1.0)
100
+ rack (1.3.10)
101
+ rack-cache (1.2)
102
+ rack (>= 0.4)
103
+ rack-mount (0.8.3)
104
+ rack (>= 1.0.0)
105
+ rack-ssl (1.3.3)
106
+ rack
107
+ rack-test (0.6.2)
108
+ rack (>= 1.0)
109
+ rails (3.1.11)
110
+ actionmailer (= 3.1.11)
111
+ actionpack (= 3.1.11)
112
+ activerecord (= 3.1.11)
113
+ activeresource (= 3.1.11)
114
+ activesupport (= 3.1.11)
115
+ bundler (~> 1.0)
116
+ railties (= 3.1.11)
117
+ railties (3.1.11)
118
+ actionpack (= 3.1.11)
119
+ activesupport (= 3.1.11)
120
+ rack-ssl (~> 1.3.2)
121
+ rake (>= 0.8.7)
122
+ rdoc (~> 3.4)
123
+ thor (~> 0.14.6)
124
+ rake (10.1.1)
125
+ rdoc (3.12.2)
126
+ json (~> 1.4)
127
+ redcarpet (3.1.2)
128
+ rspec-core (2.14.7)
129
+ rspec-expectations (2.14.4)
130
+ diff-lcs (>= 1.1.3, < 2.0)
131
+ rspec-mocks (2.14.4)
132
+ rspec-rails (2.14.1)
133
+ actionpack (>= 3.0)
134
+ activemodel (>= 3.0)
135
+ activesupport (>= 3.0)
136
+ railties (>= 3.0)
137
+ rspec-core (~> 2.14.0)
138
+ rspec-expectations (~> 2.14.0)
139
+ rspec-mocks (~> 2.14.0)
140
+ sass (3.2.12)
141
+ sass-rails (3.1.6)
142
+ actionpack (~> 3.1.0)
143
+ railties (~> 3.1.0)
144
+ sass (>= 3.1.10)
145
+ tilt (~> 1.3.2)
146
+ shoulda-context (1.2.0)
147
+ slop (3.4.7)
148
+ sprockets (2.0.4)
149
+ hike (~> 1.2)
150
+ rack (~> 1.0)
151
+ tilt (~> 1.1, != 1.3.0)
152
+ sqlite3 (1.3.8)
153
+ strong_parameters (0.2.0)
154
+ actionpack (~> 3.0)
155
+ activemodel (~> 3.0)
156
+ railties (~> 3.0)
157
+ thor (0.14.6)
158
+ tilt (1.3.6)
159
+ treetop (1.4.15)
160
+ polyglot
161
+ polyglot (>= 0.3.1)
162
+ turn (0.8.2)
163
+ ansi (>= 1.2.2)
164
+ tzinfo (0.3.38)
165
+ uglifier (2.5.0)
166
+ execjs (>= 0.3.0)
167
+ json (>= 1.8.0)
168
+ watchr (0.7)
169
+ yajl-ruby (1.1.0)
170
+ yard (0.8.7.3)
171
+
172
+ PLATFORMS
173
+ ruby
174
+
175
+ DEPENDENCIES
176
+ activerecord-jdbc-adapter
177
+ activerecord-jdbcsqlite3-adapter
178
+ appraisal (~> 1.0.0.beta2)
179
+ aruba
180
+ bcrypt-ruby (~> 3.0.0)
181
+ bourne (~> 1.3)
182
+ bundler (~> 1.1)
183
+ coffee-rails (~> 3.1.1)
184
+ cucumber (~> 1.1)
185
+ jdbc-sqlite3
186
+ jquery-rails
187
+ jruby-openssl
188
+ pry
189
+ pygments.rb
190
+ rails (~> 3.1.8)
191
+ rake (>= 0.9.2)
192
+ redcarpet
193
+ rspec-rails (>= 2.13.1, < 3)
194
+ sass-rails (~> 3.1.5)
195
+ shoulda-context (~> 1.2.0)
196
+ shoulda-matchers!
197
+ sqlite3
198
+ strong_parameters
199
+ therubyrhino
200
+ turn (= 0.8.2)
201
+ uglifier (>= 1.0.3)
202
+ watchr
203
+ yard
data/gemfiles/3.2.gemfile CHANGED
@@ -2,6 +2,18 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
+ gem "appraisal", "~> 1.0.0.beta2"
6
+ gem "aruba"
7
+ gem "bourne", "~> 1.3"
8
+ gem "bundler", "~> 1.1"
9
+ gem "cucumber", "~> 1.1"
10
+ gem "pry"
11
+ gem "rake", ">= 0.9.2"
12
+ gem "rspec-rails", ">= 2.13.1", "< 3"
13
+ gem "yard"
14
+ gem "redcarpet"
15
+ gem "pygments.rb"
16
+ gem "watchr"
5
17
  gem "shoulda-context", "~> 1.2.0"
6
18
  gem "sqlite3", :platform=>:ruby
7
19
  gem "activerecord-jdbc-adapter", :platform=>:jruby
@@ -9,10 +21,14 @@ gem "activerecord-jdbcsqlite3-adapter", :platform=>:jruby
9
21
  gem "jdbc-sqlite3", :platform=>:jruby
10
22
  gem "jruby-openssl", :platform=>:jruby
11
23
  gem "therubyrhino", :platform=>:jruby
24
+ gem "strong_parameters"
12
25
  gem "rails", "~> 3.2.13"
13
26
  gem "bcrypt-ruby", "~> 3.0.0"
14
27
  gem "jquery-rails"
15
- gem "sass-rails"
16
- gem "strong_parameters"
28
+ gem "sass-rails", "~> 3.2.3"
29
+ gem "coffee-rails", "~> 3.2.1"
30
+ gem "uglifier", ">= 1.0.3"
31
+ gem "spring"
32
+ gem "spring-commands-rspec"
17
33
 
18
34
  gemspec :path=>".././"
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../
3
3
  specs:
4
- shoulda-matchers (2.6.1)
4
+ shoulda-matchers (2.6.2)
5
5
  activesupport (>= 3.0.0)
6
6
 
7
7
  GEM
@@ -50,6 +50,13 @@ GEM
50
50
  childprocess (0.3.9)
51
51
  ffi (~> 1.0, >= 1.0.11)
52
52
  coderay (1.1.0)
53
+ coffee-rails (3.2.2)
54
+ coffee-script (>= 2.2.0)
55
+ railties (~> 3.2.0)
56
+ coffee-script (2.2.0)
57
+ coffee-script-source
58
+ execjs
59
+ coffee-script-source (1.7.0)
53
60
  cucumber (1.2.3)
54
61
  builder (>= 2.1.2)
55
62
  diff-lcs (>= 1.1.3)
@@ -57,6 +64,7 @@ GEM
57
64
  multi_json (~> 1.3)
58
65
  diff-lcs (1.2.1)
59
66
  erubis (2.7.0)
67
+ execjs (2.0.2)
60
68
  ffi (1.4.0)
61
69
  gherkin (2.11.6)
62
70
  json (>= 1.7.6)
@@ -78,10 +86,14 @@ GEM
78
86
  metaclass (~> 0.0.1)
79
87
  multi_json (1.7.1)
80
88
  polyglot (0.3.3)
89
+ posix-spawn (0.3.8)
81
90
  pry (0.9.12.6)
82
91
  coderay (~> 1.0)
83
92
  method_source (~> 0.8)
84
93
  slop (~> 3.4)
94
+ pygments.rb (0.6.0)
95
+ posix-spawn (~> 0.3.6)
96
+ yajl-ruby (~> 1.1.0)
85
97
  rack (1.4.5)
86
98
  rack-cache (1.2)
87
99
  rack (>= 0.4)
@@ -107,6 +119,7 @@ GEM
107
119
  rake (10.1.1)
108
120
  rdoc (3.12.2)
109
121
  json (~> 1.4)
122
+ redcarpet (3.1.2)
110
123
  rspec-core (2.13.1)
111
124
  rspec-expectations (2.13.0)
112
125
  diff-lcs (>= 1.1.3, < 2.0)
@@ -125,6 +138,9 @@ GEM
125
138
  tilt (~> 1.3)
126
139
  shoulda-context (1.2.0)
127
140
  slop (3.4.7)
141
+ spring (1.1.3)
142
+ spring-commands-rspec (1.0.2)
143
+ spring (>= 0.9.1)
128
144
  sprockets (2.2.2)
129
145
  hike (~> 1.2)
130
146
  multi_json (~> 1.0)
@@ -141,6 +157,12 @@ GEM
141
157
  polyglot
142
158
  polyglot (>= 0.3.1)
143
159
  tzinfo (0.3.37)
160
+ uglifier (2.2.1)
161
+ execjs (>= 0.3.0)
162
+ multi_json (~> 1.0, >= 1.0.2)
163
+ watchr (0.7)
164
+ yajl-ruby (1.1.0)
165
+ yard (0.8.7.3)
144
166
 
145
167
  PLATFORMS
146
168
  ruby
@@ -153,17 +175,25 @@ DEPENDENCIES
153
175
  bcrypt-ruby (~> 3.0.0)
154
176
  bourne (~> 1.3)
155
177
  bundler (~> 1.1)
178
+ coffee-rails (~> 3.2.1)
156
179
  cucumber (~> 1.1)
157
180
  jdbc-sqlite3
158
181
  jquery-rails
159
182
  jruby-openssl
160
183
  pry
184
+ pygments.rb
161
185
  rails (~> 3.2.13)
162
186
  rake (>= 0.9.2)
187
+ redcarpet
163
188
  rspec-rails (>= 2.13.1, < 3)
164
- sass-rails
189
+ sass-rails (~> 3.2.3)
165
190
  shoulda-context (~> 1.2.0)
166
191
  shoulda-matchers!
192
+ spring
193
+ spring-commands-rspec
167
194
  sqlite3
168
195
  strong_parameters
169
196
  therubyrhino
197
+ uglifier (>= 1.0.3)
198
+ watchr
199
+ yard