mongoid_taggable 0.1.0 → 0.1.1
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 +1 -1
- data/lib/mongoid_taggable.rb +1 -0
- data/mongoid_taggable.gemspec +54 -0
- metadata +12 -5
data/Rakefile
CHANGED
|
@@ -6,7 +6,7 @@ begin
|
|
|
6
6
|
require 'jeweler'
|
|
7
7
|
Jeweler::Tasks.new do |gemspec|
|
|
8
8
|
gemspec.name = "mongoid_taggable"
|
|
9
|
-
gemspec.version = "0.1.
|
|
9
|
+
gemspec.version = "0.1.1"
|
|
10
10
|
gemspec.summary = "Mongoid taggable behaviour"
|
|
11
11
|
gemspec.description = "Mongoid Taggable provides some helpers to create taggable documents."
|
|
12
12
|
gemspec.email = "wilkerlucio@gmail.com"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require File.join(File.dirname(__FILE__), 'mongoid/taggable')
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{mongoid_taggable}
|
|
8
|
+
s.version = "0.1.1"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Wilker L\303\272cio", "Kris Kowalik"]
|
|
12
|
+
s.date = %q{2010-07-26}
|
|
13
|
+
s.description = %q{Mongoid Taggable provides some helpers to create taggable documents.}
|
|
14
|
+
s.email = %q{wilkerlucio@gmail.com}
|
|
15
|
+
s.extra_rdoc_files = [
|
|
16
|
+
"LICENSE",
|
|
17
|
+
"README.textile"
|
|
18
|
+
]
|
|
19
|
+
s.files = [
|
|
20
|
+
"LICENSE",
|
|
21
|
+
"README.textile",
|
|
22
|
+
"Rakefile",
|
|
23
|
+
"init.rb",
|
|
24
|
+
"install.rb",
|
|
25
|
+
"lib/mongoid/taggable.rb",
|
|
26
|
+
"lib/mongoid_taggable.rb",
|
|
27
|
+
"mongoid_taggable.gemspec",
|
|
28
|
+
"rails/init.rb",
|
|
29
|
+
"spec/mongoid/taggable_spec.rb",
|
|
30
|
+
"spec/spec_helper.rb",
|
|
31
|
+
"tasks/mongoid_taggable_tasks.rake",
|
|
32
|
+
"uninstall.rb"
|
|
33
|
+
]
|
|
34
|
+
s.homepage = %q{http://github.com/kriss/mongo_taggable}
|
|
35
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
36
|
+
s.require_paths = ["lib"]
|
|
37
|
+
s.rubygems_version = %q{1.3.7}
|
|
38
|
+
s.summary = %q{Mongoid taggable behaviour}
|
|
39
|
+
s.test_files = [
|
|
40
|
+
"spec/mongoid/taggable_spec.rb",
|
|
41
|
+
"spec/spec_helper.rb"
|
|
42
|
+
]
|
|
43
|
+
|
|
44
|
+
if s.respond_to? :specification_version then
|
|
45
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
46
|
+
s.specification_version = 3
|
|
47
|
+
|
|
48
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
49
|
+
else
|
|
50
|
+
end
|
|
51
|
+
else
|
|
52
|
+
end
|
|
53
|
+
end
|
|
54
|
+
|
metadata
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mongoid_taggable
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
+
hash: 25
|
|
4
5
|
prerelease: false
|
|
5
6
|
segments:
|
|
6
7
|
- 0
|
|
7
8
|
- 1
|
|
8
|
-
-
|
|
9
|
-
version: 0.1.
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.1.1
|
|
10
11
|
platform: ruby
|
|
11
12
|
authors:
|
|
12
13
|
- "Wilker L\xC3\xBAcio"
|
|
@@ -15,7 +16,7 @@ autorequire:
|
|
|
15
16
|
bindir: bin
|
|
16
17
|
cert_chain: []
|
|
17
18
|
|
|
18
|
-
date: 2010-07-
|
|
19
|
+
date: 2010-07-26 00:00:00 -03:00
|
|
19
20
|
default_executable:
|
|
20
21
|
dependencies: []
|
|
21
22
|
|
|
@@ -35,6 +36,8 @@ files:
|
|
|
35
36
|
- init.rb
|
|
36
37
|
- install.rb
|
|
37
38
|
- lib/mongoid/taggable.rb
|
|
39
|
+
- lib/mongoid_taggable.rb
|
|
40
|
+
- mongoid_taggable.gemspec
|
|
38
41
|
- rails/init.rb
|
|
39
42
|
- spec/mongoid/taggable_spec.rb
|
|
40
43
|
- spec/spec_helper.rb
|
|
@@ -50,26 +53,30 @@ rdoc_options:
|
|
|
50
53
|
require_paths:
|
|
51
54
|
- lib
|
|
52
55
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
56
|
+
none: false
|
|
53
57
|
requirements:
|
|
54
58
|
- - ">="
|
|
55
59
|
- !ruby/object:Gem::Version
|
|
60
|
+
hash: 3
|
|
56
61
|
segments:
|
|
57
62
|
- 0
|
|
58
63
|
version: "0"
|
|
59
64
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
65
|
+
none: false
|
|
60
66
|
requirements:
|
|
61
67
|
- - ">="
|
|
62
68
|
- !ruby/object:Gem::Version
|
|
69
|
+
hash: 3
|
|
63
70
|
segments:
|
|
64
71
|
- 0
|
|
65
72
|
version: "0"
|
|
66
73
|
requirements: []
|
|
67
74
|
|
|
68
75
|
rubyforge_project:
|
|
69
|
-
rubygems_version: 1.3.
|
|
76
|
+
rubygems_version: 1.3.7
|
|
70
77
|
signing_key:
|
|
71
78
|
specification_version: 3
|
|
72
79
|
summary: Mongoid taggable behaviour
|
|
73
80
|
test_files:
|
|
74
|
-
- spec/spec_helper.rb
|
|
75
81
|
- spec/mongoid/taggable_spec.rb
|
|
82
|
+
- spec/spec_helper.rb
|