momblish 0.2.0 → 0.2.2

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: b29cb372c16c29c7f4a5b9b8c182c93d96167c0c3327654fb8df752bbd9ad998
4
- data.tar.gz: 11543739887cc0088d983f97b9712dde334785571bbe55590a65636e9894e610
3
+ metadata.gz: 7e68918ace44bb33f8a3119e4bdf53c79d792480aff9bd65c2ac90dc32b27de1
4
+ data.tar.gz: 0763ebaf957cf2b47a387909907566fd36611d7f998ef426456ba1cd75bf5830
5
5
  SHA512:
6
- metadata.gz: ada00fa3f950bf442f62b8e5b2e46384b06d3d7f172b45c07deb0118ca075d6a54ccf8d598c59ee5daced6501c6b43ef80c41f811c36fd4a7fe97c69cd439308
7
- data.tar.gz: ae08f229ca5f90f5f0f15943571e20c33ce34743a4452c8b06ec8ebe3831e083501c0c75964cb3b02e68b30750c0ae2f7ba615956ece28f1e9c22667b5e2d3fd
6
+ metadata.gz: '09f376658714f513eb8f4ff38da8be406a93a4950cd8d30b7cd311804477d54334c57486765f1e81cd435976c4eca8a439fef31f30898d234cc12f6667d3ae36'
7
+ data.tar.gz: 72154e33458be49742a2402af3f0b97f6799b169f5e3e82d471f28a887b0fee00b026fd138d04597b07bcfce4a517ce809557c2c8df36a99f7cb78953aec2b08
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- momblish (0.1.0)
4
+ momblish (0.2.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -54,7 +54,7 @@ require 'momblish'
54
54
 
55
55
  simple = Momblish.simple
56
56
 
57
- simple.sentence(10).map(&:1)
57
+ simple.sentence(10).map { _1 }
58
58
 
59
59
  # or
60
60
 
@@ -1,3 +1,3 @@
1
1
  class Momblish
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.2"
3
3
  end
data/lib/momblish.rb CHANGED
@@ -32,7 +32,7 @@ class Momblish
32
32
 
33
33
  class << self
34
34
  def lookup_dict(lang)
35
- DICT[lang].find { |location| puts location; File.exist?(location) }
35
+ DICT[lang].find { |location| File.exist?(location) }
36
36
  end
37
37
 
38
38
  def method_missing(lang)
@@ -75,7 +75,7 @@ class Momblish
75
75
  end
76
76
 
77
77
  def sentence(count = nil, word_length: nil)
78
- return enum_for(:sentence, word_length: word_length) unless block_given?
78
+ return enum_for(:sentence, count, word_length: word_length) unless block_given?
79
79
 
80
80
  if count.nil?
81
81
  loop { yield word(word_length) }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: momblish
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen Prater
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-12-18 00:00:00.000000000 Z
11
+ date: 2023-12-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler