Skip to content

Releases: lekemula/solargraph-rspec

v0.5.5

05 Oct 12:52

Choose a tag to compare

What's Changed

Fixed

  • Fix go-to-definition and hover for RSpec DSL by @lekemula in #28

Other Changes

New Contributors

Full Changelog: v0.5.4...v0.5.5

v0.5.4

06 Sep 18:56

Choose a tag to compare

What's Changed

  • Fix breaking of solargraph rubocop diagnostics by @lekemula in #19

Full Changelog: v0.5.3...v0.5.4

v0.5.3

02 Sep 21:12

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.5.2...v0.5.3

v0.5.2

27 Jun 11:57

Choose a tag to compare

Full Changelog: v0.5.1...v0.5.2

[0.5.2] - 2025-06-26

Fixed

  • Prevent issues for solargraph prism update (c574b4d)

v0.5.1

05 Apr 17:24

Choose a tag to compare

What's Changed

  • Exclude doc/ directory from gemspecs - reduce gem size
  • Require ruby >=3 and update gems #8
  • Re-use RSpec method definitions directly from source YARD definitions #9

Full Changelog: v0.4.1...v0.5.1

v0.4.1

28 Jan 23:00

Choose a tag to compare

v.0.4.1 - 2025-01-28

Fixed

  • (Hot)fix parsing and type inference for solargraph v0.51.x and ruby v3.4.x (008d3ea and 414bc8e)

v0.4.0

25 Aug 17:44

Choose a tag to compare

Full Changelog: v0.3.0...v0.4.0

v.0.4.0 - 2024-08-25

Added

v0.3.0

10 Jul 12:39

Choose a tag to compare

What's Changed

  • Added example_methods configuration option by @mskog in #6

New Contributors

  • @mskog made their first contribution in #6

Full Changelog: v0.2.2...v0.3.0

v0.2.2

23 Jun 16:41

Choose a tag to compare

Full Changelog: v0.2.1...v0.2.2

v0.2.2 - 2024-06-23

Fixed

  • Suggest keeping spec/**/* in the exclude section of .solargraph.yml to avoid performance issues (see commit)
  • Fix let definitions when do/end keywords overlap with body definition
      let(:todo) do # "do" keyword overlap
        {
          'todo' => 'end' # "end" keyword overlap
        }
      end
  • Error handling in SpecWalker::FakeLetMethod

v0.2.1

11 Jun 18:14

Choose a tag to compare

Full Changelog: v0.2.0...v0.2.1

[0.2.1] - 2024-06-09

Added

  • Documentation for RSpec::ExampleGroups DSL methods like it, fit, example etc.

Fixed

  • Fix nameless subject method completion inside nested context blocks
  • (Hack-ish) Fix described_class type collision when RSpec.describe SomeClassWithoutNamespace