-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathuuidify.gemspec
More file actions
32 lines (24 loc) · 951 Bytes
/
uuidify.gemspec
File metadata and controls
32 lines (24 loc) · 951 Bytes
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
27
28
29
30
31
32
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "uuidify/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "uuidify"
s.version = Uuidify::VERSION
s.date = "2013-12-11"
s.summary = "Add uuids to any ActiveRecord model."
s.authors = ["Grant Olson"]
s.email = "kgo@grant-olson.net"
s.summary = "Generate uuids for models"
s.files = Dir["{app,config,db,lib}/**/*"] + ["Rakefile", "LICENSE"]
s.test_files = Dir["spec/**/*"]
s.extra_rdoc_files = ['README.md']
s.homepage = "https://github.com/grant-olson/uuidify"
s.license = "BSD 3 Clause"
s.add_dependency "rails", ">= 3.2.13"
s.add_dependency "uuidtools", "~> 2.1.4"
s.add_development_dependency "mysql2"
s.add_development_dependency "activerecord-postgresql-adapter"
s.add_development_dependency "rspec-rails", "~> 2.13.0"
s.add_development_dependency "database_cleaner"
end