mcmire-shoulda-matchers 2.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (164) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +12 -0
  3. data/.travis.yml +32 -0
  4. data/.yardopts +7 -0
  5. data/Appraisals +45 -0
  6. data/CONTRIBUTING.md +41 -0
  7. data/Gemfile +31 -0
  8. data/Gemfile.lock +166 -0
  9. data/MIT-LICENSE +22 -0
  10. data/NEWS.md +299 -0
  11. data/README.md +163 -0
  12. data/Rakefile +116 -0
  13. data/doc_config/gh-pages/index.html.erb +9 -0
  14. data/doc_config/yard/setup.rb +22 -0
  15. data/doc_config/yard/templates/default/fulldoc/html/css/bootstrap.css +5967 -0
  16. data/doc_config/yard/templates/default/fulldoc/html/css/full_list.css +12 -0
  17. data/doc_config/yard/templates/default/fulldoc/html/css/global.css +45 -0
  18. data/doc_config/yard/templates/default/fulldoc/html/css/solarized.css +69 -0
  19. data/doc_config/yard/templates/default/fulldoc/html/css/style.css +283 -0
  20. data/doc_config/yard/templates/default/fulldoc/html/full_list.erb +32 -0
  21. data/doc_config/yard/templates/default/fulldoc/html/full_list_class.erb +1 -0
  22. data/doc_config/yard/templates/default/fulldoc/html/full_list_method.erb +8 -0
  23. data/doc_config/yard/templates/default/fulldoc/html/js/app.js +300 -0
  24. data/doc_config/yard/templates/default/fulldoc/html/js/full_list.js +1 -0
  25. data/doc_config/yard/templates/default/fulldoc/html/js/jquery.stickyheaders.js +289 -0
  26. data/doc_config/yard/templates/default/fulldoc/html/js/underscore.min.js +6 -0
  27. data/doc_config/yard/templates/default/fulldoc/html/setup.rb +8 -0
  28. data/doc_config/yard/templates/default/layout/html/breadcrumb.erb +14 -0
  29. data/doc_config/yard/templates/default/layout/html/fonts.erb +1 -0
  30. data/doc_config/yard/templates/default/layout/html/layout.erb +23 -0
  31. data/doc_config/yard/templates/default/layout/html/search.erb +13 -0
  32. data/doc_config/yard/templates/default/layout/html/setup.rb +8 -0
  33. data/doc_config/yard/templates/default/method_details/html/source.erb +10 -0
  34. data/doc_config/yard/templates/default/module/html/box_info.erb +31 -0
  35. data/features/rails_integration.feature +113 -0
  36. data/features/step_definitions/rails_steps.rb +162 -0
  37. data/features/support/env.rb +5 -0
  38. data/gemfiles/3.0.gemfile +24 -0
  39. data/gemfiles/3.0.gemfile.lock +150 -0
  40. data/gemfiles/3.1.gemfile +27 -0
  41. data/gemfiles/3.1.gemfile.lock +173 -0
  42. data/gemfiles/3.2.gemfile +27 -0
  43. data/gemfiles/3.2.gemfile.lock +171 -0
  44. data/gemfiles/4.0.0.gemfile +28 -0
  45. data/gemfiles/4.0.0.gemfile.lock +172 -0
  46. data/gemfiles/4.0.1.gemfile +28 -0
  47. data/gemfiles/4.0.1.gemfile.lock +172 -0
  48. data/lib/shoulda-matchers.rb +1 -0
  49. data/lib/shoulda/matchers.rb +11 -0
  50. data/lib/shoulda/matchers/action_controller.rb +17 -0
  51. data/lib/shoulda/matchers/action_controller/filter_param_matcher.rb +64 -0
  52. data/lib/shoulda/matchers/action_controller/redirect_to_matcher.rb +97 -0
  53. data/lib/shoulda/matchers/action_controller/render_template_matcher.rb +81 -0
  54. data/lib/shoulda/matchers/action_controller/render_with_layout_matcher.rb +117 -0
  55. data/lib/shoulda/matchers/action_controller/rescue_from_matcher.rb +114 -0
  56. data/lib/shoulda/matchers/action_controller/respond_with_matcher.rb +154 -0
  57. data/lib/shoulda/matchers/action_controller/route_matcher.rb +116 -0
  58. data/lib/shoulda/matchers/action_controller/route_params.rb +48 -0
  59. data/lib/shoulda/matchers/action_controller/set_session_matcher.rb +164 -0
  60. data/lib/shoulda/matchers/action_controller/set_the_flash_matcher.rb +296 -0
  61. data/lib/shoulda/matchers/active_model.rb +30 -0
  62. data/lib/shoulda/matchers/active_model/allow_mass_assignment_of_matcher.rb +167 -0
  63. data/lib/shoulda/matchers/active_model/allow_value_matcher.rb +314 -0
  64. data/lib/shoulda/matchers/active_model/disallow_value_matcher.rb +46 -0
  65. data/lib/shoulda/matchers/active_model/ensure_exclusion_of_matcher.rb +160 -0
  66. data/lib/shoulda/matchers/active_model/ensure_inclusion_of_matcher.rb +417 -0
  67. data/lib/shoulda/matchers/active_model/ensure_length_of_matcher.rb +337 -0
  68. data/lib/shoulda/matchers/active_model/errors.rb +10 -0
  69. data/lib/shoulda/matchers/active_model/exception_message_finder.rb +58 -0
  70. data/lib/shoulda/matchers/active_model/have_secure_password_matcher.rb +92 -0
  71. data/lib/shoulda/matchers/active_model/helpers.rb +46 -0
  72. data/lib/shoulda/matchers/active_model/numericality_matchers.rb +9 -0
  73. data/lib/shoulda/matchers/active_model/numericality_matchers/comparison_matcher.rb +75 -0
  74. data/lib/shoulda/matchers/active_model/numericality_matchers/even_number_matcher.rb +27 -0
  75. data/lib/shoulda/matchers/active_model/numericality_matchers/numeric_type_matcher.rb +41 -0
  76. data/lib/shoulda/matchers/active_model/numericality_matchers/odd_number_matcher.rb +27 -0
  77. data/lib/shoulda/matchers/active_model/numericality_matchers/only_integer_matcher.rb +26 -0
  78. data/lib/shoulda/matchers/active_model/validate_absence_of_matcher.rb +112 -0
  79. data/lib/shoulda/matchers/active_model/validate_acceptance_of_matcher.rb +77 -0
  80. data/lib/shoulda/matchers/active_model/validate_confirmation_of_matcher.rb +121 -0
  81. data/lib/shoulda/matchers/active_model/validate_numericality_of_matcher.rb +380 -0
  82. data/lib/shoulda/matchers/active_model/validate_presence_of_matcher.rb +89 -0
  83. data/lib/shoulda/matchers/active_model/validate_uniqueness_of_matcher.rb +372 -0
  84. data/lib/shoulda/matchers/active_model/validation_matcher.rb +97 -0
  85. data/lib/shoulda/matchers/active_model/validation_message_finder.rb +69 -0
  86. data/lib/shoulda/matchers/active_record.rb +22 -0
  87. data/lib/shoulda/matchers/active_record/accept_nested_attributes_for_matcher.rb +204 -0
  88. data/lib/shoulda/matchers/active_record/association_matcher.rb +901 -0
  89. data/lib/shoulda/matchers/active_record/association_matchers.rb +9 -0
  90. data/lib/shoulda/matchers/active_record/association_matchers/counter_cache_matcher.rb +41 -0
  91. data/lib/shoulda/matchers/active_record/association_matchers/dependent_matcher.rb +41 -0
  92. data/lib/shoulda/matchers/active_record/association_matchers/model_reflection.rb +81 -0
  93. data/lib/shoulda/matchers/active_record/association_matchers/model_reflector.rb +65 -0
  94. data/lib/shoulda/matchers/active_record/association_matchers/option_verifier.rb +94 -0
  95. data/lib/shoulda/matchers/active_record/association_matchers/order_matcher.rb +41 -0
  96. data/lib/shoulda/matchers/active_record/association_matchers/source_matcher.rb +41 -0
  97. data/lib/shoulda/matchers/active_record/association_matchers/through_matcher.rb +63 -0
  98. data/lib/shoulda/matchers/active_record/have_db_column_matcher.rb +261 -0
  99. data/lib/shoulda/matchers/active_record/have_db_index_matcher.rb +149 -0
  100. data/lib/shoulda/matchers/active_record/have_readonly_attribute_matcher.rb +72 -0
  101. data/lib/shoulda/matchers/active_record/serialize_matcher.rb +181 -0
  102. data/lib/shoulda/matchers/assertion_error.rb +19 -0
  103. data/lib/shoulda/matchers/error.rb +6 -0
  104. data/lib/shoulda/matchers/integrations/rspec.rb +20 -0
  105. data/lib/shoulda/matchers/integrations/test_unit.rb +30 -0
  106. data/lib/shoulda/matchers/rails_shim.rb +50 -0
  107. data/lib/shoulda/matchers/version.rb +6 -0
  108. data/lib/shoulda/matchers/warn.rb +8 -0
  109. data/shoulda-matchers.gemspec +23 -0
  110. data/spec/shoulda/matchers/action_controller/filter_param_matcher_spec.rb +22 -0
  111. data/spec/shoulda/matchers/action_controller/redirect_to_matcher_spec.rb +42 -0
  112. data/spec/shoulda/matchers/action_controller/render_template_matcher_spec.rb +78 -0
  113. data/spec/shoulda/matchers/action_controller/render_with_layout_matcher_spec.rb +63 -0
  114. data/spec/shoulda/matchers/action_controller/rescue_from_matcher_spec.rb +63 -0
  115. data/spec/shoulda/matchers/action_controller/respond_with_matcher_spec.rb +31 -0
  116. data/spec/shoulda/matchers/action_controller/route_matcher_spec.rb +70 -0
  117. data/spec/shoulda/matchers/action_controller/route_params_spec.rb +30 -0
  118. data/spec/shoulda/matchers/action_controller/set_session_matcher_spec.rb +51 -0
  119. data/spec/shoulda/matchers/action_controller/set_the_flash_matcher_spec.rb +153 -0
  120. data/spec/shoulda/matchers/active_model/allow_mass_assignment_of_matcher_spec.rb +111 -0
  121. data/spec/shoulda/matchers/active_model/allow_value_matcher_spec.rb +170 -0
  122. data/spec/shoulda/matchers/active_model/disallow_value_matcher_spec.rb +81 -0
  123. data/spec/shoulda/matchers/active_model/ensure_exclusion_of_matcher_spec.rb +95 -0
  124. data/spec/shoulda/matchers/active_model/ensure_inclusion_of_matcher_spec.rb +320 -0
  125. data/spec/shoulda/matchers/active_model/ensure_length_of_matcher_spec.rb +166 -0
  126. data/spec/shoulda/matchers/active_model/exception_message_finder_spec.rb +111 -0
  127. data/spec/shoulda/matchers/active_model/have_secure_password_matcher_spec.rb +20 -0
  128. data/spec/shoulda/matchers/active_model/helpers_spec.rb +158 -0
  129. data/spec/shoulda/matchers/active_model/numericality_matchers/comparison_matcher_spec.rb +169 -0
  130. data/spec/shoulda/matchers/active_model/numericality_matchers/even_number_matcher_spec.rb +59 -0
  131. data/spec/shoulda/matchers/active_model/numericality_matchers/odd_number_matcher_spec.rb +59 -0
  132. data/spec/shoulda/matchers/active_model/numericality_matchers/only_integer_matcher_spec.rb +57 -0
  133. data/spec/shoulda/matchers/active_model/validate_absence_of_matcher_spec.rb +139 -0
  134. data/spec/shoulda/matchers/active_model/validate_acceptance_of_matcher_spec.rb +41 -0
  135. data/spec/shoulda/matchers/active_model/validate_confirmation_of_matcher_spec.rb +47 -0
  136. data/spec/shoulda/matchers/active_model/validate_numericality_of_matcher_spec.rb +331 -0
  137. data/spec/shoulda/matchers/active_model/validate_presence_of_matcher_spec.rb +180 -0
  138. data/spec/shoulda/matchers/active_model/validate_uniqueness_of_matcher_spec.rb +398 -0
  139. data/spec/shoulda/matchers/active_model/validation_message_finder_spec.rb +127 -0
  140. data/spec/shoulda/matchers/active_record/accept_nested_attributes_for_matcher_spec.rb +107 -0
  141. data/spec/shoulda/matchers/active_record/association_matcher_spec.rb +860 -0
  142. data/spec/shoulda/matchers/active_record/association_matchers/model_reflection_spec.rb +247 -0
  143. data/spec/shoulda/matchers/active_record/have_db_column_matcher_spec.rb +111 -0
  144. data/spec/shoulda/matchers/active_record/have_db_index_matcher_spec.rb +78 -0
  145. data/spec/shoulda/matchers/active_record/have_readonly_attributes_matcher_spec.rb +41 -0
  146. data/spec/shoulda/matchers/active_record/serialize_matcher_spec.rb +86 -0
  147. data/spec/spec_helper.rb +26 -0
  148. data/spec/support/active_model_versions.rb +13 -0
  149. data/spec/support/active_resource_builder.rb +29 -0
  150. data/spec/support/activemodel_helpers.rb +19 -0
  151. data/spec/support/capture_helpers.rb +19 -0
  152. data/spec/support/class_builder.rb +42 -0
  153. data/spec/support/controller_builder.rb +74 -0
  154. data/spec/support/fail_with_message_including_matcher.rb +33 -0
  155. data/spec/support/fail_with_message_matcher.rb +32 -0
  156. data/spec/support/i18n_faker.rb +10 -0
  157. data/spec/support/mailer_builder.rb +10 -0
  158. data/spec/support/model_builder.rb +81 -0
  159. data/spec/support/rails_versions.rb +18 -0
  160. data/spec/support/shared_examples/numerical_submatcher.rb +19 -0
  161. data/spec/support/shared_examples/numerical_type_submatcher.rb +17 -0
  162. data/spec/support/test_application.rb +120 -0
  163. data/yard.watchr +5 -0
  164. metadata +281 -0
