active_record_uuid 0.3.0 → 0.3.1
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.
- checksums.yaml +4 -4
- data/{LICENSE → LICENSE.txt} +0 -0
- data/README.md +1 -1
- data/active_record_uuid.gemspec +1 -0
- data/lib/active_record_uuid/version.rb +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 36c6aa2261f9bda890d723aa65b7b455a9d730f3
|
|
4
|
+
data.tar.gz: 1d3bf24356d3a5e4e9e456f1ef2decd6d8bc905f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6e137ff890675cc157bb8fb97995b6a84ce03af8379442a8fd83cde054033b4c1fb0661ad6276ddc5fea15c4627bb8ac0ceccc89a3cc7e58ef9be76c918a4644
|
|
7
|
+
data.tar.gz: 6f95e393132822b79a6fcd6c8d7c5053f3e06ba009799662b618643bb5d757cc201778eb1fff13bf77f510fa45818053941b71f86ca2d96a79c1891d7b5c38fc
|
data/{LICENSE → LICENSE.txt}
RENAMED
|
File without changes
|
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# ActiveRecordUuid [](https://travis-ci.org/chamnap/active_record_uuid)
|
|
1
|
+
# ActiveRecordUuid [](https://travis-ci.org/chamnap/active_record_uuid) [](http://badge.fury.io/rb/active_record_uuid) [](https://gemnasium.com/chamnap/active_record_uuid)
|
|
2
2
|
|
|
3
3
|
`active_record_uuid` is a nice gem that add uuid supports to your `activerecord` models (MySQL). It allows you to store uuid in various formats: binary (16 bytes), base64 (24 bytes), hexdigest (32 bytes), or string (36 bytes), and query back with uuid string.
|
|
4
4
|
|
data/active_record_uuid.gemspec
CHANGED
|
@@ -14,6 +14,7 @@ Gem::Specification.new do |gem|
|
|
|
14
14
|
gem.name = "active_record_uuid"
|
|
15
15
|
gem.require_paths = ["lib"]
|
|
16
16
|
gem.version = ActiveRecordUuid::VERSION
|
|
17
|
+
gem.license = "MIT"
|
|
17
18
|
|
|
18
19
|
gem.add_development_dependency "rake", "~> 10.1.0"
|
|
19
20
|
gem.add_development_dependency "bundler", ">= 1.3.5"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: active_record_uuid
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chamnap
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-11-
|
|
11
|
+
date: 2013-11-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -123,7 +123,7 @@ files:
|
|
|
123
123
|
- .rvmrc
|
|
124
124
|
- .travis.yml
|
|
125
125
|
- Gemfile
|
|
126
|
-
- LICENSE
|
|
126
|
+
- LICENSE.txt
|
|
127
127
|
- README.md
|
|
128
128
|
- Rakefile
|
|
129
129
|
- active_record_uuid.gemspec
|
|
@@ -157,7 +157,8 @@ files:
|
|
|
157
157
|
- spec/support/models.rb
|
|
158
158
|
- spec/support/schema.rb
|
|
159
159
|
homepage: https://github.com/chamnap/active_record_uuid
|
|
160
|
-
licenses:
|
|
160
|
+
licenses:
|
|
161
|
+
- MIT
|
|
161
162
|
metadata: {}
|
|
162
163
|
post_install_message:
|
|
163
164
|
rdoc_options: []
|