regextest 0.1.2 → 0.1.3
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/regextest/version.rb +1 -1
- data/regextest.gemspec +1 -1
- metadata +6 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4f72f4c8fc5748bfb1c3d89c9cced2ebeeae0a23
|
4
|
+
data.tar.gz: 6b8bb46b092396449d3bd5be85b0ffe5c839c2fe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5e3e92daabfcf4145f543c67a525f767925d5b0c49b24f4dbf7463bd224e6baa006fea4bcc49f0eeefe71629b17ae0ce6ebbc4a39cbe1abf6005f4059e8eb29a
|
7
|
+
data.tar.gz: 41cb1005d492f96da718d446a2e484536e2aa7c178d9d2120ddcfe1f860c08645c4f4433166fd6241d889d375dafce00eb900ab0a0247eb1643e97c62f961a79
|
data/README.md
CHANGED
@@ -3,7 +3,7 @@ Regextest generates sample string that matches with regular expression. Unlike s
|
|
3
3
|
|
4
4
|
## Installation
|
5
5
|
|
6
|
-
You can use [sample application](
|
6
|
+
You can use [sample application](http://goo.gl/5miiF4) without installation. For using at your local machine, add this line to your application's Gemfile:
|
7
7
|
|
8
8
|
```ruby
|
9
9
|
gem 'regextest'
|
data/lib/regextest/version.rb
CHANGED
data/regextest.gemspec
CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
10
10
|
spec.email = ["mikio.ikoma@gmail.com"]
|
11
11
|
|
12
12
|
spec.summary = %q{A ruby library for generating sample data of regular expression}
|
13
|
-
spec.description = %q{
|
13
|
+
spec.description = %q{Regextest generates sample string that matches with regular expression. Unlike similar tools, it recognizes anchors, charactor classes and other advanced notation of ruby regex. Target users are programmers or students for debugging/learning regular expression. You can use [sample application](http://goo.gl/5miiF4) without installation. }
|
14
14
|
spec.homepage = "https://bitbucket.org/ikomamik/regextest"
|
15
15
|
spec.license = "2-clause BSD license (see the file LICENSE.txt)"
|
16
16
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: regextest
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- IKOMA, Mikio
|
@@ -66,7 +66,11 @@ dependencies:
|
|
66
66
|
- - '>='
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
|
-
description:
|
69
|
+
description: 'Regextest generates sample string that matches with regular expression.
|
70
|
+
Unlike similar tools, it recognizes anchors, charactor classes and other advanced
|
71
|
+
notation of ruby regex. Target users are programmers or students for debugging/learning
|
72
|
+
regular expression. You can use [sample application](http://goo.gl/5miiF4) without
|
73
|
+
installation. '
|
70
74
|
email:
|
71
75
|
- mikio.ikoma@gmail.com
|
72
76
|
executables: []
|