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 2c58780 commit 67de90aCopy full SHA for 67de90a
.gitignore
@@ -1,10 +1,10 @@
1
# VSCode
2
-/.vscode/
+.vscode/
3
# JetBrains
4
-/.idea/
+.idea/
5
6
# Ruby
7
-/Gemfile.lock
+Gemfile.lock
8
# https://github.com/ruby/gem_rbs_collection
9
-/.gem_rbs_collection/
10
-/rbs_collection.lock.yaml
+.gem_rbs_collection/
+rbs_collection.lock.yaml
mygem.gemspec
@@ -19,7 +19,11 @@ Gem::Specification.new do|spec|
19
'documentation_uri' => "https://rubydoc.info/gems/#{spec.name}"
20
}
21
22
- spec.files = Dir['**/*']
+ spec.files = Dir['**/*'].grep_v Regexp.union *%w[
23
+ test/
24
+ rbs_collection.yaml
25
+ Steepfile
26
+ ]
27
28
spec.required_ruby_version = '~> 3.1'
29
#spec.add_dependency 'dependency_gem', '~> 2.1.0'
0 commit comments