aboutsummaryrefslogtreecommitdiffstats
path: root/lib/tracer
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-07-31 01:35:16 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-07-31 01:35:16 +0000
commit8536a9a7737b5b56d0549f6c7960b5092163ef70 (patch)
tree2ac535f2f786121c40bbeed6b2d4519f95d862cf /lib/tracer
parent8afde2cd2511382b7d57a8b8ce595c15e61b01a7 (diff)
downloadruby-8536a9a7737b5b56d0549f6c7960b5092163ef70.tar.gz
Fixed inconsistency file structure for gemspec.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64136 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/tracer')
-rw-r--r--lib/tracer/tracer.gemspec21
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/tracer/tracer.gemspec b/lib/tracer/tracer.gemspec
new file mode 100644
index 0000000000..0f8a799d3d
--- /dev/null
+++ b/lib/tracer/tracer.gemspec
@@ -0,0 +1,21 @@
+require_relative "version"
+
+Gem::Specification.new do |spec|
+ spec.name = "tracer"
+ spec.version = Tracer::VERSION
+ spec.authors = ["Keiju ISHITSUKA"]
+ spec.email = ["keiju@ruby-lang.org"]
+
+ spec.summary = %q{Outputs a source level execution trace of a Ruby program.}
+ spec.description = %q{Outputs a source level execution trace of a Ruby program.}
+ spec.homepage = "https://github.com/ruby/tracer"
+ spec.license = "BSD-2-Clause"
+
+ spec.files = [".gitignore", ".travis.yml", "Gemfile", "LICENSE.txt", "README.md", "Rakefile", "bin/console", "bin/setup", "lib/tracer.rb", "lib/tracer/version.rb", "tracer.gemspec"]
+ spec.bindir = "exe"
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
+ spec.require_paths = ["lib"]
+
+ spec.add_development_dependency "bundler"
+ spec.add_development_dependency "rake"
+end