mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Revert previous commit and split lib/tracer/version.rb
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64023 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
043e17db95
commit
0a5c78b979
2 changed files with 26 additions and 0 deletions
21
lib/tracer.gemspec
Normal file
21
lib/tracer.gemspec
Normal file
|
@ -0,0 +1,21 @@
|
|||
require_relative "tracer/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
|
5
lib/tracer/version.rb
Normal file
5
lib/tracer/version.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
class Tracer
|
||||
VERSION = "0.1.0"
|
||||
end
|
Loading…
Reference in a new issue