ta_deep_pluck 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: f31993b2ece1a2d0e43e8ce5be86847ee20a1ef9652c66759ceccf46a0d6d6cf
4
+ data.tar.gz: 0e52c81ad0a3960d3da2e1a5749472d700671abae4fb93933460c0cc92d19ffa
5
+ SHA512:
6
+ metadata.gz: cacdfb2ed8a01af168d2db987cb4305536cc2862760cbb223936738b0f48878f545be5c464df985bc387242dc512a94b21a39624d37dbc0790d7b6b316f5ae74
7
+ data.tar.gz: cbf29d6fa09ab08aa3f8834ab6b346ba73e4a15f42dd3a2fdfc85be5e3caee5321224044b7858c4da9e2ca8fa22cd73ecd3e6451766ae648daab639a84de1139
@@ -0,0 +1,12 @@
1
+ # These are supported funding model platforms
2
+
3
+ github: [khiav223577] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4
+ patreon: # Replace with a single Patreon username
5
+ open_collective: # Replace with a single Open Collective username
6
+ ko_fi: # Replace with a single Ko-fi username
7
+ tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8
+ community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9
+ liberapay: # Replace with a single Liberapay username
10
+ issuehunt: # Replace with a single IssueHunt username
11
+ otechie: # Replace with a single Otechie username
12
+ custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
@@ -0,0 +1,73 @@
1
+ name: Ruby
2
+
3
+ on:
4
+ push:
5
+ paths-ignore:
6
+ - 'README.md'
7
+ - 'CHANGELOG.md'
8
+ pull_request:
9
+ branches: [ master ]
10
+ paths-ignore:
11
+ - 'README.md'
12
+ - 'CHANGELOG.md'
13
+
14
+ jobs:
15
+ test:
16
+ runs-on: ubuntu-latest
17
+ name: Test
18
+ if: "contains(github.event.commits[0].message, '[ci skip]') == false"
19
+ strategy:
20
+ fail-fast: false
21
+ matrix:
22
+ ruby:
23
+ - 2.2
24
+ - 2.6
25
+ - 2.7
26
+ - 3.0
27
+ gemfile:
28
+ - 3.2.gemfile
29
+ - 4.2.gemfile
30
+ - 5.0.gemfile
31
+ - 5.1.gemfile
32
+ - 5.2.gemfile
33
+ - 6.0.gemfile
34
+ - 6.1.gemfile
35
+ exclude:
36
+ - gemfile: 3.2.gemfile
37
+ ruby: 2.6
38
+ - gemfile: 3.2.gemfile
39
+ ruby: 2.7
40
+ - gemfile: 3.2.gemfile
41
+ ruby: 3.0
42
+ - gemfile: 4.2.gemfile
43
+ ruby: 2.7
44
+ - gemfile: 4.2.gemfile
45
+ ruby: 3.0
46
+ - gemfile: 5.0.gemfile
47
+ ruby: 3.0
48
+ - gemfile: 5.1.gemfile
49
+ ruby: 3.0
50
+ - gemfile: 5.2.gemfile
51
+ ruby: 3.0
52
+ - gemfile: 6.0.gemfile
53
+ ruby: 2.2
54
+ - gemfile: 6.1.gemfile
55
+ ruby: 2.2
56
+ env:
57
+ BUNDLE_GEMFILE: "gemfiles/${{ matrix.gemfile }}"
58
+
59
+ steps:
60
+ - name: Checkout
61
+ uses: actions/checkout@v2
62
+ - name: Setup Ruby
63
+ uses: ruby/setup-ruby@v1
64
+ with:
65
+ ruby-version: ${{ matrix.ruby }}
66
+ bundler-cache: true # runs 'bundle install' and caches installed gems automatically
67
+ - name: Run tests
68
+ run: bundle exec rake
69
+ - name: Publish code coverage
70
+ if: ${{ success() && github.event.pull_request.head.repo.full_name == github.repository }}
71
+ uses: paambaati/codeclimate-action@v2.7.5
72
+ env:
73
+ CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
data/.gitignore ADDED
@@ -0,0 +1,10 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /gemfiles/*.gemfile.lock
5
+ /_yardoc/
6
+ /coverage/
7
+ /doc/
8
+ /pkg/
9
+ /spec/reports/
10
+ /tmp/