summaryrefslogtreecommitdiff
path: root/spec/bundler/bundler/specifications/foo.gemspec
blob: 46eb068cd177bfbe910ea4a77a7b42596aea1372 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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