-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathruby-uuid.gemspec
47 lines (41 loc) · 1.71 KB
/
ruby-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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env ruby
# Copyright(c) 2007 URABE, Shyouhei.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this code, to deal in the code without restriction, including without
# limitation the rights to use, copy, modify, merge, publish, distribute,
# sublicense, and/or sell copies of the code, and to permit persons to whom the
# code is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the code.
#
# THE CODE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHOR OR COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE CODE OR THE USE OR OTHER DEALINGS IN THE
# CODE.
require 'rubygems'
Gem::Specification.new do |spec|
spec.name = "ruby-uuid"
spec.version = "0.0.1"
spec.summary = "Pure-ruby RFC4122 implementation"
spec.author = "URABE Shyouhei"
spec.email = "shyouhei@ruby-lang.org"
spec.homepage = "http://raa.ruby-lang.org/project/ruby-uuid/"
spec.description = "UUID generator/parser in <300 lines. It fully supports UUID versions 1, 3, 4 and 5."
spec.files = Dir.glob("{test,lib}/**/*")
spec.test_files = ["test/test_uuid.rb"]
end
# Local Variables:
# mode: ruby
# coding: utf-8
# indent-tabs-mode: t
# tab-width: 3
# ruby-indent-level: 3
# fill-column: 79
# default-justification: full
# End:
# vi: ts=3 sw=3