uniq_identifier 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b65e5a80f91751f11f0dbd70fd572ace568665cf
4
- data.tar.gz: 17334d6d08293100d0215ffb8f3560783ed163cc
3
+ metadata.gz: 4a359694ccee8dd0618258f49bf4636b420d97c1
4
+ data.tar.gz: 1bf3f348682d815b16048969209c9ad124c4a2c1
5
5
  SHA512:
6
- metadata.gz: 22c5f051f9c1232245c749f176371107695eb9b9271e32b49f968e045c786c466faa12d7f0588b8b99f27670ae744ff7ef029b4685235b4bcdd03419423c773c
7
- data.tar.gz: 90a31bceb24b4f509c4c92756b41b4eeea21b79adaca776c389a5d684bef20f845fdc4fdbe33081e77595c3300924453bfb089be8bb665227606d522f5ce2473
6
+ metadata.gz: ab4422445fff7e442bf0465613c27eb5bec83d84b685f0f93a02405cafe41899e44fb132c39e5f6b9c535d0f70d4b774ae6bf7cbb3b1dd1ca4ef08c3e0b0133e
7
+ data.tar.gz: a640c32e7e162e5a3f2253f20f5d0d7a3ec2bca3d1ee2364da4defe25a147361ad528ced7e9b19563744cdd77b925cf9e0855b1566cb5d7236787930cfe1cdf5
data/CHANGELOG.md CHANGED
@@ -1,7 +1,12 @@
1
+ ### VERSION 0.0.3
2
+
3
+ * Bug Fix
4
+ * Change bad naming of migration files
5
+
1
6
  ### VERSION 0.0.2
2
7
 
3
8
  * Enhancements
4
- * Liitle enhancement
9
+ * Litle enhancement
5
10
 
6
11
  ### VERSION 0.0.1
7
12
 
data/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  [![Build Status](https://travis-ci.org/joel/uniq_identifier.png?branch=master)](https://travis-ci.org/joel/uniq_identifier) (Travis CI)
8
8
 
9
- [![Coverage Status](https://coveralls.io/repos/joel/uniq_identifier/badge.png)](https://coveralls.io/r/joel/uniq_identifier)
9
+ [![Coverage Status](https://coveralls.io/repos/joel/uniq_identifier/badge.svg?branch=master)](https://coveralls.io/r/joel/uniq_identifier?branch=master)
10
10
 
11
11
  Add an uniq identifier on your models. For make your model agnostic from backend unique identifier.
12
12
 
@@ -1,4 +1,4 @@
1
- class UniqIdentifierAddUuid<%= class_name %> < ActiveRecord::Migration
1
+ class AddUuid<%= class_name %> < ActiveRecord::Migration
2
2
  def change
3
3
  change_table(:<%= plural_name %>) do |t|
4
4
  t.string :uuid
@@ -1,3 +1,3 @@
1
1
  module UniqIdentifier
2
- VERSION = '0.0.2'
2
+ VERSION = '0.0.3'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: uniq_identifier
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joel AZEMAR