forked from thetron/mongoid_token
-
Notifications
You must be signed in to change notification settings - Fork 7
/
mongoid_token.gemspec
26 lines (23 loc) · 1.09 KB
/
mongoid_token.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
$LOAD_PATH.push File.expand_path('lib', __dir__)
require 'version'
Gem::Specification.new do |s|
s.name = 'mongoid_token'
s.version = MongoidToken::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Nicholas Bruning']
s.email = %w[[email protected]]
s.homepage = 'http://github.com/thetron/mongoid_token'
s.licenses = %w[MIT]
s.summary = %q{A little random, unique token generator for Mongoid documents.}
s.description = %q{Mongoid token is a gem for creating random, unique tokens for mongoid documents. Highly configurable and great for making URLs a little more compact.}
s.rubyforge_project = 'mongoid_token'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n")
.map { |f| File.basename(f) }
s.require_paths = %w[lib]
s.add_dependency 'mongoid', '>= 6'
s.add_dependency 'zeitwerk'
s.add_development_dependency 'appraisal', '~> 2.2'
s.add_development_dependency 'wwtd'
end