summaryrefslogtreecommitdiff
path: root/vendor/bundle/ruby/3.4.0/gems/rake-13.4.2/rake.gemspec
diff options
context:
space:
mode:
authorBen Sanders <ben@sanders.life>2026-08-02 09:49:25 -0400
committerBen Sanders <ben@sanders.life>2026-08-02 09:49:25 -0400
commitb41479c91e6685511c1f8ba8586106b322073b62 (patch)
treec9f1345999d754ae0a533849966427e792d9e68d /vendor/bundle/ruby/3.4.0/gems/rake-13.4.2/rake.gemspec
parentcfaceeb9a6d1295f5754be211858155cd309acc2 (diff)
added statscounter code
Diffstat (limited to 'vendor/bundle/ruby/3.4.0/gems/rake-13.4.2/rake.gemspec')
-rw-r--r--vendor/bundle/ruby/3.4.0/gems/rake-13.4.2/rake.gemspec102
1 files changed, 102 insertions, 0 deletions
diff --git a/vendor/bundle/ruby/3.4.0/gems/rake-13.4.2/rake.gemspec b/vendor/bundle/ruby/3.4.0/gems/rake-13.4.2/rake.gemspec
new file mode 100644
index 0000000..dbc1794
--- /dev/null
+++ b/vendor/bundle/ruby/3.4.0/gems/rake-13.4.2/rake.gemspec
@@ -0,0 +1,102 @@
+# frozen_string_literal: true
+
+require_relative "lib/rake/version"
+
+Gem::Specification.new do |s|
+ s.name = "rake"
+ s.version = Rake::VERSION
+ s.authors = ["Hiroshi SHIBATA", "Eric Hodel", "Jim Weirich"]
+ s.email = ["hsbt@ruby-lang.org", "drbrain@segment7.net", ""]
+
+ s.summary = "Rake is a Make-like program implemented in Ruby"
+ s.description = <<~DESCRIPTION
+ Rake is a Make-like program implemented in Ruby. Tasks and dependencies are
+ specified in standard Ruby syntax.
+ Rake has the following features:
+ * Rakefiles (rake's version of Makefiles) are completely defined in standard Ruby syntax.
+ No XML files to edit. No quirky Makefile syntax to worry about (is that a tab or a space?)
+ * Users can specify tasks with prerequisites.
+ * Rake supports rule patterns to synthesize implicit tasks.
+ * Flexible FileLists that act like arrays but know about manipulating file names and paths.
+ * Supports parallel execution of tasks.
+ DESCRIPTION
+ s.homepage = "https://github.com/ruby/rake"
+ s.licenses = ["MIT"]
+
+ s.metadata = {
+ "bug_tracker_uri" => "https://github.com/ruby/rake/issues",
+ "changelog_uri" => "https://github.com/ruby/rake/releases",
+ "documentation_uri" => "https://ruby.github.io/rake",
+ "source_code_uri" => s.homepage
+ }
+
+ s.files = [
+ "History.rdoc",
+ "MIT-LICENSE",
+ "README.rdoc",
+ "doc/command_line_usage.rdoc",
+ "doc/example/Rakefile1",
+ "doc/example/Rakefile2",
+ "doc/example/a.c",
+ "doc/example/b.c",
+ "doc/example/main.c",
+ "doc/glossary.rdoc",
+ "doc/jamis.rb",
+ "doc/proto_rake.rdoc",
+ "doc/rake.1",
+ "doc/rakefile.rdoc",
+ "doc/rational.rdoc",
+ "exe/rake",
+ "lib/rake.rb",
+ "lib/rake/application.rb",
+ "lib/rake/backtrace.rb",
+ "lib/rake/clean.rb",
+ "lib/rake/cloneable.rb",
+ "lib/rake/cpu_counter.rb",
+ "lib/rake/default_loader.rb",
+ "lib/rake/dsl_definition.rb",
+ "lib/rake/early_time.rb",
+ "lib/rake/ext/core.rb",
+ "lib/rake/ext/string.rb",
+ "lib/rake/file_creation_task.rb",
+ "lib/rake/file_list.rb",
+ "lib/rake/file_task.rb",
+ "lib/rake/file_utils.rb",
+ "lib/rake/file_utils_ext.rb",
+ "lib/rake/invocation_chain.rb",
+ "lib/rake/invocation_exception_mixin.rb",
+ "lib/rake/late_time.rb",
+ "lib/rake/linked_list.rb",
+ "lib/rake/loaders/makefile.rb",
+ "lib/rake/multi_task.rb",
+ "lib/rake/name_space.rb",
+ "lib/rake/options.rb",
+ "lib/rake/packagetask.rb",
+ "lib/rake/phony.rb",
+ "lib/rake/private_reader.rb",
+ "lib/rake/promise.rb",
+ "lib/rake/pseudo_status.rb",
+ "lib/rake/rake_module.rb",
+ "lib/rake/rake_test_loader.rb",
+ "lib/rake/rule_recursion_overflow_error.rb",
+ "lib/rake/scope.rb",
+ "lib/rake/task.rb",
+ "lib/rake/task_argument_error.rb",
+ "lib/rake/task_arguments.rb",
+ "lib/rake/task_manager.rb",
+ "lib/rake/tasklib.rb",
+ "lib/rake/testtask.rb",
+ "lib/rake/thread_history_display.rb",
+ "lib/rake/thread_pool.rb",
+ "lib/rake/trace_output.rb",
+ "lib/rake/version.rb",
+ "lib/rake/win32.rb",
+ "rake.gemspec"
+ ]
+ s.bindir = "exe"
+ s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
+ s.require_paths = ["lib"]
+
+ s.required_ruby_version = Gem::Requirement.new(">= 2.3")
+ s.rdoc_options = ["--main", "README.rdoc"]
+end