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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +2 -2
  3. data/README.md +5 -0
  4. data/waylon.gemspec +1 -1
  5. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cb325165305f7aa6a4fd6aa4884d83271ab6e80b6723a23dd9ab8807639da527
4
- data.tar.gz: 0f2a970931faa5b246fd914fd6a489b1155db761d4f6a65e84f4db4f9c8ac211
3
+ metadata.gz: 03cc0b6939612a7e3627735787a8c0ef093974ba79faefa02fae741a1aa71a69
4
+ data.tar.gz: '081a6a0f73f6ea8bf0160f8a6f72376e3a5dd35268a10dd41a49dabb1014b874'
5
5
  SHA512:
6
- metadata.gz: 2b8a3c3f75ba31787d6d331128c8186968d9986add25396f956a946842793d541d4a3ca5e1c10f5c29fae102c4262c7086f131256cd2438e8b2229815e781e13
7
- data.tar.gz: f00d14c4f34bab4ed359240664ad2eefcf6a5ba90563c519f4d86026e50c1b16d3ce7228ef18662aac5d8a744e702b0999574aa170c83fd70169f030a5c234f5
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)
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.4)
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
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Waylon
4
4
  # Update this to match the desired Waylon::Core::VERSION to release
5
- VERSION = "0.2.4"
5
+ VERSION = "0.2.5"
6
6
  end
7
7
 
8
8
  Gem::Specification.new do |spec|
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: waylon
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.4
4
+ version: 0.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan Gnagy