Skip to content

Commit 851c704

Browse files
authored
Merge pull request #2 from serverkit/update-gemspec
Update gem link / CI against Ruby v3.4
2 parents a3a05b7 + a86a641 commit 851c704

File tree

7 files changed

+13
-92
lines changed

7 files changed

+13
-92
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ name: Test
22
on:
33
push:
44
jobs:
5-
rspec:
5+
test:
66
strategy:
77
matrix:
88
os: [ubuntu-latest, macos-latest]
9-
ruby: ['2.7', '3.0', '3.1', '3.2', '3.3']
9+
ruby: ["2.7", "3.0", "3.1", "3.2", "3.3", "3.4"]
1010
runs-on: ${{ matrix.os }}
1111
steps:
1212
- uses: actions/checkout@v4

CODE_OF_CONDUCT.md

Lines changed: 0 additions & 74 deletions
This file was deleted.

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2019-2024 toshimaru
3+
Copyright (c) 2025 toshimaru
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Test](https://github.com/toshimaru/serverkit-vscode/actions/workflows/test.yml/badge.svg)](https://github.com/toshimaru/serverkit-vscode/actions/workflows/test.yml)
1+
[![Test](https://github.com/serverkit/serverkit-vscode/actions/workflows/test.yml/badge.svg)](https://github.com/serverkit/serverkit-vscode/actions/workflows/test.yml)
22
[![Gem Version](https://badge.fury.io/rb/serverkit-vscode.svg)](https://badge.fury.io/rb/serverkit-vscode)
33

44
# serverkit-vscode
@@ -11,6 +11,7 @@
1111
# Gemfile
1212
gem "serverkit-vscode"
1313
```
14+
1415
## Resource
1516

1617
### vscode_package
@@ -33,10 +34,10 @@ resources:
3334
version: 1.156.0
3435
```
3536
36-
## License
37+
## Contributing
3738
38-
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
39+
Bug reports and pull requests are welcome on GitHub at [serverkit/serverkit-vscode](https://github.com/serverkit/serverkit-vscode).
3940
40-
## Code of Conduct
41+
## License
4142
42-
Everyone interacting in the Serverkit::Vscode project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/toshimaru/serverkit-vscode/blob/master/CODE_OF_CONDUCT.md).
43+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).

bin/console

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,5 @@ require "serverkit/vscode"
66
# You can add fixtures and/or initialization code here to make experimenting
77
# with your gem easier. You can also use a different console, if you like.
88

9-
# (If you use this, don't forget to add pry to your Gemfile!)
10-
# require "pry"
11-
# Pry.start
12-
139
require "irb"
1410
IRB.start(__FILE__)

lib/serverkit/vscode.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# frozen_string_literal: true
22

3-
require 'serverkit/vscode/version'
4-
require 'serverkit/resources/vscode_package'
3+
require_relative 'vscode/version'
4+
require_relative 'resources/vscode_package'

serverkit-vscode.gemspec

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
# frozen_string_literal: true
22

3-
lib = File.expand_path("../lib", __FILE__)
4-
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5-
require "serverkit/vscode/version"
3+
require_relative "lib/serverkit/vscode/version"
64

75
Gem::Specification.new do |spec|
86
spec.name = "serverkit-vscode"
@@ -12,7 +10,7 @@ Gem::Specification.new do |spec|
1210

1311
spec.summary = %q{Serverkit plug-in for VSCode.}
1412
spec.description = %q{Serverkit plug-in for VSCode.}
15-
spec.homepage = "https://github.com/toshimaru/serverkit-vscode"
13+
spec.homepage = "https://github.com/serverkit/serverkit-vscode"
1614
spec.license = "MIT"
1715

1816
# Specify which files should be added to the gem when it is released.

0 commit comments

Comments
 (0)