pronto-rails_migrations 0.10.4 → 0.11.0

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
  SHA256:
3
- metadata.gz: 5cefbfc63cd234afd1eb5341b765f25b716d95e4b219abd8cada9591bdf5d885
4
- data.tar.gz: 76f016c3ddc9f11e8d18a13f4056babdcbb65a734290e4399e765711bfb02697
3
+ metadata.gz: 763055853018769fdc17b77efd93170beefee7c73a8f114b9443579505eaadaf
4
+ data.tar.gz: a04c3abe2be51de0f6ff2ffdb7bf26654eed32ee89d39a70f181ef03f67e2f42
5
5
  SHA512:
6
- metadata.gz: 6a9c17485cc28c461c0a3d9be9050c34c39e3a4b9d61eac3fd24980458f4deb3c26af69ad32efdecb62418c4fb389232149cfdf515dad17d383f39b6f873e547
7
- data.tar.gz: 9233b1af3c14348186ebd2fdeffde3805fe011a65ce8df4894c639770fb895ba66f3bc2c0b1ff0c1a9f3dee0cb066d5854854df4be4db91ac36f285ff45972c6
6
+ metadata.gz: 4336189ddb0a3ea0845745996b30c6136fe3475dd894c6ee3ff286f5cac739dcbb16527b4a76c7edf6d19f9833d53be31d86351d7f3fa3e94474a25b77d08d0d
7
+ data.tar.gz: 62a0a8516d5f231ed99bc249ce8f6ad78fa4bba63258ab0d83992fc556474868304d71b0ac9c32f8c2c1a3e5ebb8c62b17668564aa1154fb18cd2a4d3cc23fd8
data/CODEOWNERS ADDED
@@ -0,0 +1,2 @@
1
+ # Ruby upgrades
2
+ .ruby-version @vinted/platform-backend
@@ -0,0 +1,3 @@
1
+ module Pronto
2
+ RAILS_MIGRATIONS_VERSION = '0.11.0'
3
+ end
@@ -1,11 +1,11 @@
1
1
  # coding: utf-8
2
2
  lib = File.expand_path("../lib", __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'pronto/version'
4
+ require 'pronto/rails_migrations/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "pronto-rails_migrations"
8
- spec.version = Pronto::RailsMigrations::VERSION
8
+ spec.version = Pronto::RAILS_MIGRATIONS_VERSION
9
9
  spec.authors = ["Vinted"]
10
10
  spec.email = ["backend@vinted.com"]
11
11
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pronto-rails_migrations
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.4
4
+ version: 0.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vinted
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-04-13 00:00:00.000000000 Z
11
+ date: 2022-03-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pronto
@@ -63,6 +63,7 @@ files:
63
63
  - ".github/workflows/build_release_pipeline.yaml"
64
64
  - ".gitignore"
65
65
  - ".ruby-version"
66
+ - CODEOWNERS
66
67
  - Gemfile
67
68
  - LICENSE.txt
68
69
  - README.md
@@ -70,7 +71,7 @@ files:
70
71
  - bin/console
71
72
  - bin/setup
72
73
  - lib/pronto/rails_migrations.rb
73
- - lib/pronto/version.rb
74
+ - lib/pronto/rails_migrations/version.rb
74
75
  - pronto-rails_migrations.gemspec
75
76
  homepage: https://github.com/tomasv/pronto-rails_migrations
76
77
  licenses:
@@ -1,5 +0,0 @@
1
- module Pronto
2
- class RailsMigrations
3
- VERSION = '0.10.4'
4
- end
5
- end