gctrack 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 65d1faae29e8e0e8a7ebafce07de5e62a09c71f4196fac35ef29afe8eeacb6d9
4
- data.tar.gz: 73cf8d0b993f6a984eacb47686b1e9c58f1d3c59f0cc4a8b88ca07d33399be61
3
+ metadata.gz: 4ed8e51843aac501413b88cad8e6f74516cd4525803dbfba66d84a4bebed8dfa
4
+ data.tar.gz: 0b9b76a00dfbf27ea528d4ab40b0ce9c2f124e40972f4a11c2c25fa1b9b64aa6
5
5
  SHA512:
6
- metadata.gz: 0d1b983c3bbf19a35c27a21eb5f48e5109d7e189950c5ab86082ee933380d8d3358cd6078ad78c1c653064657731052eb48fc771deda0e7fae854dff312dcca7
7
- data.tar.gz: 2b3fdea5f648907afec6add265244161e2559767166e61adfbf74edc96a9eb1177a21110d0f43c6df6756f6f4b9f535b74907a2836b0ada514c0e614cd679f7f
6
+ metadata.gz: 0f4d349e6a01970c86e62bcaeb46b1d8ff951c44198f5ca3f88eac5dd1147bcabcf96f2f06ffc7988935a2d0a60e66b79829b212bf2fbf45b64141c047fa86f1
7
+ data.tar.gz: 39758adf96477a45f5f711b5334545e9a6ebe2888858cddaa8ec2a63558b9be8d802ee9fefbd20083404274ef95520460d2da43fe5e9b774e6dbeb4744240a56
@@ -0,0 +1,23 @@
1
+ name: CI
2
+
3
+ on: [push, pull_request]
4
+
5
+ jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
+ strategy:
9
+ fail-fast: false
10
+ matrix:
11
+ ruby: [ ruby-head, '3.0', '2.7', '2.6', '2.5' ]
12
+ steps:
13
+ - uses: actions/checkout@v2
14
+ - name: Set up Ruby
15
+ uses: ruby/setup-ruby@v1
16
+ with:
17
+ ruby-version: ${{ matrix.ruby }}
18
+ - name: Install dependencies
19
+ run: bundle install
20
+ - name: Run test
21
+ run: rake
22
+ - name: Install gem
23
+ run: rake install
data/.gitignore CHANGED
@@ -3,3 +3,4 @@
3
3
  /lib/gctrack/*.bundle
4
4
  /tmp/*
5
5
  *.gem
6
+ Gemfile.lock
@@ -1,5 +1,5 @@
1
1
  require 'mkmf'
2
2
 
3
- $CFLAGS = "-O3 -Wall"
3
+ $CFLAGS << " -O3 -Wall "
4
4
 
5
5
  create_makefile('gctrack/gctrack')
data/gctrack.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'gctrack'
3
- s.version = '0.1.1'
3
+ s.version = '0.1.2'
4
4
  s.summary = 'Track Ruby GC events'
5
5
  s.description = <<-DOC
6
6
  This gem can be used to track Ruby GC tracepoints that are normally only visible through GC extensions.
@@ -10,6 +10,8 @@ Gem::Specification.new do |s|
10
10
  s.email = ['scott.francis@shopify.com', 'alex.snaps@shopify.com']
11
11
  s.license = 'MIT'
12
12
 
13
+ s.metadata["allowed_push_host"] = "https://rubygems.org"
14
+
13
15
  s.files = `git ls-files`.split("\n")
14
16
  s.extensions = ['ext/gctrack/extconf.rb']
15
17
  s.add_development_dependency 'rake-compiler', '~> 1.0'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gctrack
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Scott Francis
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-02-04 00:00:00.000000000 Z
12
+ date: 2021-05-04 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake-compiler
@@ -49,10 +49,9 @@ extensions:
49
49
  - ext/gctrack/extconf.rb
50
50
  extra_rdoc_files: []
51
51
  files:
52
+ - ".github/workflows/ci.yml"
52
53
  - ".gitignore"
53
- - ".travis.yml"
54
54
  - Gemfile
55
- - Gemfile.lock
56
55
  - LICENSE.md
57
56
  - README.md
58
57
  - Rakefile
@@ -64,7 +63,8 @@ files:
64
63
  homepage: https://github.com/Shopify/gctrack
65
64
  licenses:
66
65
  - MIT
67
- metadata: {}
66
+ metadata:
67
+ allowed_push_host: https://rubygems.org
68
68
  post_install_message:
69
69
  rdoc_options: []
70
70
  require_paths:
@@ -80,8 +80,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
80
80
  - !ruby/object:Gem::Version
81
81
  version: '0'
82
82
  requirements: []
83
- rubyforge_project:
84
- rubygems_version: 2.7.6
83
+ rubygems_version: 3.0.3
85
84
  signing_key:
86
85
  specification_version: 4
87
86
  summary: Track Ruby GC events
data/.travis.yml DELETED
@@ -1,6 +0,0 @@
1
- language: ruby
2
-
3
- rvm:
4
- - '2.3.3'
5
- - '2.4.1'
6
- - '2.5.3'
data/Gemfile.lock DELETED
@@ -1,40 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- gctrack (0.1.1)
5
-
6
- GEM
7
- remote: https://rubygems.org/
8
- specs:
9
- highline (1.6.20)
10
- json_pure (1.8.1)
11
- mime-types (1.25.1)
12
- package_cloud (0.2.44)
13
- highline (= 1.6.20)
14
- json_pure (= 1.8.1)
15
- rainbow (= 2.1.0)
16
- rest-client (~> 1.6.7)
17
- thor (~> 0.18)
18
- power_assert (1.0.2)
19
- rainbow (2.1.0)
20
- rake (12.0.0)
21
- rake-compiler (1.0.4)
22
- rake
23
- rest-client (1.6.9)
24
- mime-types (~> 1.16)
25
- test-unit (3.2.5)
26
- power_assert
27
- thor (0.20.0)
28
-
29
- PLATFORMS
30
- ruby
31
-
32
- DEPENDENCIES
33
- gctrack!
34
- package_cloud
35
- rake
36
- rake-compiler (~> 1.0)
37
- test-unit
38
-
39
- BUNDLED WITH
40
- 1.17.3