serverkit-vscode 0.1.0 → 0.1.1

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: ea64eeeced58ede482bbaa1aec20f4000222ee5ec80e483ae0662766a5c250a7
4
- data.tar.gz: 9fae0570fbacbd471da9dbbf3f3a7ffa41aa3d41bd0d9d8f2a036d88eb575ca0
3
+ metadata.gz: 8e605249923f9e8fb5cb06feb0935f8a2359507b2c399df5c7f31ea6f3f4e400
4
+ data.tar.gz: 675ec0aa14a2dc3b8eca9b098baa206049e1c7b58337a89a8698c856c4266f52
5
5
  SHA512:
6
- metadata.gz: 26fa6a785265392de2c2bfe3c4507aaafeeb78d72d63d5245142948fc36013aa2321be8f4b36d4de28dcbe048c98cb0937d8a223b4aeb9ed987ada693d49bf3d
7
- data.tar.gz: fe0f5e0df62926d9f924fd352d6f4046604284992661b3fda85bd7fa6fbaaed1c140f0432526301d758daaa581d9a2e17bb011406b4bba486a68d6d5e35f4987
6
+ metadata.gz: e548d1527c58a5773c743f50a7c78ddb6639659b931351ea6aef46b1e12b713a9299e12f0169ecfb2bdc1c8193f666c8d8cd46d2df025fcfa83dd115aae23559
7
+ data.tar.gz: 6ea1366c9c75a406eadae9d3c71f970039e874a58aa84de93a6b7c6db45ddd3e1d008290c8028f2f8eb7cfdf7ea9a23d85719abac27e3f688a362144323c372e
data/README.md CHANGED
@@ -1,40 +1,36 @@
1
1
  [![Build Status](https://travis-ci.org/toshimaru/serverkit-vscode.svg?branch=master)](https://travis-ci.org/toshimaru/serverkit-vscode)
2
2
 
3
- # Serverkit::Vscode
3
+ # serverkit-vscode
4
4
 
5
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/serverkit/vscode`. To experiment with that code, run `bin/console` for an interactive prompt.
5
+ [Serverkit](https://github.com/serverkit/serverkit) plug-in for [VSCode](https://code.visualstudio.com/).
6
6
 
7
- TODO: Delete this and the text above, and describe your gem
7
+ ## Install
8
8
 
9
- ## Installation
10
-
11
- Add this line to your application's Gemfile:
12
-
13
- ```ruby
14
- gem 'serverkit-vscode'
9
+ ```rb
10
+ # Gemfile
11
+ gem "serverkit-vscode"
15
12
  ```
13
+ ## Resource
16
14
 
17
- And then execute:
18
-
19
- $ bundle
20
-
21
- Or install it yourself as:
15
+ ### vscode_package
22
16
 
23
- $ gem install serverkit-vscode
17
+ Install specified VSCode package.
24
18
 
25
- ## Usage
19
+ #### Attributes
26
20
 
27
- TODO: Write usage instructions here
21
+ - `name` - package name (required)
22
+ - `version` - package version (optional)
28
23
 
29
- ## Development
24
+ #### Example
30
25
 
31
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
32
-
33
- 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 tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
34
-
35
- ## Contributing
36
-
37
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/serverkit-vscode. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
26
+ ```yaml
27
+ resources:
28
+ - type: vscode_package
29
+ name: GitHub.vscode-pull-request-github
30
+ - type: vscode_package
31
+ name: ms-vscode.Go
32
+ version: 0.11.0
33
+ ```
38
34
 
39
35
  ## License
40
36
 
@@ -42,4 +38,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
42
38
 
43
39
  ## Code of Conduct
44
40
 
45
- 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/[USERNAME]/serverkit-vscode/blob/master/CODE_OF_CONDUCT.md).
41
+ 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).
@@ -10,7 +10,7 @@ module Serverkit
10
10
 
11
11
  # @note Override
12
12
  def apply
13
- run_command("code -install-extension #{name_with_version}")
13
+ run_command("code --install-extension #{name_with_version}")
14
14
  end
15
15
 
16
16
  # @note Override
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Serverkit
4
4
  module Vscode
5
- VERSION = '0.1.0'
5
+ VERSION = '0.1.1'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: serverkit-vscode
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - toshimaru