rubypitaya 3.19.2 → 3.19.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d58b5ccd8236b3ae4582a90f497eb17fd62e1b396920a1f6bb6af5150fd209c3
4
- data.tar.gz: c0de6b03cbc50d5702ed2fa63be69f00a61d98ebb9161834884169a8f094073a
3
+ metadata.gz: 18140f25fcbb74be4d0d6903014f5e340b8a3f948604138c0e0e4fa1f3097424
4
+ data.tar.gz: b33020321f0ccba59e661547155588996628057333aff033bda1ccc21a12175a
5
5
  SHA512:
6
- metadata.gz: 6a6a52c8c419cb713c490523d06f41f62a40b983f01ed4a4d8f15d1affc8d244f008dedb28b9e344b1c43e571c04221bfe47288876acd01065969bf7f57165e8
7
- data.tar.gz: 365ba3891c6ae239cef74ae154c3e422f67fdadab75c3b72cc70368621aedffbc5d5d2beac74492942646aed174acb5e701805de74b3457fc7de8032288f06ef
6
+ metadata.gz: 1228431dfb5bc2d5ebd579251b9a2bdc6e7a9efcc84720bc3694bd21efdb78c07bf7c18effce78966fc4591ddb43e065ebf2979bb76fab4e4a62d0ed07cf24f6
7
+ data.tar.gz: 76fa80c15de8da13c3e9397dcba88da1df4064ab27546d66ed5fa8ff97a9576354d28cd894582fcbb00cedb34f5210953861e0f2e5ed4c61e2d36b8a454f2e4d
@@ -1,6 +1,6 @@
1
1
  source "https://rubygems.org"
2
2
 
3
- gem 'rubypitaya', '3.19.2'
3
+ gem 'rubypitaya', '3.19.3'
4
4
 
5
5
  group :development do
6
6
  gem 'pry', '0.14.2'
@@ -105,7 +105,7 @@ GEM
105
105
  rspec-support (~> 3.13.0)
106
106
  rspec-support (3.13.1)
107
107
  ruby2_keywords (0.0.5)
108
- rubypitaya (3.19.2)
108
+ rubypitaya (3.19.3)
109
109
  activerecord (= 7.1.3.3)
110
110
  etcdv3 (= 0.11.6)
111
111
  google-protobuf (= 3.25.2)
@@ -144,7 +144,7 @@ DEPENDENCIES
144
144
  listen (= 3.9.0)
145
145
  pry (= 0.14.2)
146
146
  rspec (= 3.13.0)
147
- rubypitaya (= 3.19.2)
147
+ rubypitaya (= 3.19.3)
148
148
  sinatra-contrib (= 3.2.0)
149
149
 
150
150
  BUNDLED WITH
@@ -2,8 +2,11 @@ require 'active_record'
2
2
 
3
3
  class CreateUserMigration < ActiveRecord::Migration[6.1]
4
4
 
5
+ enable_extension 'uuid-ossp' unless extension_enabled?('uuid-ossp')
6
+
5
7
  def change
6
8
  create_table :users do |t|
9
+ t.uuid :public_id, default: 'uuid_generate_v1()', null: false, index: { unique: true }
7
10
  t.timestamps
8
11
  end
9
12
  end
@@ -1,3 +1,3 @@
1
1
  module RubyPitaya
2
- VERSION = '3.19.2'
2
+ VERSION = '3.19.3'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubypitaya
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.19.2
4
+ version: 3.19.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luciano Prestes Cavalcanti