strong_versions 0.4.3 → 0.4.4

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: a19f2c731b09de210cb242a54ed087493741010a84fd98324a42834bfffb32f3
4
- data.tar.gz: 07fde31789f1c729ede0859404cf5574c20566b3fc2e7e152cc7ee62d45a3d8c
3
+ metadata.gz: 2948e08aad68876155035d029499da973771f8419f2519981c065e8d1a069938
4
+ data.tar.gz: 85d5cc28abf45e9434ab2d92cb98590874a8a4bc0f2573306594fc5119c08175
5
5
  SHA512:
6
- metadata.gz: 48f230820ee7ebe3e69c6f4e938a01ef12288d6b624869cddf9905701cd2aaeefd3797cd499ea667dd7816182140688bbf3b6a07019e24cea2bd2a98c8b53c28
7
- data.tar.gz: 129dcaae26d6d8546e52dc7384bbd4ddac4879750399d158517b27198a1fc31a2424566322d343f4959a252dea196a809a26e1acd7fcc63628809d07b157c099
6
+ metadata.gz: 0015b7477c4df28f48c2a7b40c4ea517da1e26a9698f92331db002fd771278341ab38d153eb814d14883d165d4a3465c65aea62e97e3b1c244ccb1014b736013
7
+ data.tar.gz: 4b2688647749fca796f8d78182abb2e8ff49ea3b225c7fa6befeb4222328ceda0e3319432667743fc40d37fe0fcf2ae2636eb2affba2c5ee489faff3f6de52e2
data/README.md CHANGED
@@ -28,7 +28,7 @@ When all gems in a `Gemfile` follow this convention it SHOULD always be safe to
28
28
  Add the gem to your `Gemfile`
29
29
 
30
30
  ```ruby
31
- gem 'strong_versions', '~> 0.4.3'
31
+ gem 'strong_versions', '~> 0.4.4'
32
32
  ```
33
33
 
34
34
  And rebuild your bundle:
@@ -39,7 +39,7 @@ $ bundle install
39
39
 
40
40
  Or install yourself:
41
41
  ```bash
42
- $ gem install strong_versions -v '0.4.3'
42
+ $ gem install strong_versions -v '0.4.4'
43
43
  ```
44
44
 
45
45
  ## Usage
@@ -87,7 +87,7 @@ module StrongVersions
87
87
  def gem_regex(subject, name)
88
88
  {
89
89
  gemfile: /^(\s*)gem\s+['"]#{name}['"].*$/,
90
- gemspec: /^(\s*)spec.add_[a-z_]*_dependency\s+['"]#{name}['"].*$/
90
+ gemspec: /^(\s*)spec.add_[a-z_]*_?dependency\s+['"]#{name}['"].*$/
91
91
  }.fetch(subject)
92
92
  end
93
93
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module StrongVersions
4
- VERSION = '0.4.3'
4
+ VERSION = '0.4.4'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: strong_versions
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.3
4
+ version: 0.4.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bob Farrell