forked from colibri-software/mongoid_taggable
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmongoid_taggable.gemspec
More file actions
23 lines (19 loc) · 870 Bytes
/
mongoid_taggable.gemspec
File metadata and controls
23 lines (19 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |g|
g.name = 'mongoid_taggable'
g.version = '1.1.5'
g.date = '2016-03-22'
g.description = %q{Mongoid Taggable provides some helpers to create taggable documents.}
g.summary = %q{Mongoid taggable behaviour}
g.authors = ['Wilker Lucio', 'Kris Kowalik', 'Adam St. John', 'Caleb Clark', 'Thomas R. Koll']
g.email = ['tomk32@tomk32.de']
g.homepage = 'http://github.com/tomk32/mongoid_taggable'
g.extra_rdoc_files = %w(LICENSE README.textile)
g.files = `git ls-files`.split($/)
g.test_files = g.files.grep(%r{^(test|spec|features)/})
g.require_paths = ['lib']
g.add_runtime_dependency 'rake', '>= 0'
g.add_runtime_dependency 'mongoid', '~> 5'
end