forked from thetron/mongoid_token
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmongoid_token.gemspec
23 lines (20 loc) · 979 Bytes
/
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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
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 = ["nicholas@bruning.com.au"]
s.homepage = "http://github.com/thetron/mongoid_token"
s.licenses = ['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.add_dependency 'mongoid', '~> 5.0.0'
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 = ["lib"]
end