bp3-hello-world 0.1.0 → 0.1.1
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/Gemfile.lock +1 -1
- data/README.md +8 -7
- data/bp3-hello-world.gemspec +46 -0
- data/lib/bp3/hello/world/version.rb +1 -1
- metadata +6 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f4155cb7f3c10ebc16cf82212c311e496537775d20c1b3d23e500257aac99bd6
|
4
|
+
data.tar.gz: 3456e2f7691b673545ea41e9ba27261e1a4d195526e332afc817672376baf7d5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3805cb585a0ab96aebec344713384add029214671ce7668ed6694233c27aae2e55ee81cd2c9723841aedafe4fa700bc5fdc418f55f04b08f63baf74cd7154886
|
7
|
+
data.tar.gz: 1a474b2d3579458d6d645b832cd489f6fda4bf4f4a15a0ec86af29bd93af0762a40fa702819b09f06ea0b8d8272f5f59016501996faea59201cb608e48704838
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,8 +1,6 @@
|
|
1
1
|
# Bp3::Hello::World
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
3
|
+
Bp3::Hello::World is an example Bp3 plugin
|
6
4
|
|
7
5
|
## Installation
|
8
6
|
|
@@ -22,17 +20,20 @@ Or install it yourself as:
|
|
22
20
|
|
23
21
|
## Usage
|
24
22
|
|
25
|
-
|
23
|
+
require 'bp3-hello-world'
|
24
|
+
Bp3::Hello::World::Context.say_it!
|
26
25
|
|
27
26
|
## Development
|
28
27
|
|
29
|
-
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests.
|
28
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests.
|
29
|
+
|
30
|
+
You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
30
31
|
|
31
|
-
To install this gem onto your local machine, run `bundle exec rake install`.
|
32
|
+
To install this gem onto your local machine, run `bundle exec rake install`.
|
32
33
|
|
33
34
|
## Contributing
|
34
35
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
36
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/persuavis/bp3-hello-world.
|
36
37
|
|
37
38
|
## License
|
38
39
|
|
@@ -0,0 +1,46 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative "lib/bp3/hello/world/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = "bp3-hello-world"
|
7
|
+
spec.version = Bp3::Hello::World::VERSION
|
8
|
+
spec.authors = ["Wim den Braven"]
|
9
|
+
spec.email = ["wimdenbraven@persuavis.com"]
|
10
|
+
|
11
|
+
spec.summary = "Bp3::Hello::World is an example Bp3 plugin."
|
12
|
+
spec.description = "Bp3::Hello::World is an example Bp3 plugin."
|
13
|
+
spec.homepage = "https://www.black-phoebe.com"
|
14
|
+
spec.license = "MIT"
|
15
|
+
spec.required_ruby_version = ">= 3.2.2"
|
16
|
+
|
17
|
+
spec.metadata["allowed_push_host"] = "https://rubygems.org"
|
18
|
+
|
19
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
20
|
+
spec.metadata["source_code_uri"] = "https://github.com/persuavis/bp3-hello-world"
|
21
|
+
spec.metadata["changelog_uri"] = "https://github.com/persuavis/bp3-hello-world/blob/main/CHANGELOG.md"
|
22
|
+
|
23
|
+
# Specify which files should be added to the gem when it is released.
|
24
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
25
|
+
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
26
|
+
`git ls-files -z`.split("\x0").reject do |f|
|
27
|
+
(f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
|
28
|
+
end
|
29
|
+
end
|
30
|
+
spec.bindir = "exe"
|
31
|
+
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
32
|
+
spec.require_paths = ["lib"]
|
33
|
+
|
34
|
+
# Uncomment to register a new dependency of your gem
|
35
|
+
# spec.add_dependency "example-gem", "~> 1.0"
|
36
|
+
|
37
|
+
spec.add_development_dependency "rake", "~> 13.0"
|
38
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
39
|
+
spec.add_development_dependency "rubocop", "~> 1.21"
|
40
|
+
spec.add_development_dependency "rubocop-rake", "~> 0.6"
|
41
|
+
spec.add_development_dependency "rubocop-rspec", "~> 2.25"
|
42
|
+
|
43
|
+
# For more information and examples about making a new gem, check out our
|
44
|
+
# guide at: https://bundler.io/guides/creating_gem.html
|
45
|
+
spec.metadata["rubygems_mfa_required"] = "true"
|
46
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bp3-hello-world
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Wim den Braven
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-11-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -97,6 +97,7 @@ files:
|
|
97
97
|
- LICENSE.txt
|
98
98
|
- README.md
|
99
99
|
- Rakefile
|
100
|
+
- bp3-hello-world.gemspec
|
100
101
|
- lib/bp3-hello-world.rb
|
101
102
|
- lib/bp3/hello/world.rb
|
102
103
|
- lib/bp3/hello/world/version.rb
|
@@ -105,7 +106,10 @@ homepage: https://www.black-phoebe.com
|
|
105
106
|
licenses:
|
106
107
|
- MIT
|
107
108
|
metadata:
|
109
|
+
allowed_push_host: https://rubygems.org
|
108
110
|
homepage_uri: https://www.black-phoebe.com
|
111
|
+
source_code_uri: https://github.com/persuavis/bp3-hello-world
|
112
|
+
changelog_uri: https://github.com/persuavis/bp3-hello-world/blob/main/CHANGELOG.md
|
109
113
|
rubygems_mfa_required: 'true'
|
110
114
|
post_install_message:
|
111
115
|
rdoc_options: []
|