attractor-ruby 0.1.0 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +6 -4
- data/lib/attractor/calculators/ruby_calculator.rb +2 -2
- data/lib/attractor/ruby/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f74b4096d3c35f9cfdb22832b95de9415219e8ac4be48bcc7f61a1ecc8098dd5
|
4
|
+
data.tar.gz: 784b3d0338f9a0259748fa902fe5c0c9ec09f8b3bf27b8fbed24d2cc2cf41075
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d18dd561ceaa055af35ea5b5e08df69488c8df982ee09a0815a8208bddb538d007a11bcc0d1d4900f1cd5a42fb26f2a110beaeadc3a878148c9efc669331c06f
|
7
|
+
data.tar.gz: 18fbfa210b9de8cd06b23d467dff693173c9448c2f7ec2505c3e48ed908c531992855340b76510e2e3f86e68abff8cafa067c5c6a1b872c93ec460cfd9691e11
|
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-
|
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-
|
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, verbose: false)
|
8
|
+
super(file_prefix: file_prefix, ignores: ignores, file_extension: 'rb', minimum_churn_count: minimum_churn_count, start_ago: start_ago, verbose: verbose)
|
9
9
|
@type = "Ruby"
|
10
10
|
end
|
11
11
|
|
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.
|
4
|
+
version: 0.3.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:
|
11
|
+
date: 2023-04-15 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.
|
181
|
-
signing_key:
|
180
|
+
rubygems_version: 3.3.22
|
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: []
|