pronto-rails_migrations 0.10.3 → 0.10.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/build_release_pipeline.yaml +51 -0
- data/.ruby-version +1 -1
- data/Gemfile +0 -2
- data/Rakefile +5 -0
- data/lib/pronto/version.rb +5 -0
- data/pronto-rails_migrations.gemspec +5 -4
- metadata +9 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5cefbfc63cd234afd1eb5341b765f25b716d95e4b219abd8cada9591bdf5d885
|
4
|
+
data.tar.gz: 76f016c3ddc9f11e8d18a13f4056babdcbb65a734290e4399e765711bfb02697
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6a9c17485cc28c461c0a3d9be9050c34c39e3a4b9d61eac3fd24980458f4deb3c26af69ad32efdecb62418c4fb389232149cfdf515dad17d383f39b6f873e547
|
7
|
+
data.tar.gz: 9233b1af3c14348186ebd2fdeffde3805fe011a65ce8df4894c639770fb895ba66f3bc2c0b1ff0c1a9f3dee0cb066d5854854df4be4db91ac36f285ff45972c6
|
@@ -0,0 +1,51 @@
|
|
1
|
+
name: Build and release ruby gem
|
2
|
+
|
3
|
+
on:
|
4
|
+
pull_request:
|
5
|
+
branches: [ master ]
|
6
|
+
push:
|
7
|
+
workflow_dispatch:
|
8
|
+
|
9
|
+
jobs:
|
10
|
+
build-release-pipeline:
|
11
|
+
runs-on: ubuntu-latest
|
12
|
+
container: ruby:2.7.2
|
13
|
+
steps:
|
14
|
+
- uses: actions/checkout@v2
|
15
|
+
- name: Setup
|
16
|
+
run: |
|
17
|
+
apt-get update -y && apt-get install -y --no-install-recommends cmake=3.13.4-1
|
18
|
+
gem install bundler
|
19
|
+
bundle install
|
20
|
+
|
21
|
+
- name: Build
|
22
|
+
id: build
|
23
|
+
if: success() && github.ref == 'refs/heads/master'
|
24
|
+
run: |
|
25
|
+
bundle exec rake build
|
26
|
+
echo "::set-output name=gem_version::v$(bundle exec rake version)"
|
27
|
+
|
28
|
+
- name: Release
|
29
|
+
if: success() && github.ref == 'refs/heads/master'
|
30
|
+
run: |
|
31
|
+
mkdir -p $HOME/.gem
|
32
|
+
touch $HOME/.gem/credentials
|
33
|
+
chmod 600 $HOME/.gem/credentials
|
34
|
+
printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
|
35
|
+
gem push pkg/*
|
36
|
+
env:
|
37
|
+
GEM_HOST_API_KEY: "${{ secrets.RUBYGEMS_AUTH_TOKEN }}"
|
38
|
+
|
39
|
+
- name: Tag repo with new gem version
|
40
|
+
if: success() && github.ref == 'refs/heads/master'
|
41
|
+
uses: actions/github-script@v3
|
42
|
+
with:
|
43
|
+
github-token: ${{ github.token }}
|
44
|
+
script: |
|
45
|
+
github.git.createRef({
|
46
|
+
owner: context.repo.owner,
|
47
|
+
repo: context.repo.repo,
|
48
|
+
ref: "refs/tags/${{ steps.build.outputs.gem_version }}",
|
49
|
+
sha: context.sha
|
50
|
+
})
|
51
|
+
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.
|
1
|
+
2.7.2
|
data/Gemfile
CHANGED
data/Rakefile
CHANGED
@@ -1,12 +1,13 @@
|
|
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
5
|
|
5
6
|
Gem::Specification.new do |spec|
|
6
7
|
spec.name = "pronto-rails_migrations"
|
7
|
-
spec.version =
|
8
|
-
spec.authors = ["
|
9
|
-
spec.email = ["
|
8
|
+
spec.version = Pronto::RailsMigrations::VERSION
|
9
|
+
spec.authors = ["Vinted"]
|
10
|
+
spec.email = ["backend@vinted.com"]
|
10
11
|
|
11
12
|
spec.summary = %q{Validate migration and application code change seperation}
|
12
13
|
spec.description = %q{This pronto runner warns when migrations are run and application code is changed at the same time}
|
@@ -22,6 +23,6 @@ Gem::Specification.new do |spec|
|
|
22
23
|
|
23
24
|
spec.add_dependency('pronto', '>= 0.10.0')
|
24
25
|
|
25
|
-
spec.add_development_dependency "bundler"
|
26
|
+
spec.add_development_dependency "bundler"
|
26
27
|
spec.add_development_dependency "rake", "~> 12.0"
|
27
28
|
end
|
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
|
+
version: 0.10.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- Vinted
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-04-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pronto
|
@@ -30,14 +30,14 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - ">="
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
33
|
+
version: '0'
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: '
|
40
|
+
version: '0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: rake
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -55,11 +55,12 @@ dependencies:
|
|
55
55
|
description: This pronto runner warns when migrations are run and application code
|
56
56
|
is changed at the same time
|
57
57
|
email:
|
58
|
-
-
|
58
|
+
- backend@vinted.com
|
59
59
|
executables: []
|
60
60
|
extensions: []
|
61
61
|
extra_rdoc_files: []
|
62
62
|
files:
|
63
|
+
- ".github/workflows/build_release_pipeline.yaml"
|
63
64
|
- ".gitignore"
|
64
65
|
- ".ruby-version"
|
65
66
|
- Gemfile
|
@@ -69,6 +70,7 @@ files:
|
|
69
70
|
- bin/console
|
70
71
|
- bin/setup
|
71
72
|
- lib/pronto/rails_migrations.rb
|
73
|
+
- lib/pronto/version.rb
|
72
74
|
- pronto-rails_migrations.gemspec
|
73
75
|
homepage: https://github.com/tomasv/pronto-rails_migrations
|
74
76
|
licenses:
|
@@ -89,7 +91,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
89
91
|
- !ruby/object:Gem::Version
|
90
92
|
version: '0'
|
91
93
|
requirements: []
|
92
|
-
rubygems_version: 3.
|
94
|
+
rubygems_version: 3.1.4
|
93
95
|
signing_key:
|
94
96
|
specification_version: 4
|
95
97
|
summary: Validate migration and application code change seperation
|