fbe 0.4.0 → 0.5.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bcae083c116fe7dba6cf632dd55fdf3a65e3d88b3c32afe4f39dda17e6cfd055
4
- data.tar.gz: b69a33a628245a01b72cec23b21bb4b4dc3df15ac3f6a49920c7edad11446d80
3
+ metadata.gz: 8804446cc55d23590d576878600c4e5c760cfb016f0a46c4033d8c85f44a2e1f
4
+ data.tar.gz: 605d2cf5292946ce0361d68b7391e4f39b95f54a9abf2ad633f0bb88fd6940da
5
5
  SHA512:
6
- metadata.gz: bf2b5de5a2b4ff2916c63c2b4124deb742edd79338d37b7e2b0377bd42c26f80556a3ee0b70e21bcbc711ea76dbf3bb11e52bc885afec27d3627f7c8b91f8099
7
- data.tar.gz: f29473025b68679a241a4fe594fbe684cfeab25f4bb1b7ab973d181ede994a8d5a54943dc7be751cd53ef126a41ebbc95734c5297b511254554b8eac2fe3e216
6
+ metadata.gz: 7812a639f13574f6918ed5a92ab239203701e484f6d90965f970d2df81691d186973f2383e5d8ef43afeba07cc0fe52eb2bb4110329c63f34cd2eb0067cc686c
7
+ data.tar.gz: 344616cbcd735acf47104035876bd05ae3f0c1a0c812d51fd7772f93dad64022e8d188ccf05ea6a2a77c6691b58a726d1c56ac48632118dc3ebe18030ddc2f3e
@@ -1,5 +1,5 @@
1
1
  (award
2
- (explain "When a bug is reported and accepted by the team, the reporter gets a bonus")
2
+ (explain "When a bug is reported and accepted by the team, the reporter receives a bonus")
3
3
  (aka
4
4
  (let bonus {{ 4 | times: love }})
5
5
  (give bonus "as a basis")
@@ -1,5 +1,5 @@
1
1
  (award
2
- (explain "When a code contribution is made, the author gets a bonus")
2
+ (explain "When a code contribution is made, the author receives a bonus")
3
3
  (in hoc "the total number of hits-of-code in the contribution")
4
4
  (in comments "the total number of comments made by all reviewers")
5
5
  (in reviews "the number of reviews provided")
@@ -1,5 +1,5 @@
1
1
  (award
2
- (explain "An author of every code review gets a bonus")
2
+ (explain "An author of every code review receives a bonus")
3
3
  (in hoc "the total number of hits-of-code in the contribution")
4
4
  (in comments "the total number of comments made by all reviewers")
5
5
  (in self "1 if the review was made for their own code contribution, otherwise zero")
@@ -1,5 +1,5 @@
1
1
  (award
2
- (explain "When an issue is submitted but then rejected by the team, the reporter gets a penalty")
2
+ (explain "When an issue is submitted but then rejected by the team, the reporter receives a penalty")
3
3
  (aka
4
4
  (let fee {{ -8 | times: anger }})
5
5
  (give fee "as a basis")
@@ -1,5 +1,5 @@
1
1
  (award
2
- (explain "When an enhancement is suggested and accepted by the team, the reporter gets a bonus")
2
+ (explain "When an enhancement is suggested and accepted by the team, the reporter receives a bonus")
3
3
  (aka
4
4
  (let bonus {{ 4 | times: love }})
5
5
  (give bonus "as a basis")
@@ -0,0 +1,7 @@
1
+ (award
2
+ (explain "Oversized pull requests get penalized")
3
+ (aka
4
+ (let fee {{ -8 | times: anger }})
5
+ (give fee "as a basis")
6
+ "deduct ${fee} points")
7
+ )
@@ -1,5 +1,5 @@
1
1
  (award
2
- (explain "When a new release is published, everybody who contributed gets a bonus")
2
+ (explain "When a new release is published, everyone who contributed receives a bonus")
3
3
  (in hoc "how many hits-of-code are in the release")
4
4
  (in contributors "how many people contributed to the release")
5
5
  (aka
@@ -1,5 +1,5 @@
1
1
  (award
2
- (explain "When a bug is resolved, the person who was assigned to it gets a bonus")
2
+ (explain "When a bug is resolved, the person who was assigned to it receives a bonus")
3
3
  (in hours "how many hours it took to resolve the bug")
4
4
  (in self "1 if the bug was reported and resolved by the same person, otherwise zero")
5
5
  (set days (div hours 24))
data/lib/fbe.rb CHANGED
@@ -10,5 +10,5 @@
10
10
  # License:: MIT
11
11
  module Fbe
12
12
  # Current version of the gem (changed by +.rultor.yml+ on every release)
13
- VERSION = '0.4.0' unless const_defined?(:VERSION)
13
+ VERSION = '0.5.0' unless const_defined?(:VERSION)
14
14
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fbe
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yegor Bugayenko
@@ -272,6 +272,7 @@ files:
272
272
  - assets/bylaws/code-review-was-rewarded.liquid
273
273
  - assets/bylaws/dud-was-punished.liquid
274
274
  - assets/bylaws/enhancement-suggestion-was-rewarded.liquid
275
+ - assets/bylaws/long-pull-was-punished.liquid
275
276
  - assets/bylaws/published-release-was-rewarded.liquid
276
277
  - assets/bylaws/push-to-master-was-punished.liquid
277
278
  - assets/bylaws/resolved-bug-was-rewarded.liquid