minitest-sugar 2.1.1 → 2.1.2

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
  SHA1:
3
- metadata.gz: 1c4b10e8afb9ddd4de2d203139511667aea661ad
4
- data.tar.gz: 919cc7af65e1c36a18a60d2c78162caa202c93e1
3
+ metadata.gz: 34590d3305fefaf46c6383b4a497c83b7ef3e78d
4
+ data.tar.gz: f461d4b705a017f41628e5a2d287e2af5dbf1ef7
5
5
  SHA512:
6
- metadata.gz: 78d8f31f73b828a7228613686afb0130d47899edccf51f9c46fac31e33c9d6ea5be99e5018f8a5cf2f80a1a3a636bdc95bd00589ab978ef9a795445c522d5428
7
- data.tar.gz: 66ec0d14cf5a327490e9f85a7fa85675f1161a13e4a10d1474278c0cc21831ebebf28c7be9ea72d90ae3b2497200a841ed6a32c80eaf57275c467a833f809218
6
+ metadata.gz: 6a230c50981b971b7ef10f4f435c10513ad1e77fabd7811601c360cc8844e7dc9d2e1b12b4f8715e0c9c995f9fcf88c3a4449691a225b6e352a2352e60221208
7
+ data.tar.gz: e1cbcf26423e3495544fef516964684374bdba5e017edfafafcbb9210f03795c38dc458840919bf55ae2ea86d984d9a5c12a1ead838550b1476105253e31b4d4
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- minitest-sugar [![Build Status](https://gitlab.com/frodsan/minitest-sugar/badges/master/build.svg)](https://gitlab.com/frodsan/minitest-sugar/builds)
1
+ minitest-sugar
2
2
  ==============
3
3
 
4
4
  Useful helpers for Minitest 5+.
@@ -55,7 +55,7 @@ Contributing
55
55
  Fork the project with:
56
56
 
57
57
  ```
58
- $ git clone git@gitlab.com:frodsan/minitest-sugar.git
58
+ $ git clone git@github.com:frodsan/minitest-sugar.git
59
59
  ```
60
60
 
61
61
  To install dependencies, use:
@@ -70,7 +70,7 @@ To run the test suite, do:
70
70
  $ rake test
71
71
  ```
72
72
 
73
- For bug reports and pull requests use [GitLab][issues].
73
+ For bug reports and pull requests use [GitHub][issues].
74
74
 
75
75
  License
76
76
  -------
@@ -78,4 +78,4 @@ License
78
78
  This gem is released under the [MIT License][mit].
79
79
 
80
80
  [mit]: http://www.opensource.org/licenses/MIT
81
- [issues]: https://gitlab.com/frodsan/minitest-sugar/issues
81
+ [issues]: https://github.com/frodsan/minitest-sugar/issues
@@ -16,7 +16,7 @@ module Minitest
16
16
  # end
17
17
  #
18
18
  def test(name, &block)
19
- test_name = format("test_%s", name.gsub(/\s+/, "_"))
19
+ test_name = sprintf("test_%s", name.gsub(/\s+/, "_"))
20
20
 
21
21
  if method_defined?(test_name)
22
22
  raise "#{ test_name } is already defined in #{ self }"
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Minitest
4
4
  module Sugar
5
- VERSION = "2.1.1"
5
+ VERSION = "2.1.2"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minitest-sugar
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.1
4
+ version: 2.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Francesco Rodríguez
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-04-07 00:00:00.000000000 Z
11
+ date: 2016-04-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: minitest
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '10.0'
33
+ version: '11.0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '10.0'
40
+ version: '11.0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rubocop
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -63,7 +63,7 @@ files:
63
63
  - lib/minitest/sugar.rb
64
64
  - lib/minitest/sugar/version.rb
65
65
  - test/sugar_test.rb
66
- homepage: https://gitlab.com/frodsan/minitest-sugar
66
+ homepage: https://github.com/frodsan/minitest-sugar
67
67
  licenses:
68
68
  - MIT
69
69
  metadata: {}