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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0b50ecd7b8bc7e590ed6e3e7b3646d705708194831f036343935ca8c655f4aa7
4
- data.tar.gz: 8771cfc1d3b35c6617b93245b0142a3c74ccde81b489a2440b48f40da9bc45f7
3
+ metadata.gz: 5cefbfc63cd234afd1eb5341b765f25b716d95e4b219abd8cada9591bdf5d885
4
+ data.tar.gz: 76f016c3ddc9f11e8d18a13f4056babdcbb65a734290e4399e765711bfb02697
5
5
  SHA512:
6
- metadata.gz: 20a15ab1ac9100d373752d778ea6785714d807123e9952e266505e7b3d048c4c85cc79faa02e5bf038c988bd0e5e14c5255a5cb59b0860c75f9f6f28af74acf1
7
- data.tar.gz: a2e4d40bb669cd298d4641c18766b617d21ebe84335a7d682767e8ff6b78fa496d015290d4d022896916087448cfd45c6ca2766280a8de0638b7801409b9b09e
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.6.3
1
+ 2.7.2
data/Gemfile CHANGED
@@ -1,6 +1,4 @@
1
1
  source "https://rubygems.org"
2
2
 
3
- git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
-
5
3
  # Specify your gem's dependencies in pronto-rails_migrations.gemspec
6
4
  gemspec
data/Rakefile CHANGED
@@ -1,2 +1,7 @@
1
1
  require "bundler/gem_tasks"
2
+
2
3
  task :default => :spec
4
+
5
+ task :version do |t|
6
+ puts Pronto::RailsMigrations::VERSION
7
+ end
@@ -0,0 +1,5 @@
1
+ module Pronto
2
+ class RailsMigrations
3
+ VERSION = '0.10.4'
4
+ end
5
+ end
@@ -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 = '0.10.3'
8
- spec.authors = ["Tomas Varneckas"]
9
- spec.email = ["t.varneckas@gmail.com"]
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", ">= 1.15"
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.3
4
+ version: 0.10.4
5
5
  platform: ruby
6
6
  authors:
7
- - Tomas Varneckas
7
+ - Vinted
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-10-05 00:00:00.000000000 Z
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: '1.15'
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: '1.15'
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
- - t.varneckas@gmail.com
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.0.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