ls_table 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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/ls_table.rb +1 -1
  3. metadata +4 -4
  4. data/ls_table.gemspec +0 -38
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1901dc8d51a1af9adb9571ce5678910874c9115be36eb87faa16a746f7fba512
4
- data.tar.gz: 2b4d475b4a20b8a701dbc438b04f9b897bd1ed7ebaba5eb49ab0ecc45df61d0e
3
+ metadata.gz: e49abb674667e3502a3e02ea753f86fc16e29d7f893069f40b8dabcc9ac68c6d
4
+ data.tar.gz: fa78256d488c6779f45acae32f221629eb09abe77b7c07ab1ae79576f7d91279
5
5
  SHA512:
6
- metadata.gz: a6cf288358c70b760aacf9fea224602b7b68c87b39e4ca25d9fb6081c22baa49c5961c4cd6329cbce51c28314b282cf6da37cfb9c7fe2182c71453127259711b
7
- data.tar.gz: c7b497ca7b5df3914b8d0257d894ddb3b5d7c403fb5200c53b9006c2ee6fbd25acf98129bdc20533ccda1a66f34e867b118df373020e29bc339692d32842af98
6
+ metadata.gz: 10a90005f2885461b77b565501b69784aec3f664b8f07432f9f3ebc0d35858384254b346effea1b4d5abc4af516020185dac5ecffd342e1a7a5559ba71c3b526
7
+ data.tar.gz: 28c90746d34ade245164534c41350ba6e1681374a52b55907fe7e3bc201843fecbb21c59e24eca3e9d83f054f16fb1ef83f9ac5fa2a8df758f6d38f05f32b62d
data/lib/ls_table.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  # require_relative "ls_table/version"
2
2
 
3
3
  module LsTable
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  class Error < StandardError; end
6
6
  end
7
7
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ls_table
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
  - ccmywish
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-03-23 00:00:00.000000000 Z
11
+ date: 2022-03-25 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: ls to an array
14
14
  email:
@@ -21,10 +21,10 @@ files:
21
21
  - LICENSE
22
22
  - Rakefile
23
23
  - lib/ls_table.rb
24
- - ls_table.gemspec
25
24
  - sig/ls_table.rbs
26
25
  homepage: https://github.com/ccmywish
27
- licenses: []
26
+ licenses:
27
+ - MIT
28
28
  metadata:
29
29
  homepage_uri: https://github.com/ccmywish
30
30
  source_code_uri: https://github.com/ccmywish
data/ls_table.gemspec DELETED
@@ -1,38 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require_relative "lib/ls_table"
4
-
5
- Gem::Specification.new do |spec|
6
- spec.name = "ls_table"
7
- spec.version = LsTable::VERSION
8
- spec.authors = ["ccmywish"]
9
- spec.email = ["ccmywish@qq.com"]
10
-
11
- spec.summary = "ls to an array"
12
- spec.description = "ls to an array"
13
- spec.homepage = "https://github.com/ccmywish"
14
- spec.required_ruby_version = ">= 2.6.0"
15
-
16
- # spec.metadata["allowed_push_host"] = "TODO: Set to your gem server 'https://example.com'"
17
-
18
- spec.metadata["homepage_uri"] = spec.homepage
19
- spec.metadata["source_code_uri"] = "https://github.com/ccmywish"
20
- # spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
21
-
22
- # Specify which files should be added to the gem when it is released.
23
- # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
24
- spec.files = Dir.chdir(File.expand_path(__dir__)) do
25
- `git ls-files -z`.split("\x0").reject do |f|
26
- (f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features|doc)/|\.(?:git|travis|circleci)|appveyor)}) || f.match(/.*\.md/)
27
- end
28
- end
29
- spec.bindir = "exe"
30
- spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
31
- spec.require_paths = ["lib"]
32
-
33
- # Uncomment to register a new dependency of your gem
34
- # spec.add_dependency "example-gem", "~> 1.0"
35
-
36
- # For more information and examples about making a new gem, check out our
37
- # guide at: https://bundler.io/guides/creating_gem.html
38
- end