-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrails-uuid.gemspec
28 lines (21 loc) · 921 Bytes
/
rails-uuid.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
27
28
require File.expand_path("../lib/rails-uuid/version", __FILE__)
Gem::Specification.new do |s|
s.name = "rails-uuid"
s.version = RailsUUID::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Andrew Preece"]
s.email = ["andrew.preece@gmail.com"]
s.homepage = "http://www.lako.ca"
s.summary = "Makes rails use UUID's for ID columns"
s.description = "You're definitely going to want to replace a lot of this"
s.required_rubygems_version = ">= 1.3.6"
# lol - required for validation
s.rubyforge_project = "rails-uuid"
# If you have other dependencies, add them here
s.add_dependency "uuidtools"
# If you need to check in files that aren't .rb files, add them here
s.files = Dir["{lib}/**/*.rb", "bin/*", "LICENSE", "*.md"]
s.require_path = 'lib'
# If you have C extensions, uncomment this line
# s.extensions = "ext/extconf.rb"
end