lewt 0.5.15 → 0.5.16
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/extension.rb +1 -1
- data/lib/lewt.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c17788a1c74669a806a0a63c128a64b7494fb133
|
4
|
+
data.tar.gz: d27f84a60f91bbe38ee03ee4bf02648c190be86a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0fb033c461635d67a52242416a0aa00466d3a56c29c3d936170206b340725534da3960418dfd12c9787102fab5b5384a775866a187d7493db50e08bfadf239ef
|
7
|
+
data.tar.gz: cd7c1279b1db457d6fae2e346d9ad1dc78d8f1bc68123c92b8a32a7f5b8493e9b3eccb7d2ed9523dfe74aa6963ae946fccc177533e393d674ba054e6a208b50d
|
data/README.md
CHANGED
@@ -208,7 +208,7 @@ LEWT (and it's extensions) want config. They want it in the form of flat YAML fi
|
|
208
208
|
|
209
209
|
## Want to learn more?
|
210
210
|
|
211
|
-
Checkout the [WIKI](https://github.com/jdwije/LEWT/wiki) section for a bunch of tutorials on setting LEWT up and getting started writing extensions.
|
211
|
+
Checkout the [WIKI](https://github.com/jdwije/LEWT/wiki) section for a bunch of tutorials on setting LEWT up and getting started writing extensions. The rDocs are available from [here](http://rubydoc.info/gems/lewt/frames) and a google group is setup [here](https://groups.google.com/forum/#!forum/lewt) if you want to keep in touch.
|
212
212
|
|
213
213
|
Finally go browse through the source code, there is only ~1300 lines of ruby including comments with which I have tried to be liberal.
|
214
214
|
|
@@ -219,7 +219,7 @@ LEWT is very much beta-ware. I only just started using it myself in my contracti
|
|
219
219
|
|
220
220
|
## License
|
221
221
|
|
222
|
-
LEWT is distributed under the terms and conditions of the MIT license, see LICENSE.md for more information.
|
222
|
+
LEWT is distributed under the terms and conditions of the MIT license, see [LICENSE.md](https://github.com/jdwije/LEWT/blob/master/LICENSE.md) for more information.
|
223
223
|
|
224
224
|
|
225
225
|
|
data/lib/extension.rb
CHANGED
data/lib/lewt.rb
CHANGED
@@ -16,7 +16,7 @@ require_relative 'lewt_ledger.rb'
|
|
16
16
|
# This module acts as a container for the LEWT namespace
|
17
17
|
module LEWT
|
18
18
|
|
19
|
-
VERSION = "0.5.
|
19
|
+
VERSION = "0.5.16"
|
20
20
|
|
21
21
|
# The Lewt class contains the major functionality of this program.
|
22
22
|
# It handles loading all extensions, gathering the results and passing options ariound the place.
|