refinerycms-testing 0.9.9.16 → 0.9.9.17

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.
@@ -0,0 +1,6 @@
1
+ # Call attr_accessible for all Models in Testing.
2
+ # So all mass assignment access to Models in tests fails if attr_accessible
3
+ # is not correct set
4
+ class ActiveRecord::Base
5
+ attr_accessible
6
+ end
@@ -2,10 +2,10 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{refinerycms-testing}
5
- s.version = %q{0.9.9.16}
5
+ s.version = %q{0.9.9.17}
6
6
  s.summary = %q{Testing plugin for Refinery CMS}
7
7
  s.description = %q{This plugin adds the ability to run cucumber and rspec against the RefineryCMS gem while inside a RefineryCMS project}
8
- s.date = %q{2011-04-07}
8
+ s.date = %q{2011-04-15}
9
9
  s.email = %q{info@refinerycms.com}
10
10
  s.homepage = %q{http://refinerycms.com}
11
11
  s.rubyforge_project = %q{refinerycms}
@@ -14,7 +14,7 @@ Gem::Specification.new do |s|
14
14
  s.require_paths = %w(lib)
15
15
  s.executables = %w()
16
16
 
17
- s.add_dependency 'refinerycms-core', '= 0.9.9.16'
17
+ s.add_dependency 'refinerycms-core', '= 0.9.9.17'
18
18
  # RSpec
19
19
  s.add_dependency 'rspec-rails', '~> 2.5'
20
20
 
@@ -40,6 +40,8 @@ Gem::Specification.new do |s|
40
40
  '.rspec',
41
41
  'config',
42
42
  'config/cucumber.yml',
43
+ 'config/initializers',
44
+ 'config/initializers/accessible_attributes.rb',
43
45
  'features',
44
46
  'features/step_definitions',
45
47
  'features/step_definitions/web_steps.rb',
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: refinerycms-testing
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.9.9.16
5
+ version: 0.9.9.17
6
6
  platform: ruby
7
7
  authors:
8
8
  - Philip Arndt
@@ -10,8 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-04-07 00:00:00 +12:00
14
- default_executable:
13
+ date: 2011-04-15 00:00:00 Z
15
14
  dependencies:
16
15
  - !ruby/object:Gem::Dependency
17
16
  name: refinerycms-core
@@ -21,7 +20,7 @@ dependencies:
21
20
  requirements:
22
21
  - - "="
23
22
  - !ruby/object:Gem::Version
24
- version: 0.9.9.16
23
+ version: 0.9.9.17
25
24
  type: :runtime
26
25
  version_requirements: *id001
27
26
  - !ruby/object:Gem::Dependency
@@ -178,6 +177,7 @@ extra_rdoc_files: []
178
177
  files:
179
178
  - .rspec
180
179
  - config/cucumber.yml
180
+ - config/initializers/accessible_attributes.rb
181
181
  - features/step_definitions/web_steps.rb
182
182
  - features/support/env.rb
183
183
  - features/support/factories.rb
@@ -191,7 +191,6 @@ files:
191
191
  - refinerycms-testing.gemspec
192
192
  - spec/rcov.opts
193
193
  - spec/spec_helper.rb
194
- has_rdoc: true
195
194
  homepage: http://refinerycms.com
196
195
  licenses:
197
196
  - MIT
@@ -215,7 +214,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
215
214
  requirements: []
216
215
 
217
216
  rubyforge_project: refinerycms
218
- rubygems_version: 1.6.1
217
+ rubygems_version: 1.7.2
219
218
  signing_key:
220
219
  specification_version: 3
221
220
  summary: Testing plugin for Refinery CMS