File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -25,11 +25,10 @@ Gem::Specification.new do |spec|
2525 }
2626
2727 spec . licenses = [ 'MIT' ]
28- spec . files = `git ls-files -z` . split ( " \x0 " ) . reject { | f | f . match ( %r{^(test)/} ) }
28+ spec . files = Dir . glob ( 'lib/**/*.rb' ) + Dir . glob ( 'README.md' ) + Dir . glob ( 'bin/console' ) + Dir . glob ( 'bin/setup' )
2929 spec . bindir = "exe"
3030 spec . executables = spec . files . grep ( %r{^exe/} ) { |f | File . basename ( f ) }
3131 spec . require_paths = [ "lib" ]
32- spec . test_files = Dir . glob ( "{test}/**/*.rb" )
3332
3433 spec . required_ruby_version = '>= 3.0'
3534 spec . platform = defined? ( JRUBY_VERSION ) ? 'java' : Gem ::Platform ::RUBY
Original file line number Diff line number Diff line change 22# (c) Copyright Instana Inc. 2016
33
44module Instana
5- VERSION = "2.0 .0"
5+ VERSION = "2.1 .0"
66 VERSION_FULL = "instana-#{ VERSION } "
77end
You can’t perform that action at this time.
0 commit comments