fixes
Showing
- Gemfile 1 addition, 1 deletionGemfile
- Gemfile.lock 2 additions, 2 deletionsGemfile.lock
- README.md 3 additions, 5 deletionsREADME.md
- bin/console 1 addition, 5 deletionsbin/console
- exe/rubic 6 additions, 0 deletionsexe/rubic
- lib/rubic/version.rb 1 addition, 1 deletionlib/rubic/version.rb
- rubic-repl.gemspec 4 additions, 9 deletionsrubic-repl.gemspec
... | ... | @@ -2,7 +2,7 @@ |
source "https://rubygems.org" | ||
# Specify your gem's dependencies in rubic.gemspec | ||
# Specify your gem's dependencies in rubic-repl.gemspec | ||
gemspec | ||
gem "rake", "~> 13.0" | ||
... | ... |
exe/rubic
0 → 100755
... | ... | @@ -3,22 +3,17 @@ |
require_relative "lib/rubic/version" | ||
Gem::Specification.new do |spec| | ||
spec.name = "rubic" | ||
spec.name = "rubic-repl" | ||
spec.version = Rubic::VERSION | ||
spec.authors = ["Stephen D"] | ||
spec.email = ["webmaster@scd31.com"] | ||
spec.summary = "TODO: Write a short summary, because RubyGems requires one." | ||
spec.description = "TODO: Write a longer description or delete this line." | ||
spec.homepage = "TODO: Put your gem's website or public repo URL here." | ||
spec.summary = "BASIC-inspired Ruby REPL" | ||
spec.homepage = "https://gitlab.scd31.com/stephen/rubic" | ||
spec.license = "MIT" | ||
spec.required_ruby_version = ">= 3.0.0" | ||
spec.metadata["allowed_push_host"] = "TODO: Set to your gem server 'https://example.com'" | ||
spec.metadata["homepage_uri"] = spec.homepage | ||
spec.metadata["source_code_uri"] = "TODO: Put your gem's public repo URL here." | ||
spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here." | ||
# 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. | ||
... | ... | @@ -30,7 +25,7 @@ Gem::Specification.new do |spec| |
end | ||
end | ||
spec.bindir = "exe" | ||
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) } | ||
spec.executables = ["rubic"] | ||
spec.require_paths = ["lib"] | ||
# Uncomment to register a new dependency of your gem | ||
... | ... |
Please register or sign in to comment