benk-foobar 0.1.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 +7 -0
- data/.rspec +3 -0
- data/.rubocop.yml +13 -0
- data/README.md +3 -0
- data/Rakefile +12 -0
- data/foobar.gemspec +34 -0
- data/lib/foobar/version.rb +5 -0
- data/lib/foobar.rb +9 -0
- data/sig/foobar.rbs +4 -0
- metadata +50 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: c3c3a9e355773bcde63de1b1fb4cfc9c26495abaf0a6cfbf3dced11e15b73c04
|
|
4
|
+
data.tar.gz: b2aca6cbcb76383fed3d2c0d3a4bd5981cc0c1c498bcd3e33cb5dfba5cf1de7b
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: ba4ed1172a33d1f7e69c8a017e5c8ac6aca11f4d5343da3b39c294f65fb2f5cfdfa5676bae89aafe3192b4875d5bb7193f67b887e1d0dd8b04f431cb272b70cf
|
|
7
|
+
data.tar.gz: d625bc31c4328ea47b20de16064a07213e3a2a4b11783b3ec4327d2a71f2643f34cb9dedcede02ae7d4adf320deb04f799fdcdda617af05093e2476aad135c73
|
data/.rspec
ADDED
data/.rubocop.yml
ADDED
data/README.md
ADDED
data/Rakefile
ADDED
data/foobar.gemspec
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require_relative "lib/foobar/version"
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |spec|
|
|
6
|
+
spec.name = "benk-foobar"
|
|
7
|
+
spec.version = Foobar::VERSION
|
|
8
|
+
spec.authors = ["benk-gc"]
|
|
9
|
+
spec.email = ["benk@example.com"]
|
|
10
|
+
|
|
11
|
+
spec.summary = "A test gem for publishing to rubygems"
|
|
12
|
+
spec.description = "A test gem for publishing to rubygems"
|
|
13
|
+
spec.homepage = "https://github.com/benk-gc/foobar"
|
|
14
|
+
spec.required_ruby_version = ">= 3.0"
|
|
15
|
+
|
|
16
|
+
# Specify which files should be added to the gem when it is released.
|
|
17
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
|
18
|
+
spec.files = Dir.chdir(__dir__) do
|
|
19
|
+
`git ls-files -z`.split("\x0").reject do |f|
|
|
20
|
+
(File.expand_path(f) == __FILE__) ||
|
|
21
|
+
f.start_with?(*%w[bin/ test/ spec/ features/ .git appveyor Gemfile])
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
spec.bindir = "exe"
|
|
26
|
+
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
|
27
|
+
spec.require_paths = ["lib"]
|
|
28
|
+
|
|
29
|
+
# Uncomment to register a new dependency of your gem
|
|
30
|
+
# spec.add_dependency "example-gem", "~> 1.0"
|
|
31
|
+
|
|
32
|
+
# For more information and examples about making a new gem, check out our
|
|
33
|
+
# guide at: https://bundler.io/guides/creating_gem.html
|
|
34
|
+
end
|
data/lib/foobar.rb
ADDED
data/sig/foobar.rbs
ADDED
metadata
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: benk-foobar
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- benk-gc
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: exe
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2024-07-10 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: A test gem for publishing to rubygems
|
|
14
|
+
email:
|
|
15
|
+
- benk@example.com
|
|
16
|
+
executables: []
|
|
17
|
+
extensions: []
|
|
18
|
+
extra_rdoc_files: []
|
|
19
|
+
files:
|
|
20
|
+
- ".rspec"
|
|
21
|
+
- ".rubocop.yml"
|
|
22
|
+
- README.md
|
|
23
|
+
- Rakefile
|
|
24
|
+
- foobar.gemspec
|
|
25
|
+
- lib/foobar.rb
|
|
26
|
+
- lib/foobar/version.rb
|
|
27
|
+
- sig/foobar.rbs
|
|
28
|
+
homepage: https://github.com/benk-gc/foobar
|
|
29
|
+
licenses: []
|
|
30
|
+
metadata: {}
|
|
31
|
+
post_install_message:
|
|
32
|
+
rdoc_options: []
|
|
33
|
+
require_paths:
|
|
34
|
+
- lib
|
|
35
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - ">="
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '3.0'
|
|
40
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
41
|
+
requirements:
|
|
42
|
+
- - ">="
|
|
43
|
+
- !ruby/object:Gem::Version
|
|
44
|
+
version: '0'
|
|
45
|
+
requirements: []
|
|
46
|
+
rubygems_version: 3.4.10
|
|
47
|
+
signing_key:
|
|
48
|
+
specification_version: 4
|
|
49
|
+
summary: A test gem for publishing to rubygems
|
|
50
|
+
test_files: []
|