minitest-tagz 1.3.2 → 1.4.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
  SHA1:
3
- metadata.gz: 22f524b6f51a7cd2f32b1aa058cc01b9312c1d4f
4
- data.tar.gz: e99ae97dfcd20627459a8a262be45e9be9375611
3
+ metadata.gz: 0c713efe9dc31e903d27f7d187a03df955c9ab45
4
+ data.tar.gz: 65fdd3a8c25f0f94597dd15e50f4047a5015d99a
5
5
  SHA512:
6
- metadata.gz: bba19f9be3083488a3eb3a4da4dc2e78e272a43a57ac0e5d2001e218ff54d4ef108c0fe1c8b183db7d7595b2805903bae802594dea31a73f1c426da2472d5509
7
- data.tar.gz: b77266c20f32e4ab7b15cca7fe9d601d1c6fa970aff7860e1b1b11230b7f6effe196852887af8af9ebf5a8090115476786ee3ced7ae98135033cff5a9a01e761
6
+ metadata.gz: f32b4c442c805d2bce33fea31695484333185b5c154c61ed5228d2659b3a86938a263871ec46daab1a57c251dd308901a7b3ca437498c2789b425ecd88618c1e
7
+ data.tar.gz: 4761b1538fb8c5ab23565c34c791332ceb2a186f56f57217d6065032550bd551bde3f6def04734e2f590151ef5940e5234901251cc35150961bca658dd80531d
data/README.md CHANGED
@@ -111,12 +111,7 @@ Minitest::Tagz.choose_tags(*ENV['TAGS'].split(','), run_all_if_no_match: true) i
111
111
  This is how we add `tag :focus` in our projects:
112
112
 
113
113
  ```rb
114
- require 'minitest/tagz'
115
-
116
- tags = ENV['TAGS'].split(',') if ENV['TAGS']
117
- tags ||= []
118
- tags << 'focus'
119
- Minitest::Tagz.choose_tags(*tags, run_all_if_no_match: true)
114
+ require 'minitest/tagz/focus'
120
115
  ```
121
116
 
122
117
  ## Debugging
@@ -0,0 +1,5 @@
1
+ require 'minitest/tagz'
2
+
3
+ tags = ENV['TAGS'].split(',') if ENV['TAGS']
4
+ tags ||= ['focus']
5
+ Minitest::Tagz.choose_tags(*tags, run_all_if_no_match: true)
@@ -1,5 +1,5 @@
1
1
  module Minitest
2
2
  module Tagz
3
- VERSION = "1.3.2"
3
+ VERSION = "1.4.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minitest-tagz
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.2
4
+ version: 1.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josh Bodah
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-03-09 00:00:00.000000000 Z
11
+ date: 2016-03-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: minitest
@@ -139,6 +139,7 @@ files:
139
139
  - README.md
140
140
  - Rakefile
141
141
  - lib/minitest/tagz.rb
142
+ - lib/minitest/tagz/focus.rb
142
143
  - lib/minitest/tagz/version.rb
143
144
  - minitest-tagz.gemspec
144
145
  homepage: https://github.com/backupify/minitest-tagz