global_uid 1.2.2 → 1.2.3
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/Appraisals +1 -1
- data/gemfiles/rails2.gemfile.lock +2 -2
- data/gemfiles/rails3.gemfile +1 -1
- data/gemfiles/rails3.gemfile.lock +14 -14
- data/global_uid.gemspec +2 -2
- data/lib/global_uid.rb +1 -1
- data/lib/global_uid/migration_extension.rb +1 -1
- metadata +5 -7
data/Appraisals
CHANGED
data/gemfiles/rails3.gemfile
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
PATH
|
|
2
|
-
remote: /Users/
|
|
2
|
+
remote: /Users/ben/src/global_uid
|
|
3
3
|
specs:
|
|
4
|
-
global_uid (1.2.
|
|
4
|
+
global_uid (1.2.2)
|
|
5
5
|
activerecord
|
|
6
6
|
activesupport
|
|
7
7
|
|
|
8
8
|
GEM
|
|
9
9
|
remote: http://rubygems.org/
|
|
10
10
|
specs:
|
|
11
|
-
activemodel (3.
|
|
12
|
-
activesupport (= 3.
|
|
11
|
+
activemodel (3.2.2)
|
|
12
|
+
activesupport (= 3.2.2)
|
|
13
13
|
builder (~> 3.0.0)
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
arel (~> 2.2.1)
|
|
14
|
+
activerecord (3.2.2)
|
|
15
|
+
activemodel (= 3.2.2)
|
|
16
|
+
activesupport (= 3.2.2)
|
|
17
|
+
arel (~> 3.0.2)
|
|
19
18
|
tzinfo (~> 0.3.29)
|
|
20
|
-
activesupport (3.
|
|
19
|
+
activesupport (3.2.2)
|
|
20
|
+
i18n (~> 0.6)
|
|
21
21
|
multi_json (~> 1.0)
|
|
22
22
|
appraisal (0.4.0)
|
|
23
23
|
bundler
|
|
24
24
|
rake
|
|
25
25
|
archive-tar-minitar (0.5.2)
|
|
26
|
-
arel (
|
|
26
|
+
arel (3.0.2)
|
|
27
27
|
builder (3.0.0)
|
|
28
28
|
columnize (0.3.5)
|
|
29
29
|
i18n (0.6.0)
|
|
@@ -34,7 +34,7 @@ GEM
|
|
|
34
34
|
metaclass (0.0.1)
|
|
35
35
|
mocha (0.10.0)
|
|
36
36
|
metaclass (~> 0.0.1)
|
|
37
|
-
multi_json (1.0
|
|
37
|
+
multi_json (1.1.0)
|
|
38
38
|
mysql (2.8.1)
|
|
39
39
|
rake (0.9.2.2)
|
|
40
40
|
rbx-require-relative (0.0.5)
|
|
@@ -54,13 +54,13 @@ GEM
|
|
|
54
54
|
ruby_core_source (0.1.5)
|
|
55
55
|
archive-tar-minitar (>= 0.5.2)
|
|
56
56
|
shoulda (2.11.3)
|
|
57
|
-
tzinfo (0.3.
|
|
57
|
+
tzinfo (0.3.32)
|
|
58
58
|
|
|
59
59
|
PLATFORMS
|
|
60
60
|
ruby
|
|
61
61
|
|
|
62
62
|
DEPENDENCIES
|
|
63
|
-
activerecord (= 3.
|
|
63
|
+
activerecord (= 3.2.2)
|
|
64
64
|
appraisal
|
|
65
65
|
bundler
|
|
66
66
|
global_uid!
|
data/global_uid.gemspec
CHANGED
|
@@ -13,8 +13,8 @@ Gem::Specification.new do |s|
|
|
|
13
13
|
## If your rubyforge_project name is different, then edit it and comment out
|
|
14
14
|
## the sub! line in the Rakefile
|
|
15
15
|
s.name = 'global_uid'
|
|
16
|
-
s.version = '1.2.
|
|
17
|
-
s.date = '
|
|
16
|
+
s.version = '1.2.3'
|
|
17
|
+
s.date = '2012-03-13'
|
|
18
18
|
s.rubyforge_project = 'global_uid'
|
|
19
19
|
|
|
20
20
|
## Make sure your summary is short. The description may be as long
|
data/lib/global_uid.rb
CHANGED
|
@@ -36,7 +36,7 @@ module GlobalUid
|
|
|
36
36
|
id_table_name = options[:global_uid_table] || GlobalUid::Base.id_table_from_name(name)
|
|
37
37
|
GlobalUid::Base.drop_uid_tables(id_table_name,options)
|
|
38
38
|
end
|
|
39
|
-
drop_table_without_global_uid(name
|
|
39
|
+
drop_table_without_global_uid(name)
|
|
40
40
|
end
|
|
41
41
|
|
|
42
42
|
end
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: global_uid
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 25
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
8
|
- 2
|
|
9
|
-
-
|
|
10
|
-
version: 1.2.
|
|
9
|
+
- 3
|
|
10
|
+
version: 1.2.3
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Ben Osheroff
|
|
@@ -15,8 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date:
|
|
19
|
-
default_executable:
|
|
18
|
+
date: 2012-03-13 00:00:00 Z
|
|
20
19
|
dependencies:
|
|
21
20
|
- !ruby/object:Gem::Dependency
|
|
22
21
|
name: activerecord
|
|
@@ -157,7 +156,6 @@ files:
|
|
|
157
156
|
- test/config/database.yml.example
|
|
158
157
|
- test/global_uid_test.rb
|
|
159
158
|
- test/test_helper.rb
|
|
160
|
-
has_rdoc: true
|
|
161
159
|
homepage: http://github.com/zendesk/global_uid
|
|
162
160
|
licenses: []
|
|
163
161
|
|
|
@@ -189,7 +187,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
189
187
|
requirements: []
|
|
190
188
|
|
|
191
189
|
rubyforge_project: global_uid
|
|
192
|
-
rubygems_version: 1.
|
|
190
|
+
rubygems_version: 1.8.10
|
|
193
191
|
signing_key:
|
|
194
192
|
specification_version: 2
|
|
195
193
|
summary: GUID
|