We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e840406 commit 1fcad1dCopy full SHA for 1fcad1d
subroutine.gemspec
@@ -14,11 +14,13 @@ Gem::Specification.new do |spec|
14
spec.homepage = "https://github.com/guideline-tech/subroutine"
15
spec.license = "MIT"
16
17
- spec.files = `git ls-files -z`.split("\x0")
+ # Specify which files should be added to the gem when it is released.
18
+ spec.files = Dir["lib/**/*"] + Dir["*.gemspec"]
19
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
- spec.test_files = spec.files.grep(%r{^(gemfiles|test)/})
20
spec.require_paths = ["lib"]
21
22
+ spec.metadata["allowed_push_host"] = "https://rubygems.org"
23
+
24
spec.add_dependency "activemodel", ">= 6.1"
25
spec.add_dependency "activesupport", ">= 6.1"
26
spec.add_dependency "base64"
0 commit comments