mm-sanitize 0.1.4 → 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.
Files changed (3) hide show
  1. data/Rakefile +5 -11
  2. data/lib/mm-sanitize.rb +1 -3
  3. metadata +11 -9
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-sanitize"
24
- s.version = "0.1.4"
18
+ s.version = "0.2.0"
25
19
  s.summary = "Tiny plugin for MongoMapper to sanitize strings before validation."
26
20
  s.author = "Richard Livsey"
27
21
  s.email = "youremail@example.com"
@@ -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
  s.add_dependency("sanitize")
42
36
 
43
37
  # If your tests use any gems, include them here
@@ -4,9 +4,7 @@ require 'sanitize'
4
4
  module MongoMapper
5
5
  module Plugins
6
6
  module Sanitize
7
- def self.included(model)
8
- model.plugin self
9
- end
7
+ extend ActiveSupport::Concern
10
8
 
11
9
  module ClassMethods
12
10
  def sanitize(*args)
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mm-sanitize
3
3
  version: !ruby/object:Gem::Version
4
- hash: 19
5
- prerelease: false
4
+ hash: 23
5
+ prerelease:
6
6
  segments:
7
7
  - 0
8
- - 1
9
- - 4
10
- version: 0.1.4
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: 2011-03-02 00:00:00 +00: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
@@ -104,7 +106,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
104
106
  requirements: []
105
107
 
106
108
  rubyforge_project:
107
- rubygems_version: 1.3.7
109
+ rubygems_version: 1.4.1
108
110
  signing_key:
109
111
  specification_version: 3
110
112
  summary: Tiny plugin for MongoMapper to sanitize strings before validation.