Sha256: 1b69889476d18c989489d644790cf9fd5376077c24661f4ce6c3db9386503f71
Contents?: true
Size: 1.81 KB
Versions: 2
Compression:
Stored size: 1.81 KB
Contents
# frozen_string_literal: true require_relative "lib/bp3/hello/world/version" Gem::Specification.new do |spec| spec.name = "bp3-hello-world" spec.version = Bp3::Hello::World::VERSION spec.authors = ["Wim den Braven"] spec.email = ["wimdenbraven@persuavis.com"] spec.summary = "Bp3::Hello::World is an example Bp3 plugin." spec.description = "Bp3::Hello::World is an example Bp3 plugin." spec.homepage = "https://www.black-phoebe.com" spec.license = "MIT" spec.required_ruby_version = ">= 3.2.2" spec.metadata["allowed_push_host"] = "https://rubygems.org" spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = "https://github.com/persuavis/bp3-hello-world" spec.metadata["changelog_uri"] = "https://github.com/persuavis/bp3-hello-world/blob/main/CHANGELOG.md" # Specify which files should be added to the gem when it is released. # The `git ls-files -z` loads the files in the RubyGem that have been added into git. spec.files = Dir.chdir(File.expand_path(__dir__)) do `git ls-files -z`.split("\x0").reject do |f| (f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)}) end end spec.bindir = "exe" spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_dependency "i18n", [">= 1.8.11", "< 2"] spec.add_development_dependency "rake", "~> 13.0" spec.add_development_dependency "rspec", "~> 3.0" spec.add_development_dependency "rubocop", "~> 1.21" spec.add_development_dependency "rubocop-rake", "~> 0.6" spec.add_development_dependency "rubocop-rspec", "~> 2.25" # For more information and examples about making a new gem, check out our # guide at: https://bundler.io/guides/creating_gem.html spec.metadata["rubygems_mfa_required"] = "true" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
bp3-hello-world-0.1.3 | bp3-hello-world.gemspec |
bp3-hello-world-0.1.2 | bp3-hello-world.gemspec |