mm-multi-parameter-attributes 0.1.1 → 0.2.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.
data/Rakefile CHANGED
@@ -2,15 +2,9 @@ require "rubygems"
2
2
  require "rake/gempackagetask"
3
3
  require "rake/rdoctask"
4
4
 
5
- require "spec"
6
- require "spec/rake/spectask"
7
- Spec::Rake::SpecTask.new do |t|
8
- t.spec_opts = %w(--format specdoc --colour)
9
- t.libs = ["spec"]
10
- end
11
-
12
-
13
- task :default => ["spec"]
5
+ require 'rspec/core/rake_task'
6
+ RSpec::Core::RakeTask.new(:spec)
7
+ task :default => :spec
14
8
 
15
9
  # This builds the actual gem. For details of what all these options
16
10
  # mean, and other ones you can add, check the documentation here:
@@ -21,7 +15,7 @@ spec = Gem::Specification.new do |s|
21
15
 
22
16
  # Change these as appropriate
23
17
  s.name = "mm-multi-parameter-attributes"
24
- s.version = "0.1.1"
18
+ s.version = "0.2.0"
25
19
  s.summary = "Tiny plugin for MongoMapper to add multi-parameter attributes"
26
20
  s.author = "Richard Livsey"
27
21
  s.email = "richard@livsey.org"
@@ -37,7 +31,7 @@ spec = Gem::Specification.new do |s|
37
31
 
38
32
  # If you want to depend on other gems, add them here, along with any
39
33
  # relevant versions
40
- s.add_dependency("mongo_mapper")
34
+ s.add_dependency("mongo_mapper", ">= 0.9.0")
41
35
 
42
36
  # If your tests use any gems, include them here
43
37
  s.add_development_dependency("rspec")
@@ -3,9 +3,7 @@ require 'mongo_mapper'
3
3
  module MongoMapper
4
4
  module Plugins
5
5
  module MultiParameterAttributes
6
- def self.included(model)
7
- model.plugin self
8
- end
6
+ extend ActiveSupport::Concern
9
7
 
10
8
  module InstanceMethods
11
9
  def attributes=(new_attributes)
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mm-multi-parameter-attributes
3
3
  version: !ruby/object:Gem::Version
4
- hash: 25
5
- prerelease: false
4
+ hash: 23
5
+ prerelease:
6
6
  segments:
7
7
  - 0
8
- - 1
9
- - 1
10
- version: 0.1.1
8
+ - 2
9
+ - 0
10
+ version: 0.2.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - Richard Livsey
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-06-26 00:00:00 +01:00
18
+ date: 2011-03-09 00:00:00 +00:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -26,10 +26,12 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- hash: 3
29
+ hash: 59
30
30
  segments:
31
31
  - 0
32
- version: "0"
32
+ - 9
33
+ - 0
34
+ version: 0.9.0
33
35
  type: :runtime
34
36
  version_requirements: *id001
35
37
  - !ruby/object:Gem::Dependency
@@ -90,7 +92,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
90
92
  requirements: []
91
93
 
92
94
  rubyforge_project:
93
- rubygems_version: 1.3.7
95
+ rubygems_version: 1.4.1
94
96
  signing_key:
95
97
  specification_version: 3
96
98
  summary: Tiny plugin for MongoMapper to add multi-parameter attributes