moped-cleaner 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 89f568678bec4d2e588766105c547dc854328bcd
4
+ data.tar.gz: 00ea140d96ee7f9d8b1ba017547d52531fc7d3b0
5
+ SHA512:
6
+ metadata.gz: dc0a036bcd9be5e6553f60671660dd6e8989190f91630968d15cf066eb1ed6cefcd7779974d4f2524a0f65c0b504838322d009e0b27d14d238dbdaece2b306eb
7
+ data.tar.gz: 87de0bdd0400058d7e4c5bab9f3eb23a4a2005297d14ec08590372fc71e0fc1ed06c3c021f14c72776827e5070f12138dcc576a2fd545aa053e19ab2d29d036b
data/.travis.yml ADDED
@@ -0,0 +1,11 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.9.3
4
+ - 2.0.0
5
+ branches:
6
+ only:
7
+ - master
8
+ notifications:
9
+ email:
10
+ recipients:
11
+ - brian.nort@gmail.com
data/Gemfile ADDED
@@ -0,0 +1,8 @@
1
+ source 'http://rubygems.org'
2
+
3
+ group :development, :test do
4
+ gem 'jeweler'
5
+ gem 'psych'
6
+ gem 'rake'
7
+ end
8
+
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2014 Brian Norton
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
6
+ this software and associated documentation files (the "Software"), to deal in
7
+ the Software without restriction, including without limitation the rights to
8
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9
+ the Software, and to permit persons to whom the Software is furnished to do so,
10
+ subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,18 @@
1
+ moped-cleaner
2
+ =============
3
+
4
+ Clean only models inserted when running tests with database interaction via moped
5
+
6
+ == Contributing to moped-cleaner
7
+
8
+ * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
9
+ * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
10
+ * Fork the project.
11
+ * Start a feature or bugfix branch.
12
+ * Commit and push until you are happy with your contribution.
13
+ * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
14
+
15
+ == Copyright
16
+
17
+ Copyright (c) 2014 Brian Norton. See LICENSE for
18
+ further details.
data/Rakefile ADDED
@@ -0,0 +1,24 @@
1
+ # encoding: UTF-8
2
+ require 'rubygems'
3
+ require 'bundler'
4
+
5
+ begin
6
+ Bundler.setup(:default, :development, :test)
7
+ rescue Bundler::BundlerError => e
8
+ $stderr.puts e.message
9
+ $stderr.puts 'Run `bundle install` to install missing gems'
10
+ exit e.status_code
11
+ end
12
+
13
+ require 'jeweler'
14
+ Jeweler::Tasks.new do |gem|
15
+ gem.name = 'moped-cleaner'
16
+ gem.homepage = 'http://github.com/bnorton/moped-cleaner'
17
+ gem.license = 'MIT'
18
+ gem.summary = 'Clean only models inserted when running tests with database interaction via moped'
19
+ gem.description = 'Typically one performs a database truncate (remove object from all collections) between tests but moped-cleaner only removes objects from collections that were inserted into.'
20
+ gem.email = 'brian.nort@gmail.com'
21
+ gem.authors = %w(bnorton)
22
+ end
23
+
24
+ Jeweler::RubygemsDotOrgTasks.new
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.1.3
@@ -0,0 +1,25 @@
1
+ module Moped
2
+ module Cleaner
3
+ def self.included(base)
4
+ require File.expand_path('../overrides', __FILE__)
5
+
6
+ $models = {}
7
+
8
+ ##
9
+ # Remove models from every collection that was touched
10
+ #
11
+ block = ->(*) {
12
+ $models.keys.each do |m|
13
+ next if /system\.indexes/i === m
14
+
15
+ $models[m].find.remove_all
16
+ end
17
+
18
+ $models = {}
19
+ }
20
+
21
+ base.before(:each, &block)
22
+ base.after(:suite, &block)
23
+ end
24
+ end
25
+ end
data/lib/overrides.rb ADDED
@@ -0,0 +1,11 @@
1
+ module Moped
2
+ class Collection
3
+ def insert_with_logging(*args)
4
+ $models[self.name] ||= self
5
+
6
+ insert_without_logging(*args)
7
+ end
8
+
9
+ alias_method_chain :insert, :logging
10
+ end
11
+ end
metadata ADDED
@@ -0,0 +1,98 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: moped-cleaner
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.3
5
+ platform: ruby
6
+ authors:
7
+ - bnorton
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-01-14 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: jeweler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: psych
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ description: Typically one performs a database truncate (remove object from all collections)
56
+ between tests but moped-cleaner only removes objects from collections that were
57
+ inserted into.
58
+ email: brian.nort@gmail.com
59
+ executables: []
60
+ extensions: []
61
+ extra_rdoc_files:
62
+ - LICENSE
63
+ - README.md
64
+ files:
65
+ - ".travis.yml"
66
+ - Gemfile
67
+ - LICENSE
68
+ - README.md
69
+ - Rakefile
70
+ - VERSION
71
+ - lib/moped-cleaner.rb
72
+ - lib/overrides.rb
73
+ homepage: http://github.com/bnorton/moped-cleaner
74
+ licenses:
75
+ - MIT
76
+ metadata: {}
77
+ post_install_message:
78
+ rdoc_options: []
79
+ require_paths:
80
+ - lib
81
+ required_ruby_version: !ruby/object:Gem::Requirement
82
+ requirements:
83
+ - - ">="
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ required_rubygems_version: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ">="
89
+ - !ruby/object:Gem::Version
90
+ version: '0'
91
+ requirements: []
92
+ rubyforge_project:
93
+ rubygems_version: 2.0.4
94
+ signing_key:
95
+ specification_version: 4
96
+ summary: Clean only models inserted when running tests with database interaction via
97
+ moped
98
+ test_files: []