turbo_test_constant_tracer 0.1.11

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: da87926a3ac7eee57adbfd0150105255e8ff2cb2084f8c50b2168f5dab468dac
4
+ data.tar.gz: d722190ca81d59f037a83549716296f6a557db57b19e8cb5d3ed1626c00d2a62
5
+ SHA512:
6
+ metadata.gz: 962ae30ea54f22e6547c24e15c67583ceacf70032dd0854f55b47df7aa251607b180567c339efd2bbc3e2581eb63eb32336332b6f8872acc36f7473eadc1abb7
7
+ data.tar.gz: f1b1bdcfc9d16a7a1b9246b273885baa743de931248d0ebd4cb6d47e486e9cf2a412f21a4d58594527ef778573639ab8f637e0699c9e6404075c56ad7f62f492
@@ -0,0 +1,48 @@
1
+ name: Tests
2
+
3
+ on: [push]
4
+
5
+ jobs:
6
+ test:
7
+ name: >-
8
+ Ruby: ${{ matrix.ruby }}
9
+
10
+ runs-on: ubuntu-latest
11
+ strategy:
12
+ matrix:
13
+ ruby: [ '2.4', '2.5', '2.6', '2.7' ]
14
+
15
+ steps:
16
+ - uses: actions/checkout@v2
17
+
18
+ - name: Set up Ruby
19
+ uses: ruby/setup-ruby@v1
20
+ with:
21
+ ruby-version: ${{ matrix.ruby }}
22
+
23
+ - name: Install dependencies
24
+ env:
25
+ BUNDLE_GEMFILE: GemfileCI
26
+ run: |
27
+ bundle config path vendor/bundle
28
+ bundle install --binstubs --jobs 4 --retry 3
29
+
30
+ - name: Compile extension
31
+ env:
32
+ BUNDLE_GEMFILE: GemfileCI
33
+ run: |
34
+ bundle exec rake compile
35
+
36
+ - name: Run tests
37
+ env:
38
+ BUNDLE_GEMFILE: GemfileCI
39
+ run: |
40
+ bundle exec rake
41
+
42
+ - name: Coveralls
43
+ if: ${{ matrix.ruby == '2.7' }}
44
+ env:
45
+ BUNDLE_GEMFILE: GemfileCI
46
+ COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
47
+ run: |
48
+ bundle exec rake coveralls:push
@@ -0,0 +1,69 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ *.gem
11
+ *.rbc
12
+ /.config
13
+ /coverage/
14
+ /InstalledFiles
15
+ /pkg/
16
+ /spec/reports/
17
+ /spec/examples.txt
18
+ /test/tmp/
19
+ /test/version_tmp/
20
+ /tmp/
21
+
22
+ # Used by dotenv library to load environment variables.
23
+ # .env
24
+
25
+ ## Specific to RubyMotion:
26
+ .dat*
27
+ .repl_history
28
+ build/
29
+ *.bridgesupport
30
+ build-iPhoneOS/
31
+ build-iPhoneSimulator/
32
+
33
+ .DS_Store
34
+
35
+ ## Specific to RubyMotion (use of CocoaPods):
36
+ #
37
+ # We recommend against adding the Pods directory to your .gitignore. However
38
+ # you should judge for yourself, the pros and cons are mentioned at:
39
+ # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
40
+ #
41
+ # vendor/Pods/
42
+
43
+ ## Documentation cache and generated files:
44
+ /.yardoc/
45
+ /_yardoc/
46
+ /doc/
47
+ /rdoc/
48
+
49
+ ## Environment normalization:
50
+ /.bundle/
51
+ /vendor/bundle
52
+ /lib/bundler/man/
53
+
54
+ # for a library or gem, you might want to ignore these files since the code is
55
+ # intended to run in multiple environments; otherwise, check them in:
56
+ # Gemfile.lock
57
+ # .ruby-version
58
+ # .ruby-gemset
59
+
60
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
61
+ .rvmrc
62
+
63
+ #SAM artifacts
64
+ /packaged.yaml
65
+
66
+ .byebug_history
67
+
68
+ lib/ext/
69
+ lib/hash_lookup_with_proxy_ext*
@@ -0,0 +1,67 @@
1
+ AllCops:
2
+ DisplayCopNames: true
3
+ DisplayStyleGuide: true
4
+ ExtraDetails: true
5
+ NewCops: enable
6
+ TargetRubyVersion: 2.7
7
+ Exclude:
8
+ - Gemfile
9
+ - "**/*.gemfile"
10
+ - bin/*
11
+ - "*.gemspec"
12
+ - lib/turbo_test_constant_tracer/delegate_class.rb
13
+ - test/unit/delegate_class_test.rb
14
+
15
+ Layout/LineLength:
16
+ Enabled: true
17
+ AutoCorrect: false
18
+ Max: 100
19
+ Exclude:
20
+ - test/**/*
21
+
22
+ Metrics/AbcSize:
23
+ Exclude:
24
+ - test/helpers/*
25
+ - test/unit/hash_lookup_with_proxy_test.rb
26
+
27
+ Metrics/BlockLength:
28
+ Exclude:
29
+ - test/**/*_test.rb
30
+
31
+ Metrics/ClassLength:
32
+ Exclude:
33
+ - test/**/*
34
+ - lib/tasks/*
35
+
36
+ Metrics/MethodLength:
37
+ Max: 10
38
+ Exclude:
39
+ - test/**/*
40
+
41
+ Metrics/ModuleLength:
42
+ Exclude:
43
+ - test/**/*
44
+
45
+ Style/ClassAndModuleChildren:
46
+ Exclude:
47
+ - test/**/*
48
+
49
+ Style/Documentation:
50
+ Enabled: false
51
+
52
+ Style/FrozenStringLiteralComment:
53
+ Exclude:
54
+ - test/unit/delegated_proxy/*
55
+ - test/unit/internal_proxy/*
56
+ - test/unit/ruby_behaviour/*
57
+
58
+ Style/OptionalBooleanParameter:
59
+ Exclude:
60
+ - test/**/*
61
+
62
+ Style/StringLiterals:
63
+ Enabled: true
64
+ EnforcedStyle: double_quotes
65
+ ConsistentQuotesInMultiline: true
66
+
67
+
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at marcessindi@icloud.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [https://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: https://contributor-covenant.org
74
+ [version]: https://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,8 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in turbo_test_constant_tracer.gemspec
4
+ gemspec
5
+
6
+ eval_gemfile(File.expand_path('Gemfile.common', __dir__))
7
+
8
+ gem 'simplecov', '~> 0.18.5'
@@ -0,0 +1,3 @@
1
+ gem "rubocop"
2
+ gem "byebug"
3
+ gem "mocha"
@@ -0,0 +1,63 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ turbo_test_constant_tracer (0.1.11)
5
+ binding_of_caller
6
+ turbo_test_events
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ ast (2.4.1)
12
+ binding_of_caller (0.8.0)
13
+ debug_inspector (>= 0.0.1)
14
+ byebug (11.1.3)
15
+ concurrent-ruby (1.1.7)
16
+ debug_inspector (0.0.3)
17
+ docile (1.3.2)
18
+ minitest (5.14.1)
19
+ mocha (1.11.2)
20
+ parallel (1.19.2)
21
+ parser (2.7.1.4)
22
+ ast (~> 2.4.1)
23
+ rainbow (3.0.0)
24
+ rake (13.0.1)
25
+ rake-compiler (1.1.1)
26
+ rake
27
+ regexp_parser (1.7.1)
28
+ rexml (3.2.4)
29
+ rubocop (0.89.1)
30
+ parallel (~> 1.10)
31
+ parser (>= 2.7.1.1)
32
+ rainbow (>= 2.2.2, < 4.0)
33
+ regexp_parser (>= 1.7)
34
+ rexml
35
+ rubocop-ast (>= 0.3.0, < 1.0)
36
+ ruby-progressbar (~> 1.7)
37
+ unicode-display_width (>= 1.4.0, < 2.0)
38
+ rubocop-ast (0.3.0)
39
+ parser (>= 2.7.1.4)
40
+ ruby-progressbar (1.10.1)
41
+ simplecov (0.18.5)
42
+ docile (~> 1.1)
43
+ simplecov-html (~> 0.11)
44
+ simplecov-html (0.12.2)
45
+ turbo_test_events (0.1.2)
46
+ concurrent-ruby (~> 1.1.6)
47
+ unicode-display_width (1.7.0)
48
+
49
+ PLATFORMS
50
+ ruby
51
+
52
+ DEPENDENCIES
53
+ byebug
54
+ minitest (~> 5.14.1)
55
+ mocha
56
+ rake (~> 13.0)
57
+ rake-compiler
58
+ rubocop
59
+ simplecov (~> 0.18.5)
60
+ turbo_test_constant_tracer!
61
+
62
+ BUNDLED WITH
63
+ 2.1.4
@@ -0,0 +1,9 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in turbo_test_ruby_refinements.gemspec
4
+ gemspec
5
+
6
+ eval_gemfile(File.expand_path("Gemfile.common", __dir__))
7
+
8
+ gem "simplecov", "~> 0.16.1"
9
+ gem "coveralls"
@@ -0,0 +1,78 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ turbo_test_constant_tracer (0.1.11)
5
+ binding_of_caller
6
+ turbo_test_events
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ ast (2.4.1)
12
+ binding_of_caller (0.8.0)
13
+ debug_inspector (>= 0.0.1)
14
+ byebug (11.1.3)
15
+ concurrent-ruby (1.1.7)
16
+ coveralls (0.8.23)
17
+ json (>= 1.8, < 3)
18
+ simplecov (~> 0.16.1)
19
+ term-ansicolor (~> 1.3)
20
+ thor (>= 0.19.4, < 2.0)
21
+ tins (~> 1.6)
22
+ debug_inspector (0.0.3)
23
+ docile (1.3.2)
24
+ json (2.3.1)
25
+ minitest (5.14.1)
26
+ mocha (1.11.2)
27
+ parallel (1.19.2)
28
+ parser (2.7.1.4)
29
+ ast (~> 2.4.1)
30
+ rainbow (3.0.0)
31
+ rake (13.0.1)
32
+ rake-compiler (1.1.1)
33
+ rake
34
+ regexp_parser (1.7.1)
35
+ rexml (3.2.4)
36
+ rubocop (0.89.1)
37
+ parallel (~> 1.10)
38
+ parser (>= 2.7.1.1)
39
+ rainbow (>= 2.2.2, < 4.0)
40
+ regexp_parser (>= 1.7)
41
+ rexml
42
+ rubocop-ast (>= 0.3.0, < 1.0)
43
+ ruby-progressbar (~> 1.7)
44
+ unicode-display_width (>= 1.4.0, < 2.0)
45
+ rubocop-ast (0.3.0)
46
+ parser (>= 2.7.1.4)
47
+ ruby-progressbar (1.10.1)
48
+ simplecov (0.16.1)
49
+ docile (~> 1.1)
50
+ json (>= 1.8, < 3)
51
+ simplecov-html (~> 0.10.0)
52
+ simplecov-html (0.10.2)
53
+ sync (0.5.0)
54
+ term-ansicolor (1.7.1)
55
+ tins (~> 1.0)
56
+ thor (1.0.1)
57
+ tins (1.25.0)
58
+ sync
59
+ turbo_test_events (0.1.2)
60
+ concurrent-ruby (~> 1.1.6)
61
+ unicode-display_width (1.7.0)
62
+
63
+ PLATFORMS
64
+ ruby
65
+
66
+ DEPENDENCIES
67
+ byebug
68
+ coveralls
69
+ minitest (~> 5.14.1)
70
+ mocha
71
+ rake (~> 13.0)
72
+ rake-compiler
73
+ rubocop
74
+ simplecov (~> 0.16.1)
75
+ turbo_test_constant_tracer!
76
+
77
+ BUNDLED WITH
78
+ 2.1.4
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2020 Marcos Essindi
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.