bundler-alive 0.1.1 → 0.1.2

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: c5a1828e3dc95d630fa851a9d8fa9e806eb9b3ad59a552627ae6ef86894a9f3c
4
- data.tar.gz: 2aa7685fb869a1ec51d2bb2c54cee0cce37c518c4a1554db27c941c4a1b2c000
3
+ metadata.gz: f2a89085af5b9f1ee492cdbbe0e51fc27026c90760f77ebe0e7aa219b038d423
4
+ data.tar.gz: 619562e866a25a255516cbaaedf1a0ccc08c741d3f00bd6c5bd86455793d9db5
5
5
  SHA512:
6
- metadata.gz: ba9b37245ae7db08df9fa6f568dd00978f4bbbc13595df7038ddc91a934d1a44e600d0d4e63d768af249695e69a9d5f1e4af5679f003fa7532db4e5d5a98b9a8
7
- data.tar.gz: 8cddd341f4ed8e97693735a2052d152fad0f0bd887f26bad721ee81ba7bf87fba607ea2f5aaa21a51115ef4cc33e2840971ec4af7e75d562e8cfc3e142761492
6
+ metadata.gz: 5929a845890c5b50b6bd629296f4bd3f1c457791c6938f53203f464f99ac86634122500cd2e0dc5fc4276e42ef04ba30898ad91ede8546eb2c2cdf8fc9f6ac18
7
+ data.tar.gz: 4845907f1e0eedab0c1746a186dc613d31f2e680b8b0f24c08aa660dbd9467840c42a240cb22ab97e9ba46594be185158ae8c8f69752f4f7150585b849e239da
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # bundler-alive
2
2
 
3
3
  ![bundler-alive](https://github.com/kyoshidajp/bundler-alive/actions/workflows/ci.yml/badge.svg)
4
+ [![Gem Version](https://badge.fury.io/rb/bundler-alive.svg)](https://badge.fury.io/rb/bundler-alive)
4
5
 
5
6
  `bunder-alive` checks if gems in a RubyGem's `Gemfile.lock` are active.
6
7
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Bundler
4
4
  module Alive
5
- VERSION = "0.1.1"
5
+ VERSION = "0.1.2"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bundler-alive
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Katsuhiko YOSHIDA
@@ -16,7 +16,6 @@ email:
16
16
  executables:
17
17
  - bundle-alive
18
18
  - bundler-alive
19
- - setup
20
19
  extensions: []
21
20
  extra_rdoc_files: []
22
21
  files:
@@ -29,7 +28,6 @@ files:
29
28
  - Rakefile
30
29
  - bin/bundle-alive
31
30
  - bin/bundler-alive
32
- - bin/setup
33
31
  - bundler-alive.gemspec
34
32
  - lib/bundler/alive.rb
35
33
  - lib/bundler/alive/cli.rb
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here