ykutils 0.1.1 → 0.1.3

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: b499c160b699d72067cfa4dae524e5a7e1a20031c50c9555e7ffb3ea5fbd610a
4
- data.tar.gz: 7794129fb0a121c4ba36c4df23a110b10623a725f78f7b26903afd4eec5fcde2
3
+ metadata.gz: 64a9a78e4cbc27c71e753038eb3c7c79ea06bbba9d54670302705964b000581c
4
+ data.tar.gz: a73847929de26acddce29a240848fa527580879d430d2f2062964cc1882cdef7
5
5
  SHA512:
6
- metadata.gz: d4ad65f3b023e40bb6540580aff86225d25f7a221572eba886e1263b3616904f7a39fa43e29df7e8d9849c818589c20af01c2117fe40c72ac00f531fa4819bcc
7
- data.tar.gz: 5daa995ba943d8cf6c0011ace457c35094b78e199131a7440caff244e2bc728cf5beb0268ccc7976462d5c6af0de22871cff02c2bcad2e6d546ec6ff9b51b72f
6
+ metadata.gz: ebbe17d7b690bbbf2a98ed5e6c69f7fb36c32e7ee3b6c37166abf8cd99b0ae44a7d2db13822d74320de6b8a4b4c7a2612b729c293734321261cfedf13c3ccd53
7
+ data.tar.gz: 2475c18db65ce6bcc6cb8f3bcab363fc22ae80a5a3f788be3d6e3fa33ffd9f95d5f44f6d144416cd98db3dac985d2eda70884332c83c093a71f83c70ec751b8f
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ykutils (0.1.1)
4
+ ykutils (0.1.3)
5
5
  filex
6
6
 
7
7
  GEM
data/_config.yml ADDED
@@ -0,0 +1 @@
1
+ theme: jekyll-theme-cayman
@@ -22,12 +22,6 @@ module Ykutils
22
22
  end
23
23
 
24
24
  def make_grid(template_hash, scope, min_row, max_row, min_colum, max_colum)
25
- =begin
26
- p min_row
27
- p max_row
28
- p min_colum
29
- p max_colum
30
- =end
31
25
  (min_row..max_row).map { |row|
32
26
  (min_colum..max_colum).map { |colum|
33
27
  #puts "#{row} #{colum}"
@@ -43,24 +37,12 @@ module Ykutils
43
37
  def make_grid_list()
44
38
  template_hash = TAMPLETES[:GRID_DEF]
45
39
  scope = nil
46
- =begin
47
- min_row = 1
48
- max_row = 2
49
- min_colum = 1
50
- max_colum = 5
51
- =end
52
40
  make_grid(template_hash, scope, min_row, max_row, min_colum, max_colum)
53
41
  end
54
42
 
55
43
  def make_grid_list_x(min_row, max_row, min_colum, max_colum)
56
44
  template_hash = TAMPLETES[:GRID_DEF]
57
45
  scope = nil
58
- =begin
59
- p min_row
60
- p max_row
61
- p min_colum
62
- p max_colum
63
- ~end
64
46
  make_grid(template_hash, scope, min_row, max_row, min_colum, max_colum)
65
47
  end
66
48
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Ykutils
4
- VERSION = "0.1.1"
4
+ VERSION = "0.1.3"
5
5
  end
data/ykutils.gemspec CHANGED
@@ -13,14 +13,14 @@ Gem::Specification.new do |spec|
13
13
 
14
14
  spec.summary = "utilty function created by yk."
15
15
  spec.description = "utilty function created by yk."
16
- spec.homepage = ""
16
+ spec.homepage = "https://ykominami.github.io/ykutils/"
17
17
  spec.license = "MIT"
18
18
  spec.required_ruby_version = ">= 2.6.0"
19
19
 
20
20
  #spec.metadata["allowed_push_host"] = "TODO: Set to your gem server 'https://example.com'"
21
21
 
22
- # spec.metadata["homepage_uri"] = spec.homepage
23
- # spec.metadata["source_code_uri"] = "TODO: Put your gem's public repo URL here."
22
+ spec.metadata["homepage_uri"] = spec.homepage
23
+ spec.metadata["source_code_uri"] = "https://github.com/ykominami/ykutils"
24
24
  # spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
25
25
 
26
26
  # Specify which files should be added to the gem when it is released.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ykutils
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - yasuo kominami
@@ -71,6 +71,7 @@ files:
71
71
  - LICENSE.txt
72
72
  - README.md
73
73
  - Rakefile
74
+ - _config.yml
74
75
  - bin/console
75
76
  - bin/makegrid
76
77
  - bin/setup
@@ -101,10 +102,12 @@ files:
101
102
  - lib/ykutils/yamlxop.rb
102
103
  - sig/ykutils.rbs
103
104
  - ykutils.gemspec
104
- homepage: ''
105
+ homepage: https://ykominami.github.io/ykutils/
105
106
  licenses:
106
107
  - MIT
107
108
  metadata:
109
+ homepage_uri: https://ykominami.github.io/ykutils/
110
+ source_code_uri: https://github.com/ykominami/ykutils
108
111
  rubygems_mfa_required: 'true'
109
112
  post_install_message:
110
113
  rdoc_options: []