list_matcher 1.0.0 → 1.0.1
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 +4 -4
- data/README.md +1 -1
- data/lib/list_matcher/version.rb +1 -1
- data/list_matcher.gemspec +13 -12
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 233f0ed367dd0fe761cff13a2998ce8310401d0c
|
4
|
+
data.tar.gz: a1cbb19b367ce7aa5279d68a519c16f613462ad2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8665a1df6177622c962ab021aa3a60177e8c2cd33dd6ca68a12f7cf96c3305a156ba8a91a7c6d763644b5d0b809fe4add5c373afb32c3496302dac09dac8eccd
|
7
|
+
data.tar.gz: fc2f7625c101f014ea1c8151387539b2a89636fcb4d5cedfee742ba99a5da450133d617a8ca71be9ce5ff6ce02b0772e11843095d8355efd7d9b67488cc612f9
|
data/README.md
CHANGED
@@ -117,7 +117,7 @@ default: false
|
|
117
117
|
```
|
118
118
|
|
119
119
|
Whether boundary expressions should be attached to the margins of every expression in the list. If this value is simply true, this means
|
120
|
-
each
|
120
|
+
each item's marginal characters, the first and the last, are tested to see whether they are word characters and if so the word
|
121
121
|
boundary symbol, `\b`, is appended to them where appropriate. There are several variants on this, however:
|
122
122
|
|
123
123
|
```ruby
|
data/lib/list_matcher/version.rb
CHANGED
data/list_matcher.gemspec
CHANGED
@@ -4,19 +4,20 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
require 'list_matcher/version'
|
5
5
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
|
-
spec.name
|
8
|
-
spec.version
|
9
|
-
spec.authors
|
10
|
-
spec.email
|
11
|
-
spec.summary
|
12
|
-
spec.description
|
13
|
-
spec.homepage
|
14
|
-
spec.license
|
7
|
+
spec.name = "list_matcher"
|
8
|
+
spec.version = ListMatcher::VERSION
|
9
|
+
spec.authors = ["dfhoughton"]
|
10
|
+
spec.email = ["dfhoughton@gmail.com"]
|
11
|
+
spec.summary = %q{List::Matcher automates the generation of efficient regular expressions.}
|
12
|
+
spec.description = spec.summary
|
13
|
+
spec.homepage = "https://github.com/dfhoughton/list_matcher"
|
14
|
+
spec.license = "MIT"
|
15
15
|
|
16
|
-
spec.files
|
17
|
-
spec.executables
|
18
|
-
spec.test_files
|
19
|
-
spec.require_paths
|
16
|
+
spec.files = `git ls-files -z`.split("\x0")
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
spec.required_ruby_version = '>= 2.0'
|
20
21
|
|
21
22
|
spec.add_development_dependency "bundler", "~> 1.7"
|
22
23
|
spec.add_development_dependency "rake", "~> 10.0"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: list_matcher
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- dfhoughton
|
@@ -69,7 +69,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
69
69
|
requirements:
|
70
70
|
- - '>='
|
71
71
|
- !ruby/object:Gem::Version
|
72
|
-
version: '0'
|
72
|
+
version: '2.0'
|
73
73
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
74
74
|
requirements:
|
75
75
|
- - '>='
|