[前][次][番号順一覧][スレッド一覧]

ruby-changes:51809

From: kazu <ko1@a...>
Date: Mon, 23 Jul 2018 18:56:55 +0900 (JST)
Subject: [ruby-changes:51809] kazu:r64023 (trunk): Revert previous commit and split lib/tracer/version.rb

kazu	2018-07-23 18:56:49 +0900 (Mon, 23 Jul 2018)

  New Revision: 64023

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=64023

  Log:
    Revert previous commit and split lib/tracer/version.rb

  Added directories:
    trunk/lib/tracer/
  Added files:
    trunk/lib/tracer/version.rb
    trunk/lib/tracer.gemspec
Index: lib/tracer/version.rb
===================================================================
--- lib/tracer/version.rb	(nonexistent)
+++ lib/tracer/version.rb	(revision 64023)
@@ -0,0 +1,5 @@ https://github.com/ruby/ruby/blob/trunk/lib/tracer/version.rb#L1
+# frozen_string_literal: true
+
+class Tracer
+  VERSION = "0.1.0"
+end
Index: lib/tracer.gemspec
===================================================================
--- lib/tracer.gemspec	(nonexistent)
+++ lib/tracer.gemspec	(revision 64023)
@@ -0,0 +1,21 @@ https://github.com/ruby/ruby/blob/trunk/lib/tracer.gemspec#L1
+require_relative "tracer/version"
+
+Gem::Specification.new do |spec|
+  spec.name          = "tracer"
+  spec.version       = Tracer::VERSION
+  spec.authors       = ["Keiju ISHITSUKA"]
+  spec.email         = ["keiju@r..."]
+
+  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

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]