scoped_search_paranoid 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -21,7 +21,7 @@ Jeweler::Tasks.new do |gem|
21
21
  gem.authors = ["Stevo"]
22
22
  # Include your dependencies below. Runtime dependencies are required when using your gem,
23
23
  # and development dependencies are only needed for development (ie running rake tasks, tests, etc)
24
- gem.add_runtime_dependency 'scoped_search', '> 0.7.1'
24
+ gem.add_runtime_dependency 'scoped-search', '> 0.7.1'
25
25
  # gem.add_development_dependency 'rspec', '> 1.2.3'
26
26
  end
27
27
  Jeweler::RubygemsDotOrgTasks.new
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.1
1
+ 0.0.2
@@ -0,0 +1,66 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{scoped_search_paranoid}
8
+ s.version = "0.0.2"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Stevo"]
12
+ s.date = %q{2011-01-10}
13
+ s.description = %q{With ssp you no longer need to care about if deleted or archived entries are displayed in your listings. You can still use automatically generated scopes to access these records. oh.. and destroy method is overwritten as well :)}
14
+ s.email = %q{blazejek@gmail.com}
15
+ s.extra_rdoc_files = [
16
+ "LICENSE.txt",
17
+ "README.rdoc"
18
+ ]
19
+ s.files = [
20
+ ".document",
21
+ "Gemfile",
22
+ "LICENSE.txt",
23
+ "README.rdoc",
24
+ "Rakefile",
25
+ "VERSION",
26
+ "lib/scoped_search_paranoid.rb",
27
+ "scoped_search_paranoid.gemspec",
28
+ "test/helper.rb",
29
+ "test/test_scoped_search_paranoid.rb"
30
+ ]
31
+ s.homepage = %q{http://github.com/stevo/scoped_search_paranoid}
32
+ s.licenses = ["MIT"]
33
+ s.require_paths = ["lib"]
34
+ s.rubygems_version = %q{1.3.7}
35
+ s.summary = %q{Handles deleting and archiving of records in conjunction with scoped_search}
36
+ s.test_files = [
37
+ "test/helper.rb",
38
+ "test/test_scoped_search_paranoid.rb"
39
+ ]
40
+
41
+ if s.respond_to? :specification_version then
42
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
43
+ s.specification_version = 3
44
+
45
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
46
+ s.add_development_dependency(%q<shoulda>, [">= 0"])
47
+ s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
48
+ s.add_development_dependency(%q<jeweler>, ["~> 1.5.2"])
49
+ s.add_development_dependency(%q<rcov>, [">= 0"])
50
+ s.add_runtime_dependency(%q<scoped-search>, ["> 0.7.1"])
51
+ else
52
+ s.add_dependency(%q<shoulda>, [">= 0"])
53
+ s.add_dependency(%q<bundler>, ["~> 1.0.0"])
54
+ s.add_dependency(%q<jeweler>, ["~> 1.5.2"])
55
+ s.add_dependency(%q<rcov>, [">= 0"])
56
+ s.add_dependency(%q<scoped-search>, ["> 0.7.1"])
57
+ end
58
+ else
59
+ s.add_dependency(%q<shoulda>, [">= 0"])
60
+ s.add_dependency(%q<bundler>, ["~> 1.0.0"])
61
+ s.add_dependency(%q<jeweler>, ["~> 1.5.2"])
62
+ s.add_dependency(%q<rcov>, [">= 0"])
63
+ s.add_dependency(%q<scoped-search>, ["> 0.7.1"])
64
+ end
65
+ end
66
+
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: scoped_search_paranoid
3
3
  version: !ruby/object:Gem::Version
4
- hash: 29
4
+ hash: 27
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 1
10
- version: 0.0.1
9
+ - 2
10
+ version: 0.0.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Stevo
@@ -93,7 +93,7 @@ dependencies:
93
93
  requirement: *id005
94
94
  prerelease: false
95
95
  type: :runtime
96
- name: scoped_search
96
+ name: scoped-search
97
97
  description: With ssp you no longer need to care about if deleted or archived entries are displayed in your listings. You can still use automatically generated scopes to access these records. oh.. and destroy method is overwritten as well :)
98
98
  email: blazejek@gmail.com
99
99
  executables: []
@@ -111,6 +111,7 @@ files:
111
111
  - Rakefile
112
112
  - VERSION
113
113
  - lib/scoped_search_paranoid.rb
114
+ - scoped_search_paranoid.gemspec
114
115
  - test/helper.rb
115
116
  - test/test_scoped_search_paranoid.rb
116
117
  has_rdoc: true