Skip to content

Commit d94170a

Browse files
authored
Merge pull request #41 from stackify/feature/RUBY-11
Feature/ruby 11
2 parents 88b368f + d6425ba commit d94170a

File tree

5 files changed

+49
-27
lines changed

5 files changed

+49
-27
lines changed

Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
group :test do
22
if ENV['STACKIFY_RUBY_TEST']
3-
gem 'stackify-ruby-apm', '~> 1.15', source: ENV['STACKIFY_RUBY_TEST_REPO']
3+
gem 'stackify-ruby-apm', '~> 1.16.0.beta1', source: ENV['STACKIFY_RUBY_TEST_REPO']
44
else
5-
gem 'stackify-ruby-apm', '~> 1.15'
5+
gem 'stackify-ruby-apm', '~> 1.16.0.beta1'
66
end
77
end
88

Gemfile.lock

Lines changed: 40 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,32 @@
11
PATH
22
remote: .
33
specs:
4-
stackify-api-ruby (1.3.0.beta1)
4+
stackify-api-ruby (2.0.0.beta1)
55
faraday (~> 0.8)
66
net_http_unix (~> 0.2)
77

88
GEM
99
remote: https://rubygems.org/
1010
specs:
11-
concurrent-ruby (1.1.9)
11+
concurrent-ruby (1.2.2)
12+
delegate_matcher (0.4.3)
13+
proc_extensions (~> 0.2)
1214
diff-lcs (1.4.4)
13-
et-orbi (1.2.4)
15+
et-orbi (1.2.7)
1416
tzinfo
1517
faraday (0.17.4)
1618
multipart-post (>= 1.2, < 3)
17-
fugit (1.5.0)
18-
et-orbi (~> 1.1, >= 1.1.8)
19+
file-tail (1.2.0)
20+
tins (~> 1.0)
21+
fugit (1.8.1)
22+
et-orbi (~> 1, >= 1.2.7)
1923
raabro (~> 1.4)
2024
multipart-post (2.1.1)
2125
net_http_unix (0.2.2)
26+
proc_extensions (0.2)
27+
sourcify (~> 0.5)
2228
raabro (1.4.0)
23-
rake (0.9.6)
29+
rake (10.5.0)
2430
rspec (3.10.0)
2531
rspec-core (~> 3.10.0)
2632
rspec-expectations (~> 3.10.0)
@@ -34,29 +40,45 @@ GEM
3440
diff-lcs (>= 1.2.0, < 2.0)
3541
rspec-support (~> 3.10.0)
3642
rspec-support (3.10.2)
37-
rufus-scheduler (3.8.0)
43+
ruby2ruby (2.5.0)
44+
ruby_parser (~> 3.1)
45+
sexp_processor (~> 4.6)
46+
ruby_parser (3.20.1)
47+
sexp_processor (~> 4.16)
48+
rufus-scheduler (3.8.2)
3849
fugit (~> 1.1, >= 1.1.6)
39-
stackify-ruby-apm (1.15.1)
50+
sexp_processor (4.17.0)
51+
sourcify (0.5.0)
52+
file-tail (>= 1.0.5)
53+
ruby2ruby (>= 1.2.5)
54+
ruby_parser (>= 2.0.5)
55+
sexp_processor (>= 3.0.5)
56+
stackify-ruby-apm (1.16.0.beta1)
57+
concurrent-ruby
58+
delegate_matcher
59+
faraday
60+
net_http_unix
61+
rufus-scheduler
62+
sync (0.5.0)
63+
tins (1.32.1)
64+
sync
65+
tzinfo (2.0.6)
4066
concurrent-ruby (~> 1.0)
41-
faraday (~> 0.8)
42-
net_http_unix (~> 0.2)
43-
rufus-scheduler (~> 3.0)
44-
tzinfo (2.0.4)
45-
concurrent-ruby (~> 1.0)
46-
tzinfo-data (1.2021.1)
67+
tzinfo-data (1.2023.3)
4768
tzinfo (>= 1.0.0)
4869

4970
PLATFORMS
5071
ruby
72+
x64-mingw-ucrt
5173
x86-mingw32
5274

5375
DEPENDENCIES
54-
bundler (~> 1.6)
55-
rake (~> 0)
76+
bundler (~> 2.0)
77+
rake (~> 10.0)
5678
rspec (~> 3.0)
5779
stackify-api-ruby!
58-
stackify-ruby-apm (~> 1.15)
80+
stackify-ruby-apm (~> 1.16.0.beta1)
5981
tzinfo-data
6082

6183
BUNDLED WITH
62-
1.17.13
84+
2.4.10

lib/stackify/logger_proxy.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ def initialize logger
2424

2525
protected
2626

27-
def method_missing(name, *args, &block)
28-
@logger.send(name, *args, &block)
27+
def method_missing(name, *args, **kwargs, &block)
28+
@logger.send(name, *args, **kwargs, &block)
2929
end
3030

3131
private

lib/stackify/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Stackify
2-
VERSION = '1.3.0.beta1'
2+
VERSION = '2.0.0.beta1'
33
end

stackify-api-ruby.gemspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@ Gem::Specification.new do |spec|
1212
spec.description = 'Stackify Logs and Metrics API for Ruby'
1313
spec.homepage = 'http://www.stackify.com/'
1414
spec.license = 'Apache-2.0'
15-
spec.required_ruby_version = '>= 1.9'
15+
spec.required_ruby_version = '>= 3.0'
1616

1717
spec.files = `git ls-files -z`.split("\x0")
1818
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
1919
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
2020
spec.require_paths = ['lib']
2121

22-
spec.add_development_dependency 'bundler', '~> 1.6'
23-
spec.add_development_dependency 'rake', '~> 0'
22+
spec.add_development_dependency 'bundler', '~> 2.0'
23+
spec.add_development_dependency 'rake', '~> 10.0'
2424
spec.add_development_dependency 'rspec', '~> 3.0'
2525

26-
if RUBY_PLATFORM == 'i386-mingw32'
26+
if RUBY_PLATFORM =~ /mingw32|win32|x64/
2727
spec.add_development_dependency 'tzinfo-data'
2828
end
2929

0 commit comments

Comments
 (0)