raconteur 0.1.0 → 0.1.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 +2 -2
- data/lib/raconteur/parse.rb +1 -1
- data/lib/raconteur/version.rb +1 -1
- 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: 9af327dfe0cc3be23f7d34c1de89cfb2c511172d
|
|
4
|
+
data.tar.gz: 379ea30980d39681c47cf8a07666d35c49c843ad
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cd0a62aa6f15e2df6606222622008a0496c2c21dfc9d72ce78808dd5fd783402a8af08ba94e43ab71a3178fe579f7c1f53de4b64637d78e962c1f39d94b9f040
|
|
7
|
+
data.tar.gz: 85de2b6d7bfcf120daba9ae2ac6f80ed7e0ac5a0c775030563570d65bb4c1d993906b64ae62754ed7cd584ff61d2e2ea3bb61eb5543007d44409eadfca4e9fa1
|
data/README.md
CHANGED
|
@@ -28,7 +28,7 @@ Raconteur is based around the notion of processors. Each processor has a tag-nam
|
|
|
28
28
|
# Here's what some of our customers are saying:
|
|
29
29
|
# <div class="quote" id="customer-quote-43">'The most amazing usability report I have ever read!' - James Newman</div>
|
|
30
30
|
# <div class="quote" id="customer-quote-266">'I cannot believe how incredible the benchmark database is!' - Jane Newton</div>
|
|
31
|
-
# <div class="quote" id="customer-quote-7">'
|
|
31
|
+
# <div class="quote" id="customer-quote-7">'Spectacular customer service.' - John Oldling</div>
|
|
32
32
|
```
|
|
33
33
|
|
|
34
34
|
Here's what's happening in the above example:
|
|
@@ -87,7 +87,7 @@ Let's take a look at tags:
|
|
|
87
87
|
|
|
88
88
|
## Contributing
|
|
89
89
|
|
|
90
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
|
90
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/JamieAppleseed/raconteur.
|
|
91
91
|
|
|
92
92
|
## License
|
|
93
93
|
|
data/lib/raconteur/parse.rb
CHANGED
|
@@ -82,7 +82,7 @@ class Raconteur::Parse
|
|
|
82
82
|
# a) 1+ non-white-space characters, or
|
|
83
83
|
# b) a string wrapped by the 'quote' character at both ends
|
|
84
84
|
# (instances of the 'quote' character within the string can be escaped by a backward-slash '\')
|
|
85
|
-
regex = /([^\s]+)\=(#{quote}.*?[^\\]#{quote}|[^\s]+)/mi
|
|
85
|
+
regex = /([^\s#{quote}]+)\=(#{quote}.*?[^\\]#{quote}|[^\s]+)/mi
|
|
86
86
|
# prepare a fresh hash for the parsed settings
|
|
87
87
|
parsed_settings = {}
|
|
88
88
|
# loop over all key-value setting pairs in the string
|
data/lib/raconteur/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: raconteur
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jamie Appleseed
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2016-02-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|