waylon 0.2.4 → 0.2.5
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/Gemfile.lock +2 -2
- data/README.md +5 -0
- data/waylon.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 03cc0b6939612a7e3627735787a8c0ef093974ba79faefa02fae741a1aa71a69
|
4
|
+
data.tar.gz: '081a6a0f73f6ea8bf0160f8a6f72376e3a5dd35268a10dd41a49dabb1014b874'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2a63502d5f589f4eb5f1575523ea41e2663e3404ea378784887acc03196ebe57235e43dceee19fff0ef21a4f27590bbea7cb45e4fbf022eb086ac752bbb46f52
|
7
|
+
data.tar.gz: 13dae4d45b5d42bf8f075707ea2976ff9b8f30c3cc86e8e1eb1a8fbfb96d38e5fd3e847a633e4dffabe1ddc9e9c2846e929d81a979c1a4ce0237591f69b9383d
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
waylon (0.2.
|
4
|
+
waylon (0.2.5)
|
5
5
|
rake (~> 13.0)
|
6
6
|
waylon-core
|
7
7
|
|
@@ -150,7 +150,7 @@ GEM
|
|
150
150
|
thor (1.2.1)
|
151
151
|
tilt (2.0.11)
|
152
152
|
unicode-display_width (2.2.0)
|
153
|
-
waylon-core (0.2.
|
153
|
+
waylon-core (0.2.5)
|
154
154
|
addressable (~> 2.8)
|
155
155
|
faraday (~> 1.8)
|
156
156
|
i18n (~> 1.8)
|
data/README.md
CHANGED
@@ -63,8 +63,13 @@ Toward the end of the file (but before the final `end`), add a line like this:
|
|
63
63
|
You'll also need to add a few development dependencies:
|
64
64
|
|
65
65
|
spec.add_development_dependency "pry"
|
66
|
+
spec.add_development_dependency "rubocop"
|
66
67
|
spec.add_development_dependency "yard"
|
67
68
|
|
69
|
+
Now install all the dependencies:
|
70
|
+
|
71
|
+
bundle install
|
72
|
+
|
68
73
|
Now you should be able to start development. Take a look at `lib/waylon/skills/echo.rb`. Delete the `route()` at the beginning of the file and replace it with this:
|
69
74
|
|
70
75
|
route(/^say\s+(.+)/, :do_the_thing)
|
data/waylon.gemspec
CHANGED