waylon 0.1.4 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8f40483f3e831a95dfccfc2768cdd6674781e0ad6194ec45f52202bd07bcb000
4
- data.tar.gz: 1def965e452beff8e883b2bd31873ec5be5638ccd51369310951b7eeffec7610
3
+ metadata.gz: c96daaa529f330683f97c8cb058136c24eb2103960e118ac6f879865114ebf8b
4
+ data.tar.gz: bade71ad46f9e797d53c2726b5c4a086c678f6b3a6f5dea61eb3f07aebcaebd5
5
5
  SHA512:
6
- metadata.gz: 7dd0520ed45de33954ea5808deecf614151207f61729891e9b6e880525c88e3f26e496716489063954e95a49720f1fce78ec11d3dfcb95220dfff0dd147ccffc
7
- data.tar.gz: 00e684929a55854ec1e8df0498734da196c94857f83f24e6aa989e18177375a3bcf9f7a07358d41389e1d802ccee17a8e8c87453dff108489430abaa7e92a6f6
6
+ metadata.gz: 8577011fe84cbe94253953bf2c04ae3a557632bbff8be99c0b5b1d61027c3aa54cd766f1901ca0670733d08975a80a9877d4aa674c125c774c5c0ed3d0b44415
7
+ data.tar.gz: 21d0eaf28b770f253daa8db014115de02ab473e11dfcb535839166385b952dbf6100953dd0d70fa3ed93a988172c5ec83dd0df22e9fa1d7b5ac0a7570ff3af8c
data/Gemfile CHANGED
@@ -6,7 +6,5 @@ source "https://rubygems.org"
6
6
  gemspec
7
7
 
8
8
  gem "rake", "~> 13.0"
9
-
10
9
  gem "rspec", "~> 3.0"
11
-
12
10
  gem "rubocop", "~> 1.7"
data/Gemfile.lock CHANGED
@@ -1,8 +1,8 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- waylon (0.1.4)
5
- waylon-core (~> 0.1)
4
+ waylon (0.1.5)
5
+ waylon-core (= 0.1.5)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
@@ -29,8 +29,8 @@ GEM
29
29
  faraday-em_synchrony (1.0.0)
30
30
  faraday-excon (1.1.0)
31
31
  faraday-httpclient (1.0.1)
32
- faraday-multipart (1.0.3)
33
- multipart-post (>= 1.2, < 3)
32
+ faraday-multipart (1.0.4)
33
+ multipart-post (~> 2)
34
34
  faraday-net_http (1.0.1)
35
35
  faraday-net_http_persistent (1.2.0)
36
36
  faraday-patron (1.0.0)
@@ -80,7 +80,7 @@ GEM
80
80
  diff-lcs (>= 1.2.0, < 2.0)
81
81
  rspec-support (~> 3.11.0)
82
82
  rspec-support (3.11.0)
83
- rubocop (1.30.0)
83
+ rubocop (1.30.1)
84
84
  parallel (~> 1.10)
85
85
  parser (>= 3.1.0.0)
86
86
  rainbow (>= 2.2.2, < 4.0)
@@ -110,7 +110,7 @@ GEM
110
110
  tilt (~> 2.0)
111
111
  tilt (2.0.10)
112
112
  unicode-display_width (2.1.0)
113
- waylon-core (0.1.4)
113
+ waylon-core (0.1.5)
114
114
  addressable (~> 2.8)
115
115
  faraday (~> 1.8)
116
116
  i18n (~> 1.8)
data/lib/waylon.rb ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "waylon/core"
4
+ require "waylon/skills/default"
5
+ require "waylon/skills/diagnostics"
6
+ require "waylon/skills/fun"
7
+ require "waylon/skills/groups"
8
+ require "waylon/skills/help"
data/waylon.gemspec CHANGED
@@ -1,6 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require_relative "lib/waylon/version"
3
+ module Waylon
4
+ # Update this to match the desired Waylon::Core::VERSION to release
5
+ VERSION = "0.1.5"
6
+ end
4
7
 
5
8
  Gem::Specification.new do |spec|
6
9
  spec.name = "waylon"
@@ -27,7 +30,7 @@ Gem::Specification.new do |spec|
27
30
  spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
28
31
  spec.require_paths = ["lib"]
29
32
 
30
- spec.add_dependency "waylon-core", "~> 0.1"
33
+ spec.add_dependency "waylon-core", Waylon::VERSION
31
34
 
32
35
  spec.add_development_dependency "bundler", "~> 2.3"
33
36
  spec.add_development_dependency "rake", "~> 13.0"
metadata CHANGED
@@ -1,29 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: waylon
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan Gnagy
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-06-03 00:00:00.000000000 Z
11
+ date: 2022-06-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: waylon-core
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: '0.1'
19
+ version: 0.1.5
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: '0.1'
26
+ version: 0.1.5
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -161,7 +161,7 @@ files:
161
161
  - README.md
162
162
  - Rakefile
163
163
  - bin/setup
164
- - lib/waylon/version.rb
164
+ - lib/waylon.rb
165
165
  - scripts/release.sh
166
166
  - scripts/test.sh
167
167
  - waylon.gemspec
@@ -1,10 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Waylon
4
- # Waylon version
5
- VERSION = [
6
- 0, # Major
7
- 1, # Minor
8
- 4 # Patch
9
- ].join(".")
10
- end