yomise 0.1.3 → 0.1.4
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 +4 -4
- data/.rspec +3 -3
- data/CODE_OF_CONDUCT.md +84 -84
- data/Gemfile +9 -10
- data/LICENSE.txt +21 -21
- data/README.md +39 -39
- data/Rakefile +8 -8
- data/lib/longest_line.rb +16 -4
- data/lib/to_csv.rb +120 -112
- data/lib/yomise/version.rb +5 -5
- data/lib/yomise.rb +321 -290
- data/sig/yomise.rbs +4 -4
- data/yomise.gemspec +46 -0
- metadata +18 -3
data/yomise.gemspec
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require_relative "lib/yomise/version"
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |spec|
|
|
6
|
+
spec.name = "yomise"
|
|
7
|
+
spec.version = Yomise::VERSION
|
|
8
|
+
spec.authors = ["showata"]
|
|
9
|
+
spec.email = ["shun_yamaguchi_tc@live.jp"]
|
|
10
|
+
|
|
11
|
+
spec.summary = "A simple way to Open .csv, .xls, .xlsx files. (formerly easy_sheet_io)"
|
|
12
|
+
spec.description = "A simple way to Open .csv, .xls, .xlsx files. You can convert it to 2D array, hash, data frame."
|
|
13
|
+
spec.homepage = "https://github.com/show-o-atakun/yomise"
|
|
14
|
+
spec.license = "MIT"
|
|
15
|
+
spec.required_ruby_version = ">= 3.0.0"
|
|
16
|
+
|
|
17
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
|
18
|
+
spec.metadata["source_code_uri"] = "https://github.com/show-o-atakun/yomise"
|
|
19
|
+
|
|
20
|
+
# spec.metadata["allowed_push_host"] = "TODO: Set to your gem server 'https://example.com'"
|
|
21
|
+
# spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
|
|
22
|
+
|
|
23
|
+
# Specify which files should be added to the gem when it is released.
|
|
24
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
|
25
|
+
spec.files = Dir.chdir(__dir__) do
|
|
26
|
+
`git ls-files -z`.split("\x0").reject do |f|
|
|
27
|
+
(File.expand_path(f) == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|circleci)|appveyor)})
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
spec.bindir = "exe"
|
|
31
|
+
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
|
32
|
+
spec.require_paths = ["lib"]
|
|
33
|
+
|
|
34
|
+
spec.add_dependency "daru", ">= 0.3"
|
|
35
|
+
spec.add_dependency "rover-df", ">= 0.2.7"
|
|
36
|
+
spec.add_dependency "smarter_csv", ">= 1.4.2"
|
|
37
|
+
spec.add_dependency "roo-xls", ">= 1.2.0"
|
|
38
|
+
spec.add_dependency "spreadsheet", ">= 1.3.0"
|
|
39
|
+
spec.add_dependency "matrix"
|
|
40
|
+
|
|
41
|
+
# Uncomment to register a new dependency of your gem
|
|
42
|
+
# spec.add_dependency "example-gem", "~> 1.0"
|
|
43
|
+
|
|
44
|
+
# For more information and examples about making a new gem, check out our
|
|
45
|
+
# guide at: https://bundler.io/guides/creating_gem.html
|
|
46
|
+
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: yomise
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- showata
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-05-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: daru
|
|
@@ -80,6 +80,20 @@ dependencies:
|
|
|
80
80
|
- - ">="
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: 1.3.0
|
|
83
|
+
- !ruby/object:Gem::Dependency
|
|
84
|
+
name: matrix
|
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - ">="
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: '0'
|
|
90
|
+
type: :runtime
|
|
91
|
+
prerelease: false
|
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - ">="
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: '0'
|
|
83
97
|
description: A simple way to Open .csv, .xls, .xlsx files. You can convert it to 2D
|
|
84
98
|
array, hash, data frame.
|
|
85
99
|
email:
|
|
@@ -99,6 +113,7 @@ files:
|
|
|
99
113
|
- lib/yomise.rb
|
|
100
114
|
- lib/yomise/version.rb
|
|
101
115
|
- sig/yomise.rbs
|
|
116
|
+
- yomise.gemspec
|
|
102
117
|
homepage: https://github.com/show-o-atakun/yomise
|
|
103
118
|
licenses:
|
|
104
119
|
- MIT
|
|
@@ -120,7 +135,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
120
135
|
- !ruby/object:Gem::Version
|
|
121
136
|
version: '0'
|
|
122
137
|
requirements: []
|
|
123
|
-
rubygems_version: 3.
|
|
138
|
+
rubygems_version: 3.4.19
|
|
124
139
|
signing_key:
|
|
125
140
|
specification_version: 4
|
|
126
141
|
summary: A simple way to Open .csv, .xls, .xlsx files. (formerly easy_sheet_io)
|