sigstore_protobuf_specs 0.0.1.pre.alpha1 → 0.0.1.pre.alpha2

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: a402639cf9f7de624206b2cea4908e4913d70db0dad54863b0ccce4471c89143
4
- data.tar.gz: 901e963198dae3969bf0f71661cbb2b70e79033de5ac0767f33ecda6caa177be
3
+ metadata.gz: 9af36d09656b07783021d172bf0fb147cab4d31856cf917880f53c73e597edd5
4
+ data.tar.gz: f1d8f8e2251f7f8cc35c65708d40fc7ac5e130e393b37a2c21976dafbd1c0ad2
5
5
  SHA512:
6
- metadata.gz: 507152885625b5d20af4c8d067cbf1f4e055386029cc2aa62c7ff6ad2382d4dbad2890ef90dc92e0b2704bb5ffd8051e6f84b6753cea2469dac4ed80b5074ea3
7
- data.tar.gz: d4282d3b57b43cb599c9cc26a6f7a6adba244b5ab91ac2fc79fe43095a4873dd4f0112336c1969dff045572607ff667825ffcad62757f881121829a84da40fe1
6
+ metadata.gz: 701340cc36d390fd26cfd247d4d6aa3c0108a1283643afc8d57d91605ce93d007b525e0794e680f8b3b83d6adb25fada921d979b7506d5f2536cb56a616691b8
7
+ data.tar.gz: 2e25ef7a13e04575d87278296c1acf03549e9c2bbc72990d0c50de79b7a96778373d1c766ed39196698fa29e81c13cbf6e180d59ad464406443f82c74e704625
data/README.md CHANGED
@@ -1,36 +1,44 @@
1
- # Sigstore::Protobuf::Specs
1
+ # sigstore_protobuf_specs
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/sigstore/protobuf/specs`. To experiment with that code, run `bin/console` for an interactive prompt.
3
+ These are the Ruby language bindings for Sigstore's protobuf specs.
4
4
 
5
- TODO: Delete this and the text above, and describe your gem
5
+ See the [repository's README](https://github.com/sigstore/protobuf-specs)
6
+ for more information.
6
7
 
7
8
  ## Installation
8
9
 
9
10
  Add this line to your application's Gemfile:
10
11
 
11
12
  ```ruby
12
- gem 'sigstore-protobuf-specs'
13
+ gem 'sigstore_protobuf_specs'
13
14
  ```
14
15
 
15
16
  And then execute:
16
-
17
+ ```bash
17
18
  $ bundle install
18
-
19
+ ```
19
20
  Or install it yourself as:
20
-
21
- $ gem install sigstore-protobuf-specs
21
+ ```bash
22
+ $ gem install sigstore_protobuf_specs
23
+ ```
22
24
 
23
25
  ## Usage
24
26
 
25
- TODO: Write usage instructions here
27
+ Import all the bindings:
26
28
 
27
- ## Development
29
+ ```ruby
30
+ require 'sigstore_protobuf_specs'
31
+ ```
32
+
33
+ Or you can import them individually:
28
34
 
29
- After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
35
+ ```ruby
36
+ require 'sigstore_bundle_pb'
37
+ ```
30
38
 
31
- 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`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
39
+ See what is available in `gen/pb-ruby/lib/`.
32
40
 
33
41
  ## Contributing
34
42
 
35
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/sigstore-protobuf-specs.
43
+ Bug reports and pull requests are welcome on GitHub at https://github.com/sigstore/protobuf-specs/issues.
36
44
 
@@ -16,6 +16,6 @@
16
16
 
17
17
  module Dev
18
18
  module Sigstore
19
- VERSION = '0.0.1-alpha1'
19
+ VERSION = '0.0.1.pre.alpha2'
20
20
  end
21
21
  end
@@ -14,4 +14,5 @@
14
14
  # See the License for the specific language governing permissions and
15
15
  # limitations under the License.
16
16
 
17
+ require 'sigstore_protobuf_specs/version'
17
18
  Dir[File.join(__dir__, '*.rb')].each { |file| require file }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sigstore_protobuf_specs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1.pre.alpha1
4
+ version: 0.0.1.pre.alpha2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sigstore Authors
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-03-07 00:00:00.000000000 Z
11
+ date: 2023-03-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf
@@ -57,10 +57,10 @@ files:
57
57
  - lib/sigstore_bundle_pb.rb
58
58
  - lib/sigstore_common_pb.rb
59
59
  - lib/sigstore_protobuf_specs.rb
60
+ - lib/sigstore_protobuf_specs/version.rb
60
61
  - lib/sigstore_rekor_pb.rb
61
62
  - lib/sigstore_trustroot_pb.rb
62
63
  - lib/sigstore_verification_pb.rb
63
- - lib/version.rb
64
64
  homepage: https://www.sigstore.dev/
65
65
  licenses:
66
66
  - Apache-2.0