mm-stripper 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/Rakefile +6 -12
  2. data/lib/mm-stripper.rb +3 -5
  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-stripper"
24
- s.version = "0.1.0"
18
+ s.version = "0.2.0"
25
19
  s.summary = "Tiny plugin for MongoMapper to strip whitespace from 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
 
42
36
  # If your tests use any gems, include them here
43
37
  s.add_development_dependency("rspec")
@@ -48,7 +42,7 @@ end
48
42
  # be automatically building a gem for this project. If you're not
49
43
  # using GitHub, edit as appropriate.
50
44
  #
51
- # To publish your gem online, install the 'gemcutter' gem; Read more
45
+ # To publish your gem online, install the 'gemcutter' gem; Read more
52
46
  # about that here: http://gemcutter.org/pages/gem_docs
53
47
  Rake::GemPackageTask.new(spec) do |pkg|
54
48
  pkg.gem_spec = spec
data/lib/mm-stripper.rb CHANGED
@@ -3,12 +3,10 @@ require 'mongo_mapper'
3
3
  module MongoMapper
4
4
  module Plugins
5
5
  module Stripper
6
- def self.included(model)
7
- model.plugin self
8
- end
6
+ extend ActiveSupport::Concern
9
7
 
10
- def self.configure(base)
11
- base.before_validation :strip_attributes
8
+ included do
9
+ before_validation :strip_attributes
12
10
  end
13
11
 
14
12
  module InstanceMethods
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mm-stripper
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
5
- prerelease: false
4
+ hash: 23
5
+ prerelease:
6
6
  segments:
7
7
  - 0
8
- - 1
8
+ - 2
9
9
  - 0
10
- version: 0.1.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-14 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
@@ -24,12 +24,14 @@ dependencies:
24
24
  requirement: &id001 !ruby/object:Gem::Requirement
25
25
  none: false
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 strip whitespace from strings before validation.