aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/tracer.gemspec21
-rw-r--r--lib/tracer.rb2
2 files changed, 0 insertions, 23 deletions
diff --git a/lib/tracer.gemspec b/lib/tracer.gemspec
deleted file mode 100644
index 13d8a820a0..0000000000
--- a/lib/tracer.gemspec
+++ /dev/null
@@ -1,21 +0,0 @@
-require_relative "tracer"
-
-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", "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
diff --git a/lib/tracer.rb b/lib/tracer.rb
index 0c482d1876..e463ae1467 100644
--- a/lib/tracer.rb
+++ b/lib/tracer.rb
@@ -61,8 +61,6 @@
#
class Tracer
- VERSION = "0.1.0"
-
class << self
# display additional debug information (defaults to false)
attr_accessor :verbose