solargraph-arc 0.2.0 → 0.3.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: 0f641277bcc7f3c74cb9f54ce2b9b4fbed6659bbb18d7220f557133874dcbf01
4
- data.tar.gz: 3ad1bafb9a1976a233d8ce47bc9d551cd68b08c1aed272e95e9512aadd471227
3
+ metadata.gz: d14c67f67d3bedee2ebede9a9124fdf376e438e9c477935255db91e58d140d1d
4
+ data.tar.gz: 710c36c1a98664c4cc4776a8aadc7b7693a0473d5b0745c91423e8da4884dd6c
5
5
  SHA512:
6
- metadata.gz: a3ceb156986b4249722188c9403c27d3dd48dd4912cf228827128a33d6cb6a58ae9326f2f482c32603cf7a191478a083eeb959849a1e1d7891bf0f5b29365620
7
- data.tar.gz: 806f4b1d9dc59fcdf148f3ee89c52215481505c2469a8e91c2a2e36d6de8daf6743382eed58ebff0c98114cc8826056440f501bb8c5dda9e700a4bc840feff23
6
+ metadata.gz: ccfbd1fc5f8ed61430b15e4aafd532dd1b9d345db4f4ff434f12eeac3bce2e40c8eaa1e8685c8a3b194f0bc2d6785ac8e5674a20b312ab4499525ac764674b9b
7
+ data.tar.gz: e3206fe21710052c68cd43edaa92807d69bd34c348de904ea61ff18a8d246618adbf6fbeda4b5fb78d615785b67921cf1fe300b4860d69b0aa43974bed6282f7
@@ -8,8 +8,6 @@
8
8
  name: Ruby
9
9
 
10
10
  on:
11
- push:
12
- branches: [ master ]
13
11
  pull_request:
14
12
  branches: [ master ]
15
13
 
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # CHANGELOG
2
2
 
3
- # 0.1.0
3
+ # 0.3.0
4
+
5
+ - Relax ActiveSupport dependency
6
+
7
+ # 0.2.0
4
8
 
5
9
  Initial alpha
data/Gemfile.lock CHANGED
@@ -1,8 +1,8 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- solargraph-arc (0.2.0)
5
- activesupport (~> 6.1.4.1)
4
+ solargraph-arc (0.3.0)
5
+ activesupport (>= 5.0)
6
6
  solargraph (~> 0.44.2)
7
7
 
8
8
  GEM
@@ -33,7 +33,7 @@ GEM
33
33
  nokogiri (1.12.5-arm64-darwin)
34
34
  racc (~> 1.4)
35
35
  parallel (1.21.0)
36
- parser (3.0.3.1)
36
+ parser (3.0.3.2)
37
37
  ast (~> 2.4.1)
38
38
  pry (0.14.1)
39
39
  coderay (~> 1.1)
@@ -67,7 +67,7 @@ GEM
67
67
  rubocop-ast (>= 1.12.0, < 2.0)
68
68
  ruby-progressbar (~> 1.7)
69
69
  unicode-display_width (>= 1.4.0, < 3.0)
70
- rubocop-ast (1.13.0)
70
+ rubocop-ast (1.15.0)
71
71
  parser (>= 3.0.1.1)
72
72
  ruby-progressbar (1.11.0)
73
73
  solargraph (0.44.2)
@@ -90,7 +90,9 @@ GEM
90
90
  tzinfo (2.0.4)
91
91
  concurrent-ruby (~> 1.0)
92
92
  unicode-display_width (2.1.0)
93
- yard (0.9.26)
93
+ webrick (1.7.0)
94
+ yard (0.9.27)
95
+ webrick (~> 1.7.0)
94
96
  zeitwerk (2.5.1)
95
97
 
96
98
  PLATFORMS
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Solargraph ARC
2
2
 
3
- [Solargraph](https://solargraph.org/) **A**wesome **R**ails **C**completions
3
+ [Solargraph](https://solargraph.org/) **A**wesome **R**ails **C**ompletions
4
4
 
5
5
  ## Features
6
6
 
@@ -29,7 +29,7 @@ This gem currently supports:
29
29
 
30
30
  ## Usage
31
31
 
32
- 1. Install gem and [make sure your editor is integrated with it](https://solargraph.org/)
32
+ 1. Install gem and [make sure your editor is integrated with solargraph](https://solargraph.org/)
33
33
 
34
34
  ```
35
35
  gem install solargraph-arc
@@ -53,6 +53,10 @@ Execute this in your project root:
53
53
 
54
54
  otherwise a lot of completions won't work
55
55
 
56
+ ## Troubleshooting
57
+
58
+ See https://solargraph.org/guides/troubleshooting
59
+
56
60
  ## Contributing
57
61
 
58
62
  1. create fork and clone the repo
@@ -1,5 +1,5 @@
1
1
  module Solargraph
2
2
  module Arc
3
- VERSION = "0.2.0"
3
+ VERSION = "0.3.0"
4
4
  end
5
5
  end
@@ -39,5 +39,5 @@ Gem::Specification.new do |spec|
39
39
  spec.add_development_dependency "rspec", "~> 3.9.0"
40
40
  spec.add_development_dependency "pry", "~> 0.14.1"
41
41
  spec.add_dependency "solargraph", "~> 0.44.2"
42
- spec.add_dependency "activesupport", "~> 6.1.4.1"
42
+ spec.add_dependency "activesupport", ">= 5.0"
43
43
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: solargraph-arc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrei Lisnic
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-12-19 00:00:00.000000000 Z
11
+ date: 2021-12-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -84,16 +84,16 @@ dependencies:
84
84
  name: activesupport
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
- - - "~>"
87
+ - - ">="
88
88
  - !ruby/object:Gem::Version
89
- version: 6.1.4.1
89
+ version: '5.0'
90
90
  type: :runtime
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
- - - "~>"
94
+ - - ">="
95
95
  - !ruby/object:Gem::Version
96
- version: 6.1.4.1
96
+ version: '5.0'
97
97
  description: Awesome Rails Completions for solargraph
98
98
  email:
99
99
  - andrei.lisnic@gmail.com
@@ -154,7 +154,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
154
154
  - !ruby/object:Gem::Version
155
155
  version: '0'
156
156
  requirements: []
157
- rubygems_version: 3.0.9
157
+ rubygems_version: 3.2.33
158
158
  signing_key:
159
159
  specification_version: 4
160
160
  summary: Awesome Rails Completions for solargraph