uuid_it 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/Changelog.md +2 -0
  2. data/lib/ruby-uuid/uuid.rb +2 -2
  3. metadata +7 -8
data/Changelog.md CHANGED
@@ -1,2 +1,4 @@
1
+ # 0.1.3 (2012-05-06)
2
+ * fixed a bug 'marshal data too short' issue #3 when using ruby > 1.8.7
1
3
  # 0.1.2 (2011-08-25)
2
4
  * fixed a bug where uuid_it created multiple Uuids when an unsaved Uuidable already had created one
@@ -159,13 +159,13 @@ class UUID
159
159
  node[0] |= 0x01 # multicast bit
160
160
  end
161
161
  k = rand 0x40000
162
- open STATE_FILE, 'w' do |fp|
162
+ open STATE_FILE, 'wb' do |fp|
163
163
  fp.flock IO::LOCK_EX
164
164
  write_state fp, k, node
165
165
  fp.chmod 0o777 # must be world writable
166
166
  end
167
167
  end
168
- open STATE_FILE, 'r+' do |fp|
168
+ open STATE_FILE, 'rb+' do |fp|
169
169
  fp.flock IO::LOCK_EX
170
170
  c, m = read_state fp
171
171
  c = clock % 0x4000 if clock
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: uuid_it
3
3
  version: !ruby/object:Gem::Version
4
- hash: 31
4
+ hash: 29
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 2
10
- version: 0.1.2
9
+ - 3
10
+ version: 0.1.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - "Andr\xC3\xA9 Duffeck"
@@ -15,11 +15,10 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-08-25 00:00:00 +02:00
19
- default_executable:
18
+ date: 2012-05-07 00:00:00 Z
20
19
  dependencies: []
21
20
 
22
- description: " You need to assign UUIDs to your model? UuidIt makes it as simple as adding one line of code to the according models. \n"
21
+ description: " You need to assign UUIDs to your model? UuidIt makes it as simple as adding one line of code to the according models.\n"
23
22
  email:
24
23
  - aduffeck@suse.de
25
24
  executables: []
@@ -43,7 +42,6 @@ files:
43
42
  - test/uuid_it_test.rb~
44
43
  - test/uuid_it_test.rb
45
44
  - test/test_helper.rb
46
- has_rdoc: true
47
45
  homepage: http://github.com/aduffeck/uuid_it
48
46
  licenses: []
49
47
 
@@ -73,9 +71,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
71
  requirements: []
74
72
 
75
73
  rubyforge_project:
76
- rubygems_version: 1.5.2
74
+ rubygems_version: 1.8.15
77
75
  signing_key:
78
76
  specification_version: 3
79
77
  summary: A Rails plugin for easily assigning UUIDs to your models..
80
78
  test_files:
81
79
  - test/uuid_it_test.rb
80
+ has_rdoc: false