uuid 2.3.4 → 2.3.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ 2.3.4 (2012-01-23)
2
+
3
+ Source files are now UTF-8 (Vicente Reig)
4
+
1
5
  2.3.4 (2011-09-01)
2
6
 
3
7
  Fixed State file mode isn't respected with standard umask (Brandon Turner).
@@ -1,4 +1,4 @@
1
- Copyright (c) 2005-2010 Assaf Arkin, Eric Hodel
1
+ Copyright (c) 2005-2012 Assaf Arkin, Eric Hodel
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'rake' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('rake', 'rake')
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'yard' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('yard', 'yard')
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'yardoc' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('yard', 'yardoc')
data/bin/yri ADDED
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'yri' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('yard', 'yri')
@@ -1,3 +1,4 @@
1
+ # encoding: UTF-8
1
2
  #
2
3
  # = uuid.rb - UUID generator
3
4
  #
@@ -26,7 +27,7 @@ require 'digest/sha1'
26
27
  # For example:
27
28
  #
28
29
  # uuid = UUID.new
29
- #
30
+ #
30
31
  # 10.times do
31
32
  # p uuid.generate
32
33
  # end
@@ -232,7 +233,7 @@ class UUID
232
233
  begin
233
234
  Mac.addr.gsub(/:|-/, '').hex & 0x7FFFFFFFFFFF
234
235
  rescue
235
- 0
236
+ 0
236
237
  end
237
238
  end
238
239
 
@@ -1,3 +1,4 @@
1
+ # encoding: UTF-8
1
2
  # Author:: Assaf Arkin assaf@labnotes.org
2
3
  # Eric Hodel drbrain@segment7.net
3
4
  # Copyright:: Copyright (c) 2005-2008 Assaf Arkin, Eric Hodel
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'uuid'
3
- s.version = '2.3.4'
3
+ s.version = '2.3.5'
4
4
  s.summary = "UUID generator"
5
5
  s.description = <<-EOF
6
6
  UUID generator for producing universally unique identifiers based on RFC 4122
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: uuid
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.4
4
+ version: 2.3.5
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -10,11 +10,11 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2011-09-02 00:00:00.000000000Z
13
+ date: 2012-01-23 00:00:00.000000000Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: macaddr
17
- requirement: &2156334240 !ruby/object:Gem::Requirement
17
+ requirement: &70206291414820 !ruby/object:Gem::Requirement
18
18
  none: false
19
19
  requirements:
20
20
  - - ~>
@@ -22,7 +22,7 @@ dependencies:
22
22
  version: '1.0'
23
23
  type: :runtime
24
24
  prerelease: false
25
- version_requirements: *2156334240
25
+ version_requirements: *70206291414820
26
26
  description: ! 'UUID generator for producing universally unique identifiers based
27
27
  on RFC 4122
28
28
 
@@ -37,7 +37,11 @@ extra_rdoc_files:
37
37
  - README.rdoc
38
38
  - MIT-LICENSE
39
39
  files:
40
+ - bin/rake
40
41
  - bin/uuid
42
+ - bin/yard
43
+ - bin/yardoc
44
+ - bin/yri
41
45
  - test/test-uuid.rb
42
46
  - lib/uuid.rb
43
47
  - README.rdoc
@@ -64,7 +68,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
64
68
  version: '0'
65
69
  segments:
66
70
  - 0
67
- hash: 2227115529809974426
71
+ hash: 4057213684264310664
68
72
  required_rubygems_version: !ruby/object:Gem::Requirement
69
73
  none: false
70
74
  requirements:
@@ -73,7 +77,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
77
  version: '0'
74
78
  segments:
75
79
  - 0
76
- hash: 2227115529809974426
80
+ hash: 4057213684264310664
77
81
  requirements: []
78
82
  rubyforge_project:
79
83
  rubygems_version: 1.8.10