summaryrefslogtreecommitdiff
path: root/spec/bundler/bundler/specifications/foo.gemspec
diff options
context:
space:
mode:
Diffstat (limited to 'spec/bundler/bundler/specifications/foo.gemspec')
-rw-r--r--spec/bundler/bundler/specifications/foo.gemspec13
1 files changed, 13 insertions, 0 deletions
diff --git a/spec/bundler/bundler/specifications/foo.gemspec b/spec/bundler/bundler/specifications/foo.gemspec
new file mode 100644
index 0000000000..46eb068cd1
--- /dev/null
+++ b/spec/bundler/bundler/specifications/foo.gemspec
@@ -0,0 +1,13 @@
+# rubocop:disable Style/FrozenStringLiteralComment
+# stub: foo 1.0.0 ruby lib
+
+# The first line would be '# -*- encoding: utf-8 -*-' in a real stub gemspec
+
+Gem::Specification.new do |s|
+ s.name = "foo"
+ s.version = "1.0.0"
+ s.loaded_from = __FILE__
+ s.extensions = "ext/foo"
+ s.required_ruby_version = ">= 3.0.0"
+end
+# rubocop:enable Style/FrozenStringLiteralComment