refinerycms-testing 0.9.9.17 → 0.9.9.18

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.
@@ -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.17}
5
+ s.version = %q{0.9.9.18}
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-15}
8
+ s.date = %q{2011-04-16}
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.17'
17
+ s.add_dependency 'refinerycms-core', '= 0.9.9.18'
18
18
  # RSpec
19
19
  s.add_dependency 'rspec-rails', '~> 2.5'
20
20
 
@@ -40,8 +40,6 @@ 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',
45
43
  'features',
46
44
  'features/step_definitions',
47
45
  '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.17
5
+ version: 0.9.9.18
6
6
  platform: ruby
7
7
  authors:
8
8
  - Philip Arndt
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-04-15 00:00:00 Z
13
+ date: 2011-04-16 00:00:00 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: refinerycms-core
@@ -20,7 +20,7 @@ dependencies:
20
20
  requirements:
21
21
  - - "="
22
22
  - !ruby/object:Gem::Version
23
- version: 0.9.9.17
23
+ version: 0.9.9.18
24
24
  type: :runtime
25
25
  version_requirements: *id001
26
26
  - !ruby/object:Gem::Dependency
@@ -177,7 +177,6 @@ extra_rdoc_files: []
177
177
  files:
178
178
  - .rspec
179
179
  - config/cucumber.yml
180
- - config/initializers/accessible_attributes.rb
181
180
  - features/step_definitions/web_steps.rb
182
181
  - features/support/env.rb
183
182
  - features/support/factories.rb
@@ -1,6 +0,0 @@
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