biscuit 0.1.4 → 0.2.0
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 +4 -4
- data/.github/workflows/publish_gem.yml +4 -8
- data/.github/workflows/ruby.yml +21 -0
- data/CHANGELOG.markdown +5 -0
- data/README.md +5 -0
- data/Rakefile +9 -5
- data/lib/biscuit/secrets_decrypter.rb +1 -1
- data/lib/biscuit/version.rb +1 -1
- metadata +7 -7
- data/.travis.yml +0 -13
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c0ae8dd43c9d7b9cf11433ec6f56f8417d9df0a237396162f85a9a54eecb14af
|
4
|
+
data.tar.gz: ade9a35a78ea2e62c0ae1786b98a1f1c41f4e02186b6a4ccb9a246ffecc60ae4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6a50e6cb9da879f6537aa10768bd2821d69771df478ec86ece1e88a918a54bc2e9ad0f06055f6cb9a4bfbfb4cfc03689d82925c80ef7245ad0778541ae04ab1a
|
7
|
+
data.tar.gz: 6ba191f9c910089ca2a92f6545a3cd46149d2d9e3071cc0fb0166831808eb855aaac1b9cb09a09e9086595fd1c05b871445d6c915b632bfe17e9d6416a9430e7
|
@@ -1,21 +1,17 @@
|
|
1
1
|
name: Publish Gem
|
2
2
|
|
3
3
|
on:
|
4
|
-
|
5
|
-
|
6
|
-
-
|
7
|
-
- "github-workflow-publish-gem"
|
4
|
+
release:
|
5
|
+
types:
|
6
|
+
- published
|
8
7
|
|
9
8
|
jobs:
|
10
9
|
build:
|
11
10
|
runs-on: ubuntu-latest
|
12
|
-
|
13
11
|
steps:
|
14
12
|
- uses: actions/checkout@v1
|
15
|
-
|
16
13
|
- name: Release Gem
|
17
14
|
uses: cadwallion/publish-rubygems-action@master
|
18
15
|
env:
|
19
|
-
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|
16
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
20
17
|
RUBYGEMS_API_KEY: ${{secrets.RUBYGEMS_API_KEY}}
|
21
|
-
RELEASE_COMMAND: rake release
|
@@ -0,0 +1,21 @@
|
|
1
|
+
name: Ruby CI
|
2
|
+
|
3
|
+
on: [push, pull_request]
|
4
|
+
jobs:
|
5
|
+
build:
|
6
|
+
name: build (${{ matrix.ruby }} / ${{ matrix.os }})
|
7
|
+
strategy:
|
8
|
+
matrix:
|
9
|
+
ruby: [ "3.0", "2.7", "2.6", "2.5", "2.4", "2.3", head ]
|
10
|
+
os: [ ubuntu-latest ]
|
11
|
+
runs-on: ${{ matrix.os }}
|
12
|
+
steps:
|
13
|
+
- uses: actions/checkout@v2
|
14
|
+
- name: Set up Ruby
|
15
|
+
uses: ruby/setup-ruby@v1
|
16
|
+
with:
|
17
|
+
ruby-version: ${{ matrix.ruby }}
|
18
|
+
- name: Install dependencies
|
19
|
+
run: bundle install
|
20
|
+
- name: Run test
|
21
|
+
run: bundle exec rspec spec
|
data/CHANGELOG.markdown
CHANGED
@@ -1,3 +1,8 @@
|
|
1
|
+
# 0.2.0
|
2
|
+
- [FIX] Resolve File.exists? deprecation removal in latest Ruby.
|
3
|
+
- Bump upstream biscuit binary dependency to latest 0.1.4 release.
|
4
|
+
- Adds diagnostic logging to install task.
|
5
|
+
|
1
6
|
# 0.1.4
|
2
7
|
- [FIX] `open()` is deprecated for URIs. Uses `URI.open()`
|
3
8
|
- Bumps bundler version
|
data/README.md
CHANGED
@@ -110,6 +110,11 @@ After checking out the repo, run `bin/setup` to install dependencies. Then, run
|
|
110
110
|
|
111
111
|
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release` to create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
112
112
|
|
113
|
+
## Performing a release
|
114
|
+
|
115
|
+
First, go to `lib/biscuit/version.rb` and update the gem to the version you'd like. We follow semantic versioning, if you have questions about this please consult this [document](https://semver.org/).
|
116
|
+
After merging the change into the default branch you can go [here](https://github.com/usertesting/biscuit/releases/new) and publish a new release. Which will automatically push the new version to rubygems.org
|
117
|
+
|
113
118
|
## License
|
114
119
|
|
115
120
|
[MIT](LICENSE).
|
data/Rakefile
CHANGED
@@ -1,12 +1,15 @@
|
|
1
1
|
require 'open-uri'
|
2
|
+
require 'bundler/gem_tasks'
|
2
3
|
|
3
|
-
UPSTREAM_VERSION = '0.1.
|
4
|
+
UPSTREAM_VERSION = '0.1.4'
|
4
5
|
|
5
6
|
def fetch(release_url)
|
7
|
+
puts "Fetching native biscuit executable: #{release_url}"
|
6
8
|
tgz_path = download_file(release_url)
|
7
9
|
|
8
10
|
system("tar -xzf #{tgz_path} -C #{File.dirname(tgz_path)}") || raise
|
9
11
|
system("mv #{File.dirname(tgz_path)}/biscuit #{__dir__}/bin/_biscuit") || raise
|
12
|
+
puts "Successfully fetched native biscuit executable"
|
10
13
|
end
|
11
14
|
|
12
15
|
def download_file(url)
|
@@ -19,12 +22,13 @@ end
|
|
19
22
|
|
20
23
|
task :default do
|
21
24
|
platform = Gem::Platform.local
|
22
|
-
base_release_url =
|
25
|
+
base_release_url =
|
26
|
+
"https://github.com/dcoker/biscuit/releases/download/v#{UPSTREAM_VERSION}/biscuit_#{UPSTREAM_VERSION}_"
|
23
27
|
|
24
|
-
if platform.os == 'darwin'
|
25
|
-
fetch("#{base_release_url}-
|
28
|
+
if platform.os == 'darwin'
|
29
|
+
fetch("#{base_release_url}MacOS-all.tar.gz")
|
26
30
|
elsif platform.os == 'linux' && platform.cpu == 'x86_64'
|
27
|
-
fetch("#{base_release_url}-
|
31
|
+
fetch("#{base_release_url}Linux-64bit.tar.gz")
|
28
32
|
else
|
29
33
|
puts "Unsupported platform #{platform}"
|
30
34
|
end
|
data/lib/biscuit/version.rb
CHANGED
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: biscuit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Suan-Aik Yeo
|
8
8
|
- Justin Aiken
|
9
|
-
autorequire:
|
9
|
+
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2022-06-14 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|
@@ -64,9 +64,9 @@ extensions:
|
|
64
64
|
extra_rdoc_files: []
|
65
65
|
files:
|
66
66
|
- ".github/workflows/publish_gem.yml"
|
67
|
+
- ".github/workflows/ruby.yml"
|
67
68
|
- ".gitignore"
|
68
69
|
- ".rspec"
|
69
|
-
- ".travis.yml"
|
70
70
|
- CHANGELOG.markdown
|
71
71
|
- Gemfile
|
72
72
|
- LICENSE
|
@@ -84,7 +84,7 @@ homepage: https://github.com/usertesting/biscuit
|
|
84
84
|
licenses:
|
85
85
|
- MIT
|
86
86
|
metadata: {}
|
87
|
-
post_install_message:
|
87
|
+
post_install_message:
|
88
88
|
rdoc_options: []
|
89
89
|
require_paths:
|
90
90
|
- lib
|
@@ -99,8 +99,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
99
99
|
- !ruby/object:Gem::Version
|
100
100
|
version: '0'
|
101
101
|
requirements: []
|
102
|
-
rubygems_version: 3.
|
103
|
-
signing_key:
|
102
|
+
rubygems_version: 3.3.7
|
103
|
+
signing_key:
|
104
104
|
specification_version: 4
|
105
105
|
summary: Ruby wrapper for biscuit (https://github.com/dcoker/biscuit).
|
106
106
|
test_files: []
|