Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/fixtures/packages/rubygems/package.gemspec')
-rw-r--r--spec/fixtures/packages/rubygems/package.gemspec15
1 files changed, 15 insertions, 0 deletions
diff --git a/spec/fixtures/packages/rubygems/package.gemspec b/spec/fixtures/packages/rubygems/package.gemspec
new file mode 100644
index 00000000000..bb87c47f5dc
--- /dev/null
+++ b/spec/fixtures/packages/rubygems/package.gemspec
@@ -0,0 +1,15 @@
+# frozen_string_literal: true
+
+Gem::Specification.new do |s|
+ s.name = %q{package}
+ s.authors = ["Tanuki Steve"]
+ s.version = "0.0.1"
+ s.date = %q{2011-09-29}
+ s.summary = %q{package is the best}
+ s.files = [
+ "lib/package.rb"
+ ]
+ s.required_ruby_version = '>= 2.7.0'
+ s.rubygems_version = '>= 1.8.11'
+ s.require_paths = ["lib"]
+end