-
Notifications
You must be signed in to change notification settings - Fork 5
/
mongomapper_ext.gemspec
116 lines (111 loc) · 3.69 KB
/
mongomapper_ext.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{mongomapper_ext}
s.version = "0.5.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["David A. Cuadrado"]
s.date = %q{2010-09-28}
s.description = %q{MongoMapper extensions}
s.email = %q{[email protected]}
s.extra_rdoc_files = [
"LICENSE",
"README.rdoc",
"TODO"
]
s.files = [
".document",
".gitignore",
"LICENSE",
"README.rdoc",
"Rakefile",
"VERSION",
"examples/filter.rb",
"examples/helper.rb",
"examples/i18n.rb",
"examples/slugizer.rb",
"examples/storage.rb",
"examples/tags.rb",
"examples/types.rb",
"examples/update.rb",
"lib/mongomapper_ext.rb",
"lib/mongomapper_ext/file.rb",
"lib/mongomapper_ext/file_list.rb",
"lib/mongomapper_ext/file_server.rb",
"lib/mongomapper_ext/filter.rb",
"lib/mongomapper_ext/js/filter.js",
"lib/mongomapper_ext/js/find_tags.js",
"lib/mongomapper_ext/js/tag_cloud.js",
"lib/mongomapper_ext/paginator.rb",
"lib/mongomapper_ext/slugizer.rb",
"lib/mongomapper_ext/storage.rb",
"lib/mongomapper_ext/tags.rb",
"lib/mongomapper_ext/types/open_struct.rb",
"lib/mongomapper_ext/types/timestamp.rb",
"lib/mongomapper_ext/types/translation.rb",
"lib/mongomapper_ext/update.rb",
"mongomapper_ext.gemspec",
"test/helper.rb",
"test/models.rb",
"test/support/custom_matchers.rb",
"test/test_filter.rb",
"test/test_slugizer.rb",
"test/test_storage.rb",
"test/test_tags.rb",
"test/test_update.rb",
"test/types/test_open_struct.rb",
"test/types/test_set.rb",
"test/types/test_timestamp.rb"
]
s.homepage = %q{http://github.com/dcu/mongomapper_ext}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.7}
s.summary = %q{MongoMapper extensions}
s.test_files = [
"test/test_slugizer.rb",
"test/test_filter.rb",
"test/test_tags.rb",
"test/test_storage.rb",
"test/test_update.rb",
"test/support/custom_matchers.rb",
"test/models.rb",
"test/helper.rb",
"test/types/test_open_struct.rb",
"test/types/test_timestamp.rb",
"test/types/test_set.rb",
"examples/types.rb",
"examples/filter.rb",
"examples/update.rb",
"examples/tags.rb",
"examples/storage.rb",
"examples/helper.rb",
"examples/i18n.rb",
"examples/slugizer.rb"
]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<mongo_mapper>, ["~> 0.8"])
s.add_runtime_dependency(%q<uuidtools>, [">= 2.0.0"])
s.add_development_dependency(%q<shoulda>, [">= 2.10.2"])
s.add_development_dependency(%q<jnunemaker-matchy>, ["= 0.4.0"])
s.add_development_dependency(%q<mocha>, [">= 0.9.4"])
else
s.add_dependency(%q<mongo_mapper>, ["~> 0.8"])
s.add_dependency(%q<uuidtools>, [">= 2.0.0"])
s.add_dependency(%q<shoulda>, [">= 2.10.2"])
s.add_dependency(%q<jnunemaker-matchy>, ["= 0.4.0"])
s.add_dependency(%q<mocha>, [">= 0.9.4"])
end
else
s.add_dependency(%q<mongo_mapper>, ["~> 0.8"])
s.add_dependency(%q<uuidtools>, [">= 2.0.0"])
s.add_dependency(%q<shoulda>, [">= 2.10.2"])
s.add_dependency(%q<jnunemaker-matchy>, ["= 0.4.0"])
s.add_dependency(%q<mocha>, [">= 0.9.4"])
end
end