kandata 0.3.3 → 0.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 350518d66c3cb93d9968a935e7273db3d419a22ef1e9431363b17396963ab63c
4
- data.tar.gz: 16a332ec7d324d86f46cafa8eafb68b142d632a03013ad545db457859822c5ec
3
+ metadata.gz: cce31248599ba4f0ecc236eabd1122f3b5f91cbcce5ecfd7d6b3e6d66b401f72
4
+ data.tar.gz: b65849a8209981f64c50a56d69b63d412bae0d8578e870f40d23cb88861b1670
5
5
  SHA512:
6
- metadata.gz: 151e52ed856f42b0a09f63f280b5831f864e9877bb259b1de75a98cb1321499e616d64b66802a77861d241ea4f041758eed1bdee507de416823f64c8b3d39b91
7
- data.tar.gz: 20f31790c9659a845ad48164f88060897b34cd5625ef5c1d5b51fe9f574c2e63b99d928ffd178084a4728c750b4effa4e9ad0e4b6d7f30e9fa1793e490d78f32
6
+ metadata.gz: 82c4e5d4eb67200eb1108163a9030c6d4a7911b7bfe0535bba60d364fee7ff024d9be9a352a7dc2e56aeaf7042425b0eb7900a17517bd217a45ac2183d605ada
7
+ data.tar.gz: cebc829645fb22d8275160b99cbad7ed02df971bf00ed1bcbe634b83f484444a70c5ac8d34523c29a308d837ec6b926dee4bb8be794199a0bd4bf3735880d6c0
data/.circleci/config.yml CHANGED
@@ -27,7 +27,7 @@ jobs:
27
27
  # To see the list of pre-built images that CircleCI provides for most common languages see
28
28
  # https://circleci.com/docs/2.0/circleci-images/
29
29
  docker:
30
- - image: circleci/ruby:2.4.9
30
+ - image: cimg/ruby:2.7.6
31
31
  environment:
32
32
  LANG: ja_JP.UTF-8
33
33
  LC_ALL: en_US.UTF-8
data/.rubocop.yml CHANGED
@@ -1,14 +1,9 @@
1
- # Modify the version if you don't use MRI 2.1.
2
1
  AllCops:
3
- TargetRubyVersion: 2.4.3
2
+ TargetRubyVersion: 2.7
4
3
  Exclude:
5
4
  - 'vendor/**/*'
6
5
  - 'bin/**/*'
7
6
 
8
- Rails:
9
- # If you use RuboCop with Ruby on Rails, turn on this option.
10
- Enabled: false
11
-
12
7
  # You can customize rubocop settings.
13
8
  # For example.
14
9
  Bundler/OrderedGems:
@@ -19,7 +14,7 @@ Metrics/BlockLength:
19
14
  Exclude:
20
15
  - 'spec/**/*'
21
16
 
22
- Metrics/LineLength:
17
+ Layout/LineLength:
23
18
  Max: 130
24
19
 
25
20
  Style/Documentation:
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.4.3
1
+ 2.7.6
data/Gemfile CHANGED
@@ -6,6 +6,9 @@ git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
6
6
  # Specify your gem's dependencies in kandata.gemspec
7
7
  gemspec
8
8
 
9
+ # ffi >= 1.17 は Ruby 3.0 以上を要求するため、Ruby 2.7 との互換性のためバージョンを固定
10
+ gem 'ffi', '~> 1.16.0'
11
+
9
12
  group :development do
10
13
  gem 'guard'
11
14
  gem 'guard-rspec'
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  class Kandata
3
- VERSION = '0.3.3'
3
+ VERSION = '0.3.4'
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kandata
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
4
+ version: 0.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yuya TAMANO
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-09-19 00:00:00.000000000 Z
11
+ date: 2026-04-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -186,7 +186,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
186
186
  - !ruby/object:Gem::Version
187
187
  version: '0'
188
188
  requirements: []
189
- rubygems_version: 3.2.3
189
+ rubygems_version: 3.1.6
190
190
  signing_key:
191
191
  specification_version: 4
192
192
  summary: Provides function to import TSV file to MySQL table without create table