wordle 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ae365a30fe124cd128e3899cf18a13204681febb784443b337912769a14fe02a
4
- data.tar.gz: 97cb0fd7a71c4f7f6e990f131088e0ffff730696b46c5e00b561ab8827e1ffe6
3
+ metadata.gz: 66a3c589752b864d16c6902b5cfba0fce02dc626f2c03e090bdd291c31e48b1c
4
+ data.tar.gz: 75a98dc37a95080e994d1003390e3d8f860153b532e8062971c4985f55952b1c
5
5
  SHA512:
6
- metadata.gz: e76742605ae1d736201b618fff575146d2635f15f62373ae843d2072b012991e1e01c75e3f04df97e008845c728e041aa29066c2e065ad9eb957159a678d2534
7
- data.tar.gz: caa7e430875ec1abbd9349520e838c667df16a5bd1555130634f7bf3778d494b1434f3777dfe94c4642c297ac0336be429b52364ffe64cf2a8c25e632ee9588f
6
+ metadata.gz: 207367decbccc995880b2a88903454fa7f60bac8bb24fd45162c2e639fd9dde7ff21e83073e180f93244f9511c1f981f4f1a10f0366692eda4d8c6f0c7813b7b
7
+ data.tar.gz: 3dd312657ed39ad8a570746422fb86c9fa85f1811c35c47ebeb56394beb1b274a25a28256f1cc240b32a843cb2eee768e91247dd9547d58ab44a88af66529502
data/CHANGELOG.md CHANGED
@@ -1,5 +1,5 @@
1
1
  ## [Unreleased]
2
2
 
3
- ## [0.1.0] - 2022-01-09
3
+ ## [0.1.1] - 2022-01-09
4
4
 
5
5
  - Initial release
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- wordle (0.1.0)
4
+ wordle (0.1.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -50,6 +50,7 @@ GEM
50
50
 
51
51
  PLATFORMS
52
52
  x86_64-darwin-21
53
+ x86_64-linux
53
54
 
54
55
  DEPENDENCIES
55
56
  rake (~> 13.0)
data/README.md CHANGED
@@ -1,28 +1,14 @@
1
1
  # Wordle
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/wordle`. To experiment with that code, run `bin/console` for an interactive prompt.
4
-
5
- TODO: Delete this and the text above, and describe your gem
3
+ Ruby implementation of [Wordle](https://www.powerlanguage.co.uk/wordle/).
6
4
 
7
5
  ## Installation
8
6
 
9
- Add this line to your application's Gemfile:
10
-
11
- ```ruby
12
- gem 'wordle'
13
- ```
14
-
15
- And then execute:
16
-
17
- $ bundle install
18
-
19
- Or install it yourself as:
20
-
21
- $ gem install wordle
7
+ $ gem install wordle
22
8
 
23
9
  ## Usage
24
10
 
25
- TODO: Write usage instructions here
11
+ Just run `wordle` from the command line.
26
12
 
27
13
  ## Development
28
14
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Wordle
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wordle
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan Thom