ruby-lsp-shoulda-context 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 187f5ae0d0929abe9c9642e92de8859d06fbe03a3633c41402eb009e28023568
4
- data.tar.gz: f8e209ea9af5c9d884a0536328a35a2ba0791c238306148b844cb6b81ca9caad
3
+ metadata.gz: df77769d30187280cbfb7653ab7c30b097f1a257e96d6f8b516973c17e01e060
4
+ data.tar.gz: a4b86b7db5dbf742a8e23e209014b1f439fe09f6d183ee3b2cbdb3d2af09a884
5
5
  SHA512:
6
- metadata.gz: a41cfbdabc0ce001903accdaf9694463f74e81172531b65043378e1360ad9126a7b952d6c494309f63c89298038e858ebdbef11f25de3430306ad31f26cb0eb2
7
- data.tar.gz: 5710da8600b182a6782449955100dc5262b046b0af9a1575854b3c1a19330a26bddfeded4cf1f5e6982b4a74ca4f701c5a7fe96a541f2a8c7a167b91ca3d754f
6
+ metadata.gz: 10d9c031dfb1ebeb7710458e2bc57197ac9fd2d565351067d62d920558a40d8e0579bd82e37a8b869368b2e892b10a08a1e1de769bf37ce1108a70fe17cceea4
7
+ data.tar.gz: 75f3213c94dafce5ec96bbf6d3ab922b6806fa76b1c55a4dd96da7ff9765d5e771ffbb14cd5dcfe10700a530e1e88d75a747dbb4249301c7b9924e5850e12444
data/CHANGELOG.md CHANGED
@@ -1,5 +1,6 @@
1
1
  ## [Unreleased]
2
-
2
+ ## [0.2.0] - 2024-02-07
3
+ - Add bump gem for semantic versioning and changelog
3
4
  ## [0.1.0] - 2024-02-07
4
5
 
5
6
  - Initial release
data/Rakefile CHANGED
@@ -9,10 +9,5 @@ require "rubocop/rake_task"
9
9
 
10
10
  RuboCop::RakeTask.new
11
11
 
12
- # Rake::TestTask.new(:test) do |t|
13
- # t.libs << "test"
14
- # t.libs << "lib"
15
- # t.test_files = FileList["test/**/*_test.rb"]
16
- # end
17
12
 
18
13
  task default: [:test, :rubocop]
data/Readme.md CHANGED
@@ -4,15 +4,15 @@ This gem provides support for [shoulda-context](https://github.com/thoughtbot/sh
4
4
 
5
5
  ## Installation
6
6
 
7
- 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.
7
+ TODO: Replace `ruby-lsp-shoulda-context` 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
8
 
9
9
  Install the gem and add to the application's Gemfile by executing:
10
10
 
11
- $ bundle add UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
11
+ bundle add ruby-lsp-shoulda-context
12
12
 
13
13
  If bundler is not being used to manage dependencies, install the gem by executing:
14
14
 
15
- $ gem install UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
15
+ gem install ruby-lsp-shoulda-context
16
16
 
17
17
  ## Usage
18
18
 
@@ -36,7 +36,7 @@ The gem is available as open source under the terms of the [MIT License](https:/
36
36
 
37
37
  Everyone interacting in the RubyLsp::ShouldaContext project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[domingo2000]/ruby-lsp-shoulda-context/blob/main/CODE_OF_CONDUCT.md).
38
38
 
39
- ## Roadmap:
39
+ ## Roadmap
40
40
 
41
41
  - [x] Make context runnable
42
42
  - [x] Make should with string runnable
@@ -3,6 +3,6 @@
3
3
 
4
4
  module RubyLsp
5
5
  module ShouldaContext
6
- VERSION = "0.1.0"
6
+ VERSION = "0.2.0"
7
7
  end
8
8
  end
@@ -0,0 +1,11 @@
1
+ # typed: strict
2
+ # frozen_string_literal: true
3
+
4
+ require_relative "shoulda_context/version"
5
+
6
+ module RubyLsp
7
+ module ShouldaContext
8
+ class Error < StandardError; end
9
+ # Your code goes here...
10
+ end
11
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-lsp-shoulda-context
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Domingo Edwards
@@ -40,6 +40,7 @@ files:
40
40
  - Readme.md
41
41
  - lib/ruby_lsp/ruby-lsp-shoulda-context/addon.rb
42
42
  - lib/ruby_lsp/ruby-lsp-shoulda-context/code_lens.rb
43
+ - lib/ruby_lsp/shoulda_context.rb
43
44
  - lib/ruby_lsp/shoulda_context/version.rb
44
45
  homepage: https://github.com/domingo2000/ruby-lsp-shoulda-context
45
46
  licenses: