attractor-ruby 0.1.0 → 0.2.0

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: f49f91fe9ce4ac23462d87c370dc81c9d566df19c9c830e0b5d0718eb7e88be1
4
- data.tar.gz: d1203212d502ff645aebde5652f3bfc906db3270429cb74e3eb271283a7358a1
3
+ metadata.gz: e51ad0b6b8e02acec04d09afbb938dad4eba151389c647a980109dc3949c5ca8
4
+ data.tar.gz: cc80bc59a87b01348c8f9a31b31d0a4468a3b6cb828eb89669dbe623dc770d95
5
5
  SHA512:
6
- metadata.gz: 34dc390b7985db69ef4d8fd0f7e2dc015a84f469c5e87ac71862d4ee280514827c02728e93e4e802a91c64ac8d1168e965c5f5cc94071688947c5a36af43a241
7
- data.tar.gz: a1c62f7ad1d10bf0a8750e8b4d9a4ed09b3d58dfcf57e685fd8a2978850586e00be9dea006d4d966697042d0d319e45c35773a6791030f7cc571810a4472a5eb
6
+ metadata.gz: 4be77e891a74a700f010dfea897bfa8ef6dd52a0c2b220f6b369908ea67471a51927e2f700f9ebfeb3ac08100b6aea3cd9d95da8831fc1f7af51afd459d99def
7
+ data.tar.gz: 3ac8d2c7303b80c24e59559b4d49ce693d120205dcb738dd5352ad236c5b9ec8bc4b299758b5980952366fa991a26a71368fa03b75bfcb90a0f5a1067cfe937d
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  <!-- MARKDOWN LINKS & IMAGES -->
2
2
  <!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
3
- [![All Contributors](https://img.shields.io/badge/all_contributors-2-orange.svg?style=flat-square)](#contributors-)
3
+ [![All Contributors](https://img.shields.io/badge/all_contributors-3-orange.svg?style=flat-square)](#contributors-)
4
4
  <!-- ALL-CONTRIBUTORS-BADGE:END -->
5
5
  [attractor]: https://github.com/julianrubisch/attractor-ruby
6
6
  [forks-shield]: https://img.shields.io/github/forks/julianrubisch/attractor-ruby.svg?style=flat-square
@@ -126,13 +126,15 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
126
126
  <!-- markdownlint-disable -->
127
127
  <table>
128
128
  <tr>
129
- <td align="center"><a href="https://www.andrewmason.me/"><img src="https://avatars1.githubusercontent.com/u/18423853?v=4" width="100px;" alt=""/><br /><sub><b>Andrew Mason</b></sub></a><br /><a href="https://github.com/julianrubisch/attractor-ruby/commits?author=andrewmcodes" title="Documentation">📖</a> <a href="https://github.com/julianrubisch/attractor-ruby/commits?author=andrewmcodes" title="Code">💻</a></td>
130
- <td align="center"><a href="http://www.julianrubisch.at"><img src="https://avatars0.githubusercontent.com/u/4352208?v=4" width="100px;" alt=""/><br /><sub><b>Julian Rubisch</b></sub></a><br /><a href="https://github.com/julianrubisch/attractor-ruby/commits?author=julianrubisch" title="Code">💻</a></td>
129
+ <td align="center"><a href="https://www.andrewmason.me/"><img src="https://avatars1.githubusercontent.com/u/18423853?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Andrew Mason</b></sub></a><br /><a href="https://github.com/julianrubisch/attractor-ruby/commits?author=andrewmcodes" title="Documentation">📖</a> <a href="https://github.com/julianrubisch/attractor-ruby/commits?author=andrewmcodes" title="Code">💻</a></td>
130
+ <td align="center"><a href="http://www.julianrubisch.at"><img src="https://avatars0.githubusercontent.com/u/4352208?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Julian Rubisch</b></sub></a><br /><a href="https://github.com/julianrubisch/attractor-ruby/commits?author=julianrubisch" title="Code">💻</a></td>
131
+ <td align="center"><a href="https://experimentslabs.com"><img src="https://avatars.githubusercontent.com/u/1732268?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Manuel Tancoigne</b></sub></a><br /><a href="https://github.com/julianrubisch/attractor-ruby/commits?author=mtancoigne" title="Code">💻</a></td>
131
132
  </tr>
132
133
  </table>
133
134
 
134
- <!-- markdownlint-enable -->
135
+ <!-- markdownlint-restore -->
135
136
  <!-- prettier-ignore-end -->
137
+
136
138
  <!-- ALL-CONTRIBUTORS-LIST:END -->
137
139
 
138
140
  This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!
@@ -4,8 +4,8 @@ require 'flog'
4
4
 
5
5
  module Attractor
6
6
  class RubyCalculator < BaseCalculator
7
- def initialize(file_prefix: '', minimum_churn_count: 3, start_ago: 365 * 5)
8
- super(file_prefix: file_prefix, file_extension: 'rb', minimum_churn_count: minimum_churn_count, start_ago: start_ago)
7
+ def initialize(file_prefix: '', ignores: '', minimum_churn_count: 3, start_ago: 365 * 5)
8
+ super(file_prefix: file_prefix, ignores: ignores, file_extension: 'rb', minimum_churn_count: minimum_churn_count, start_ago: start_ago)
9
9
  @type = "Ruby"
10
10
  end
11
11
 
@@ -1,5 +1,5 @@
1
1
  module Attractor
2
2
  module Ruby
3
- VERSION = "0.1.0"
3
+ VERSION = "0.2.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: attractor-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Julian Rubisch
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-02-06 00:00:00.000000000 Z
11
+ date: 2021-03-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: attractor
@@ -162,7 +162,7 @@ metadata:
162
162
  source_code_uri: https://github.com/julianrubisch/attractor-ruby
163
163
  bug_tracker_uri: https://github.com/julianrubisch/attractor-ruby/issues
164
164
  changelog_uri: https://github.com/julianrubisch/attractor-ruby/CHANGELOG.md
165
- post_install_message:
165
+ post_install_message:
166
166
  rdoc_options: []
167
167
  require_paths:
168
168
  - lib
@@ -177,8 +177,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
177
177
  - !ruby/object:Gem::Version
178
178
  version: '0'
179
179
  requirements: []
180
- rubygems_version: 3.0.3
181
- signing_key:
180
+ rubygems_version: 3.2.3
181
+ signing_key:
182
182
  specification_version: 4
183
183
  summary: Attractor plugin for the Ruby programming language and its ecosystem
184
184
  test_files: []