-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathhas_public_id.gemspec
More file actions
23 lines (18 loc) · 900 Bytes
/
has_public_id.gemspec
File metadata and controls
23 lines (18 loc) · 900 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "has_public_id/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "has_public_id"
s.version = HasPublicId::VERSION
s.authors = ["Graham Melcher"]
s.email = ["melcher@gmail.com"]
s.homepage = "https://github.com/hinthealth/has_public_id"
s.summary = "Random, unique identifiers for activerecord models"
s.description = "Allows for the easy creation and use of random, unique record identifiers so external entities cannot make inferences about your data based on sequential ID's"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
s.test_files = Dir["test/**/*"]
s.licenses = ['MIT']
s.add_dependency "activerecord", ">= 4.0", "<= 5.1"
s.add_development_dependency "sqlite3"
end