Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ name: Test
on:
push:
jobs:
rspec:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
ruby: ['2.7', '3.0', '3.1', '3.2', '3.3']
ruby: ["2.7", "3.0", "3.1", "3.2", "3.3", "3.4"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down
74 changes: 0 additions & 74 deletions CODE_OF_CONDUCT.md

This file was deleted.

2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2019-2024 toshimaru
Copyright (c) 2025 toshimaru

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Test](https://github.com/toshimaru/serverkit-vscode/actions/workflows/test.yml/badge.svg)](https://github.com/toshimaru/serverkit-vscode/actions/workflows/test.yml)
[![Test](https://github.com/serverkit/serverkit-vscode/actions/workflows/test.yml/badge.svg)](https://github.com/serverkit/serverkit-vscode/actions/workflows/test.yml)
[![Gem Version](https://badge.fury.io/rb/serverkit-vscode.svg)](https://badge.fury.io/rb/serverkit-vscode)

# serverkit-vscode
Expand All @@ -11,6 +11,7 @@
# Gemfile
gem "serverkit-vscode"
```

## Resource

### vscode_package
Expand All @@ -33,10 +34,10 @@ resources:
version: 1.156.0
```

## License
## Contributing

The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
Bug reports and pull requests are welcome on GitHub at [serverkit/serverkit-vscode](https://github.com/serverkit/serverkit-vscode).

## Code of Conduct
## License

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).
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
4 changes: 0 additions & 4 deletions bin/console
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,5 @@ require "serverkit/vscode"
# You can add fixtures and/or initialization code here to make experimenting
# with your gem easier. You can also use a different console, if you like.

# (If you use this, don't forget to add pry to your Gemfile!)
# require "pry"
# Pry.start

require "irb"
IRB.start(__FILE__)
4 changes: 2 additions & 2 deletions lib/serverkit/vscode.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# frozen_string_literal: true

require 'serverkit/vscode/version'
require 'serverkit/resources/vscode_package'
require_relative 'vscode/version'
require_relative 'resources/vscode_package'
6 changes: 2 additions & 4 deletions serverkit-vscode.gemspec
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# frozen_string_literal: true

lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "serverkit/vscode/version"
require_relative "lib/serverkit/vscode/version"

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

spec.summary = %q{Serverkit plug-in for VSCode.}
spec.description = %q{Serverkit plug-in for VSCode.}
spec.homepage = "https://github.com/toshimaru/serverkit-vscode"
spec.homepage = "https://github.com/serverkit/serverkit-vscode"
spec.license = "MIT"

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