-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgen_token.gemspec
More file actions
22 lines (18 loc) · 843 Bytes
/
gen_token.gemspec
File metadata and controls
22 lines (18 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/gen_token/version", __FILE__)
Gem::Specification.new do |s|
s.name = "gen_token"
s.version = GenToken::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Graeme Rouse"]
s.email = ["graeme@arizonabay.com"]
s.homepage = "http://www.arizonabay.com"
s.summary = "Simply generates a unique token in a database."
s.description = "Point GenToken at a database column and it will generate a random and unique key for the field. "
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "gen_token"
s.add_development_dependency "bundler", ">= 1.0.0"
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
s.require_path = 'lib'
end