pxmyportal 0.0.1 → 0.0.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: 2f25706b73248348e68caf96c48c38c7c5727144af51818e1691e99dfe9c995e
4
- data.tar.gz: 89571aea828715be9f6c97e67d6470a131524760a79ae9d4816b801efbaddc9e
3
+ metadata.gz: f1225bb380c46c4d93e001e758959b0e2575fed37ea9b9197ad1dc378ec21ccf
4
+ data.tar.gz: 7f5d218eb64715592228e72653bd97eea380399679ec2eb0fe682d59718bb448
5
5
  SHA512:
6
- metadata.gz: 6e2f1fb53fbbbd971e04f9454848cd6f008c9034e036dd291f1bb84ece207a0a3fdf6ff79374f05c81ef96cb4e63185a4046a068900f6b84a8b7d93402422db0
7
- data.tar.gz: 011d48b84aa232d6d6e214583f5c2e8d77a75ad56fab4af43e887aea879a04a3d1705bb1a88e896ccba30b725b462c245df2fe03c269c02b7b5a36bc5380b00b
6
+ metadata.gz: fd3bbe882a8658587a95c124a91cf3f69dd408c81faa090728b1ae04eb2b48540ee11c9630d9c101a7fc255b0900ffc66b687a557a1a1449fc4ca0f485a23e8c
7
+ data.tar.gz: e055de254378ab03a63493d0f6e2cb8d842558c5778042e7dd20fdea0394665f25cb204ce9b4989caf28e859ea10da1ab0ade3f319cae08c390f10ac7b622a5e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Change Log of PXMyPortal gem
2
2
 
3
+ ## 0.0.2 - 2025-05-26
4
+
5
+ No significant changes.
6
+
3
7
  ## 0.0.1 - 2025-05-10
4
8
 
5
9
  - Initial release
data/README.md CHANGED
@@ -1,33 +1,34 @@
1
1
  # PXMyPortal
2
2
 
3
- このgemは[PXマイポータル](https://www.tkc.jp/pxmyportal/)のコマンドラインツールpxmyportalを提供します。
3
+ このgemは[PXまいポータル](https://www.tkc.jp/pxmyportal/)のコマンドラインツールpxmyportalを提供します。
4
4
  現時点で給与明細書のダウンロードを行えます。
5
5
 
6
6
  ## Installation
7
7
 
8
- TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
8
+ Install the gem and add to the application's `Gemfile` by executing:
9
9
 
10
- Install the gem and add to the application's Gemfile by executing:
11
-
12
- $ bundle add UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
10
+ $ bundle add pxmyportal
13
11
 
14
12
  If bundler is not being used to manage dependencies, install the gem by executing:
15
13
 
16
- $ gem install UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
14
+ $ gem install pxmyportal
17
15
 
18
16
  ## Usage
19
17
 
20
18
  環境変数`PXMYPORTAL_COMPANY`、`PXMYPORTAL_USER`、`PXMYPORTAL_PASSWORD`の指定が必要です。
19
+ 必要に応じて`.env`ファイルや設定ファイルを作成してください。
21
20
 
22
21
  ## Development
23
22
 
24
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test-unit` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
25
-
26
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
23
+ To install this gem onto your local machine, run `bundle exec rake install`.
24
+ To release a new version, update the version number in `version.rb`, and then
25
+ run `bundle exec rake release`, which will create a git tag for the version,
26
+ push git commits and the created tag, and push the `.gem` file to
27
+ [rubygems.org](https://rubygems.org).
27
28
 
28
29
  ## Contributing
29
30
 
30
- Bug reports and pull requests are welcome on GitHub at https://github.com/gemmaro/pxmyportal.
31
+ Bug reports and pull requests are welcome on [GitHub](https://github.com/gemmaro/pxmyportal).
31
32
 
32
33
  ## License
33
34
 
data/Rakefile CHANGED
@@ -1,27 +1,3 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require "bundler/gem_tasks"
4
- require "rake/testtask"
5
-
6
- Rake::TestTask.new(:test) do |t|
7
- t.libs << "test"
8
- t.libs << "lib"
9
- t.test_files = FileList["test/**/*_test.rb"]
10
- end
11
-
12
- default = %i[test]
13
-
14
- rubocop = true
15
-
16
- begin
17
- require "rubocop/rake_task"
18
- rescue LoadError
19
- rubocop = false
20
- end
21
-
22
- if rubocop
23
- RuboCop::RakeTask.new
24
- default << :rubocop
25
- end
26
-
27
- task(default:)
@@ -16,5 +16,5 @@
16
16
  # along with this program. If not, see <https://www.gnu.org/licenses/>.
17
17
 
18
18
  module PXMyPortal
19
- VERSION = "0.0.1"
19
+ VERSION = "0.0.2"
20
20
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pxmyportal
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - gemmaro
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-05-10 00:00:00.000000000 Z
11
+ date: 2025-05-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: http-cookie
@@ -38,7 +38,7 @@ dependencies:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
- description: このgemはPXマイポータルのコマンドラインツールpxmyportalを提供します。現時点で給与明細書のダウンロードを行えます。
41
+ description: このgemはPXまいポータルのコマンドラインツールpxmyportalを提供します。現時点で給与明細書のダウンロードを行えます。
42
42
  email:
43
43
  - gemmaro.dev@gmail.com
44
44
  executables:
@@ -47,7 +47,6 @@ extensions: []
47
47
  extra_rdoc_files: []
48
48
  files:
49
49
  - ".env.example"
50
- - ".rubocop.yml"
51
50
  - CHANGELOG.md
52
51
  - COPYING
53
52
  - README.md
@@ -58,7 +57,6 @@ files:
58
57
  - lib/pxmyportal/command.rb
59
58
  - lib/pxmyportal/payslip.rb
60
59
  - lib/pxmyportal/version.rb
61
- - sig/pxmyportal.rbs
62
60
  homepage:
63
61
  licenses:
64
62
  - GPL-3.0-or-later
data/.rubocop.yml DELETED
@@ -1,8 +0,0 @@
1
- AllCops:
2
- TargetRubyVersion: 3.0
3
-
4
- Style/StringLiterals:
5
- EnforcedStyle: double_quotes
6
-
7
- Style/StringLiteralsInInterpolation:
8
- EnforcedStyle: double_quotes
data/sig/pxmyportal.rbs DELETED
@@ -1,4 +0,0 @@
1
- module PXMyPortal
2
- VERSION: String
3
- # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
- end