@@ -0,0 +1,27 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "appraisal", "~> 0.4"
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 "shoulda-context", "~> 1.1.2"
15
+ gem "sqlite3", :platform=>:ruby
16
+ gem "activerecord-jdbc-adapter", :platform=>:jruby
17
+ gem "activerecord-jdbcsqlite3-adapter", :platform=>:jruby
18
+ gem "jdbc-sqlite3", :platform=>:jruby
19
+ gem "jruby-openssl", :platform=>:jruby
20
+ gem "therubyrhino", :platform=>:jruby
21
+ gem "rails", "~> 3.1.8"
22
+ gem "bcrypt-ruby", "~> 3.0.0"
23
+ gem "jquery-rails"
24
+ gem "sass-rails"
25
+ gem "strong_parameters"
26
+
27
+ gemspec :path=>".././"
@@ -0,0 +1,173 @@
1
+ PATH
2
+ remote: ../
3
+ specs:
4
+ shoulda-matchers (2.5.0)
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
+ appraisal (1.0.0.beta2)
39
+ bundler
40
+ rake
41
+ thor (>= 0.14.0)
42
+ arel (2.2.3)
43
+ aruba (0.5.1)
44
+ childprocess (~> 0.3.6)
45
+ cucumber (>= 1.1.1)
46
+ rspec-expectations (>= 2.7.0)
47
+ bcrypt-ruby (3.0.1)
48
+ bourne (1.4.0)
49
+ mocha (~> 0.13.2)
50
+ builder (3.0.4)
51
+ childprocess (0.3.9)
52
+ ffi (~> 1.0, >= 1.0.11)
53
+ coderay (1.1.0)
54
+ cucumber (1.2.3)
55
+ builder (>= 2.1.2)
56
+ diff-lcs (>= 1.1.3)
57
+ gherkin (~> 2.11.6)
58
+ multi_json (~> 1.3)
59
+ diff-lcs (1.2.1)
60
+ erubis (2.7.0)
61
+ ffi (1.4.0)
62
+ gherkin (2.11.6)
63
+ json (>= 1.7.6)
64
+ hike (1.2.1)
65
+ i18n (0.6.4)
66
+ jquery-rails (2.2.1)
67
+ railties (>= 3.0, < 5.0)
68
+ thor (>= 0.14, < 2.0)
69
+ json (1.7.7)
70
+ mail (2.3.3)
71
+ i18n (>= 0.4.0)
72
+ mime-types (~> 1.16)
73
+ treetop (~> 1.4.8)
74
+ metaclass (0.0.1)
75
+ method_source (0.8.2)
76
+ mime-types (1.21)
77
+ mocha (0.13.3)
78
+ metaclass (~> 0.0.1)
79
+ multi_json (1.7.1)
80
+ polyglot (0.3.3)
81
+ pry (0.9.12.6)
82
+ coderay (~> 1.0)
83
+ method_source (~> 0.8)
84
+ slop (~> 3.4)
85
+ rack (1.3.10)
86
+ rack-cache (1.2)
87
+ rack (>= 0.4)
88
+ rack-mount (0.8.3)
89
+ rack (>= 1.0.0)
90
+ rack-ssl (1.3.3)
91
+ rack
92
+ rack-test (0.6.2)
93
+ rack (>= 1.0)
94
+ rails (3.1.11)
95
+ actionmailer (= 3.1.11)
96
+ actionpack (= 3.1.11)
97
+ activerecord (= 3.1.11)
98
+ activeresource (= 3.1.11)
99
+ activesupport (= 3.1.11)
100
+ bundler (~> 1.0)
101
+ railties (= 3.1.11)
102
+ railties (3.1.11)
103
+ actionpack (= 3.1.11)
104
+ activesupport (= 3.1.11)
105
+ rack-ssl (~> 1.3.2)
106
+ rake (>= 0.8.7)
107
+ rdoc (~> 3.4)
108
+ thor (~> 0.14.6)
109
+ rake (10.0.3)
110
+ rdoc (3.12.2)
111
+ json (~> 1.4)
112
+ rspec-core (2.13.1)
113
+ rspec-expectations (2.13.0)
114
+ diff-lcs (>= 1.1.3, < 2.0)
115
+ rspec-mocks (2.13.1)
116
+ rspec-rails (2.13.2)
117
+ actionpack (>= 3.0)
118
+ activesupport (>= 3.0)
119
+ railties (>= 3.0)
120
+ rspec-core (~> 2.13.0)
121
+ rspec-expectations (~> 2.13.0)
122
+ rspec-mocks (~> 2.13.0)
123
+ sass (3.2.7)
124
+ sass-rails (3.1.6)
125
+ actionpack (~> 3.1.0)
126
+ railties (~> 3.1.0)
127
+ sass (>= 3.1.10)
128
+ tilt (~> 1.3.2)
129
+ shoulda-context (1.1.4)
130
+ slop (3.4.7)
131
+ sprockets (2.0.4)
132
+ hike (~> 1.2)
133
+ rack (~> 1.0)
134
+ tilt (~> 1.1, != 1.3.0)
135
+ sqlite3 (1.3.7)
136
+ strong_parameters (0.2.0)
137
+ actionpack (~> 3.0)
138
+ activemodel (~> 3.0)
139
+ railties (~> 3.0)
140
+ thor (0.14.6)
141
+ tilt (1.3.6)
142
+ treetop (1.4.12)
143
+ polyglot
144
+ polyglot (>= 0.3.1)
145
+ tzinfo (0.3.37)
146
+ yard (0.8.7.3)
147
+
148
+ PLATFORMS
149
+ ruby
150
+
151
+ DEPENDENCIES
152
+ activerecord-jdbc-adapter
153
+ activerecord-jdbcsqlite3-adapter
154
+ appraisal (~> 1.0.0.beta2)
155
+ aruba
156
+ bcrypt-ruby (~> 3.0.0)
157
+ bourne (~> 1.3)
158
+ bundler (~> 1.1)
159
+ cucumber (~> 1.1)
160
+ jdbc-sqlite3
161
+ jquery-rails
162
+ jruby-openssl
163
+ pry
164
+ rails (~> 3.1.8)
165
+ rake (>= 0.9.2)
166
+ rspec-rails (>= 2.13.1, < 3)
167
+ sass-rails
168
+ shoulda-context (~> 1.1.2)
169
+ shoulda-matchers!
170
+ sqlite3
171
+ strong_parameters
172
+ therubyrhino
173
+ yard
@@ -0,0 +1,27 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "appraisal", "~> 0.4"
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 "shoulda-context", "~> 1.1.2"
15
+ gem "sqlite3", :platform=>:ruby
16
+ gem "activerecord-jdbc-adapter", :platform=>:jruby
17
+ gem "activerecord-jdbcsqlite3-adapter", :platform=>:jruby
18
+ gem "jdbc-sqlite3", :platform=>:jruby
19
+ gem "jruby-openssl", :platform=>:jruby
20
+ gem "therubyrhino", :platform=>:jruby
21
+ gem "rails", "~> 3.2.13"
22
+ gem "bcrypt-ruby", "~> 3.0.0"
23
+ gem "jquery-rails"
24
+ gem "sass-rails"
25
+ gem "strong_parameters"
26
+
27
+ gemspec :path=>".././"
@@ -0,0 +1,171 @@
1
+ PATH
2
+ remote: ../
3
+ specs:
4
+ shoulda-matchers (2.5.0)
5
+ activesupport (>= 3.0.0)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actionmailer (3.2.13)
11
+ actionpack (= 3.2.13)
12
+ mail (~> 2.5.3)
13
+ actionpack (3.2.13)
14
+ activemodel (= 3.2.13)
15
+ activesupport (= 3.2.13)
16
+ builder (~> 3.0.0)
17
+ erubis (~> 2.7.0)
18
+ journey (~> 1.0.4)
19
+ rack (~> 1.4.5)
20
+ rack-cache (~> 1.2)
21
+ rack-test (~> 0.6.1)
22
+ sprockets (~> 2.2.1)
23
+ activemodel (3.2.13)
24
+ activesupport (= 3.2.13)
25
+ builder (~> 3.0.0)
26
+ activerecord (3.2.13)
27
+ activemodel (= 3.2.13)
28
+ activesupport (= 3.2.13)
29
+ arel (~> 3.0.2)
30
+ tzinfo (~> 0.3.29)
31
+ activeresource (3.2.13)
32
+ activemodel (= 3.2.13)
33
+ activesupport (= 3.2.13)
34
+ activesupport (3.2.13)
35
+ i18n (= 0.6.1)
36
+ multi_json (~> 1.0)
37
+ appraisal (1.0.0.beta2)
38
+ bundler
39
+ rake
40
+ thor (>= 0.14.0)
41
+ arel (3.0.2)
42
+ aruba (0.5.1)
43
+ childprocess (~> 0.3.6)
44
+ cucumber (>= 1.1.1)
45
+ rspec-expectations (>= 2.7.0)
46
+ bcrypt-ruby (3.0.1)
47
+ bourne (1.4.0)
48
+ mocha (~> 0.13.2)
49
+ builder (3.0.4)
50
+ childprocess (0.3.9)
51
+ ffi (~> 1.0, >= 1.0.11)
52
+ coderay (1.1.0)
53
+ cucumber (1.2.3)
54
+ builder (>= 2.1.2)
55
+ diff-lcs (>= 1.1.3)
56
+ gherkin (~> 2.11.6)
57
+ multi_json (~> 1.3)
58
+ diff-lcs (1.2.1)
59
+ erubis (2.7.0)
60
+ ffi (1.4.0)
61
+ gherkin (2.11.6)
62
+ json (>= 1.7.6)
63
+ hike (1.2.1)
64
+ i18n (0.6.1)
65
+ journey (1.0.4)
66
+ jquery-rails (2.2.1)
67
+ railties (>= 3.0, < 5.0)
68
+ thor (>= 0.14, < 2.0)
69
+ json (1.7.7)
70
+ mail (2.5.3)
71
+ i18n (>= 0.4.0)
72
+ mime-types (~> 1.16)
73
+ treetop (~> 1.4.8)
74
+ metaclass (0.0.1)
75
+ method_source (0.8.2)
76
+ mime-types (1.21)
77
+ mocha (0.13.3)
78
+ metaclass (~> 0.0.1)
79
+ multi_json (1.7.1)
80
+ polyglot (0.3.3)
81
+ pry (0.9.12.6)
82
+ coderay (~> 1.0)
83
+ method_source (~> 0.8)
84
+ slop (~> 3.4)
85
+ rack (1.4.5)
86
+ rack-cache (1.2)
87
+ rack (>= 0.4)
88
+ rack-ssl (1.3.3)
89
+ rack
90
+ rack-test (0.6.2)
91
+ rack (>= 1.0)
92
+ rails (3.2.13)
93
+ actionmailer (= 3.2.13)
94
+ actionpack (= 3.2.13)
95
+ activerecord (= 3.2.13)
96
+ activeresource (= 3.2.13)
97
+ activesupport (= 3.2.13)
98
+ bundler (~> 1.0)
99
+ railties (= 3.2.13)
100
+ railties (3.2.13)
101
+ actionpack (= 3.2.13)
102
+ activesupport (= 3.2.13)
103
+ rack-ssl (~> 1.3.2)
104
+ rake (>= 0.8.7)
105
+ rdoc (~> 3.4)
106
+ thor (>= 0.14.6, < 2.0)
107
+ rake (10.1.1)
108
+ rdoc (3.12.2)
109
+ json (~> 1.4)
110
+ rspec-core (2.13.1)
111
+ rspec-expectations (2.13.0)
112
+ diff-lcs (>= 1.1.3, < 2.0)
113
+ rspec-mocks (2.13.1)
114
+ rspec-rails (2.13.2)
115
+ actionpack (>= 3.0)
116
+ activesupport (>= 3.0)
117
+ railties (>= 3.0)
118
+ rspec-core (~> 2.13.0)
119
+ rspec-expectations (~> 2.13.0)
120
+ rspec-mocks (~> 2.13.0)
121
+ sass (3.2.7)
122
+ sass-rails (3.2.6)
123
+ railties (~> 3.2.0)
124
+ sass (>= 3.1.10)
125
+ tilt (~> 1.3)
126
+ shoulda-context (1.1.4)
127
+ slop (3.4.7)
128
+ sprockets (2.2.2)
129
+ hike (~> 1.2)
130
+ multi_json (~> 1.0)
131
+ rack (~> 1.0)
132
+ tilt (~> 1.1, != 1.3.0)
133
+ sqlite3 (1.3.7)
134
+ strong_parameters (0.2.0)
135
+ actionpack (~> 3.0)
136
+ activemodel (~> 3.0)
137
+ railties (~> 3.0)
138
+ thor (0.18.1)
139
+ tilt (1.3.6)
140
+ treetop (1.4.12)
141
+ polyglot
142
+ polyglot (>= 0.3.1)
143
+ tzinfo (0.3.37)
144
+ yard (0.8.7.3)
145
+
146
+ PLATFORMS
147
+ ruby
148
+
149
+ DEPENDENCIES
150
+ activerecord-jdbc-adapter
151
+ activerecord-jdbcsqlite3-adapter
152
+ appraisal (~> 1.0.0.beta2)
153
+ aruba
154
+ bcrypt-ruby (~> 3.0.0)
155
+ bourne (~> 1.3)
156
+ bundler (~> 1.1)
157
+ cucumber (~> 1.1)
158
+ jdbc-sqlite3
159
+ jquery-rails
160
+ jruby-openssl
161
+ pry
162
+ rails (~> 3.2.13)
163
+ rake (>= 0.9.2)
164
+ rspec-rails (>= 2.13.1, < 3)
165
+ sass-rails
166
+ shoulda-context (~> 1.1.2)
167
+ shoulda-matchers!
168
+ sqlite3
169
+ strong_parameters
170
+ therubyrhino
171
+ yard
@@ -0,0 +1,28 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "appraisal", "~> 0.4"
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 "shoulda-context", "~> 1.1.2"
15
+ gem "sqlite3", :platform=>:ruby
16
+ gem "activerecord-jdbc-adapter", :platform=>:jruby
17
+ gem "activerecord-jdbcsqlite3-adapter", :platform=>:jruby
18
+ gem "jdbc-sqlite3", :platform=>:jruby
19
+ gem "jruby-openssl", :platform=>:jruby
20
+ gem "therubyrhino", :platform=>:jruby
21
+ gem "jquery-rails"
22
+ gem "activeresource", "4.0.0"
23
+ gem "protected_attributes"
24
+ gem "rails", "4.0.0"
25
+ gem "sass-rails", "4.0.0"
26
+ gem "bcrypt-ruby", "~> 3.0.0"
27
+
28
+ gemspec :path=>".././"
@@ -0,0 +1,172 @@
1
+ PATH
2
+ remote: ../
3
+ specs:
4
+ shoulda-matchers (2.5.0)
5
+ activesupport (>= 3.0.0)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actionmailer (4.0.0)
11
+ actionpack (= 4.0.0)
12
+ mail (~> 2.5.3)
13
+ actionpack (4.0.0)
14
+ activesupport (= 4.0.0)
15
+ builder (~> 3.1.0)
16
+ erubis (~> 2.7.0)
17
+ rack (~> 1.5.2)
18
+ rack-test (~> 0.6.2)
19
+ activemodel (4.0.0)
20
+ activesupport (= 4.0.0)
21
+ builder (~> 3.1.0)
22
+ activerecord (4.0.0)
23
+ activemodel (= 4.0.0)
24
+ activerecord-deprecated_finders (~> 1.0.2)
25
+ activesupport (= 4.0.0)
26
+ arel (~> 4.0.0)
27
+ activerecord-deprecated_finders (1.0.3)
28
+ activeresource (4.0.0)
29
+ activemodel (~> 4.0)
30
+ activesupport (~> 4.0)
31
+ rails-observers (~> 0.1.1)
32
+ activesupport (4.0.0)
33
+ i18n (~> 0.6, >= 0.6.4)
34
+ minitest (~> 4.2)
35
+ multi_json (~> 1.3)
36
+ thread_safe (~> 0.1)
37
+ tzinfo (~> 0.3.37)
38
+ appraisal (1.0.0.beta2)
39
+ bundler
40
+ rake
41
+ thor (>= 0.14.0)
42
+ arel (4.0.1)
43
+ aruba (0.5.3)
44
+ childprocess (>= 0.3.6)
45
+ cucumber (>= 1.1.1)
46
+ rspec-expectations (>= 2.7.0)
47
+ atomic (1.1.14)
48
+ bcrypt-ruby (3.0.1)
49
+ bourne (1.5.0)
50
+ mocha (>= 0.13.2, < 0.15)
51
+ builder (3.1.4)
52
+ childprocess (0.3.9)
53
+ ffi (~> 1.0, >= 1.0.11)
54
+ coderay (1.1.0)
55
+ cucumber (1.3.10)
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.0.2)
61
+ diff-lcs (1.2.5)
62
+ erubis (2.7.0)
63
+ ffi (1.9.3)
64
+ gherkin (2.12.2)
65
+ multi_json (~> 1.3)
66
+ hike (1.2.3)
67
+ i18n (0.6.5)
68
+ jquery-rails (3.0.4)
69
+ railties (>= 3.0, < 5.0)
70
+ thor (>= 0.14, < 2.0)
71
+ mail (2.5.4)
72
+ mime-types (~> 1.16)
73
+ treetop (~> 1.4.8)
74
+ metaclass (0.0.1)
75
+ method_source (0.8.2)
76
+ mime-types (1.25.1)
77
+ minitest (4.7.5)
78
+ mocha (0.14.0)
79
+ metaclass (~> 0.0.1)
80
+ multi_json (1.8.2)
81
+ multi_test (0.0.2)
82
+ polyglot (0.3.3)
83
+ protected_attributes (1.0.3)
84
+ activemodel (>= 4.0.0, < 5.0)
85
+ pry (0.9.12.6)
86
+ coderay (~> 1.0)
87
+ method_source (~> 0.8)
88
+ slop (~> 3.4)
89
+ rack (1.5.2)
90
+ rack-test (0.6.2)
91
+ rack (>= 1.0)
92
+ rails (4.0.0)
93
+ actionmailer (= 4.0.0)
94
+ actionpack (= 4.0.0)
95
+ activerecord (= 4.0.0)
96
+ activesupport (= 4.0.0)
97
+ bundler (>= 1.3.0, < 2.0)
98
+ railties (= 4.0.0)
99
+ sprockets-rails (~> 2.0.0)
100
+ rails-observers (0.1.2)
101
+ activemodel (~> 4.0)
102
+ railties (4.0.0)
103
+ actionpack (= 4.0.0)
104
+ activesupport (= 4.0.0)
105
+ rake (>= 0.8.7)
106
+ thor (>= 0.18.1, < 2.0)
107
+ rake (10.1.1)
108
+ rspec-core (2.14.7)
109
+ rspec-expectations (2.14.4)
110
+ diff-lcs (>= 1.1.3, < 2.0)
111
+ rspec-mocks (2.14.4)
112
+ rspec-rails (2.14.0)
113
+ actionpack (>= 3.0)
114
+ activesupport (>= 3.0)
115
+ railties (>= 3.0)
116
+ rspec-core (~> 2.14.0)
117
+ rspec-expectations (~> 2.14.0)
118
+ rspec-mocks (~> 2.14.0)
119
+ sass (3.2.12)
120
+ sass-rails (4.0.0)
121
+ railties (>= 4.0.0.beta, < 5.0)
122
+ sass (>= 3.1.10)
123
+ sprockets-rails (~> 2.0.0)
124
+ shoulda-context (1.1.6)
125
+ slop (3.4.7)
126
+ sprockets (2.10.1)
127
+ hike (~> 1.2)
128
+ multi_json (~> 1.0)
129
+ rack (~> 1.0)
130
+ tilt (~> 1.1, != 1.3.0)
131
+ sprockets-rails (2.0.1)
132
+ actionpack (>= 3.0)
133
+ activesupport (>= 3.0)
134
+ sprockets (~> 2.8)
135
+ sqlite3 (1.3.8)
136
+ thor (0.18.1)
137
+ thread_safe (0.1.3)
138
+ atomic
139
+ tilt (1.4.1)
140
+ treetop (1.4.15)
141
+ polyglot
142
+ polyglot (>= 0.3.1)
143
+ tzinfo (0.3.38)
144
+ yard (0.8.7.3)
145
+
146
+ PLATFORMS
147
+ ruby
148
+
149
+ DEPENDENCIES
150
+ activerecord-jdbc-adapter
151
+ activerecord-jdbcsqlite3-adapter
152
+ activeresource (= 4.0.0)
153
+ appraisal (~> 1.0.0.beta2)
154
+ aruba
155
+ bcrypt-ruby (~> 3.0.0)
156
+ bourne (~> 1.3)
157
+ bundler (~> 1.1)
158
+ cucumber (~> 1.1)
159
+ jdbc-sqlite3
160
+ jquery-rails
161
+ jruby-openssl
162
+ protected_attributes
163
+ pry
164
+ rails (= 4.0.0)
165
+ rake (>= 0.9.2)
166
+ rspec-rails (>= 2.13.1, < 3)
167
+ sass-rails (= 4.0.0)
168
+ shoulda-context (~> 1.1.2)
169
+ shoulda-matchers!
170
+ sqlite3
171
+ therubyrhino
172
+ yard