solargraph-standardrb 0.0.1 → 0.0.2

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: 10f87a9cf79b78b6cad442b979310c828d374cb56abd7cda7d61dd306bb1671a
4
- data.tar.gz: ce240c2812da09e98947e8731d734c2f20606d9d03101bd5ed95b1d8d61537b5
3
+ metadata.gz: 42c961ce3082a0ee6616930504af54e15b3455b4c54affcf17eeba5325796f19
4
+ data.tar.gz: d562f2596b0b893c1ba0eb2dbdd1fdd1207e3d7a1f81d907843c31e953c084b0
5
5
  SHA512:
6
- metadata.gz: 269873fa1b7e145f54ed20f247a183d2e1bf5a64ed2133e639e498d76d71f13b95fbcb1addacbd09bcb5db17f8bde7bed58d89c2f6a3b49a2c03f0d383fa0a27
7
- data.tar.gz: bab31ef9938f526bebc9c4d47681c6e551b839a5b21d8f62c16bc0ab4ed02f342bb9ac5b58d05266fb61224a513cd7f638d296fef53154cac6ca80c589e5814b
6
+ metadata.gz: 366fb67a87d6e3fdf60270093220b06971f4e9262cf953a256d12558f9b83aa51f158021a3d5a46ed662926d7ba5f09874688942d66d5f4dbc2fb9ea4c241d0e
7
+ data.tar.gz: 6156cfcc186416f6777e8937617f71e2461174b4cdbdfba804c728ebacbad54e89d2e3bae30fc0b8f2c45a8844aea6ec1d43952cd40a9a42557eccbae85038d9
@@ -1,16 +1,13 @@
1
1
  ---
2
2
  include:
3
- - "**/*.rb"
3
+ - "**/*.rb"
4
4
  exclude:
5
- - spec/**/*
6
- - test/**/*
7
- - vendor/**/*
8
- - ".bundle/**/*"
9
- require: []
10
- domains: []
5
+ - spec/**/*
6
+ - test/**/*
7
+ - vendor/**/*
8
+ - ".bundle/**/*"
11
9
  reporters:
12
- - standardrb
13
- require_paths: []
10
+ - standardrb
14
11
  plugins:
15
- - solargraph-standardrb
12
+ - solargraph-standardrb
16
13
  max_files: 5000
@@ -1,9 +1,9 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- solargraph-standardrb (0.0.1)
4
+ solargraph-standardrb (0.0.2)
5
5
  solargraph (~> 0.39.1)
6
- standard (~> 0.2.4)
6
+ standard (~> 0.4.1)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
@@ -19,7 +19,7 @@ GEM
19
19
  nokogiri (1.10.9)
20
20
  mini_portile2 (~> 2.4.0)
21
21
  parallel (1.19.1)
22
- parser (2.7.1.1)
22
+ parser (2.7.1.2)
23
23
  ast (~> 2.4.0)
24
24
  rainbow (3.0.0)
25
25
  rake (12.3.3)
@@ -39,18 +39,17 @@ GEM
39
39
  diff-lcs (>= 1.2.0, < 2.0)
40
40
  rspec-support (~> 3.9.0)
41
41
  rspec-support (3.9.2)
42
- rubocop (0.80.1)
43
- jaro_winkler (~> 1.5.1)
42
+ rubocop (0.83.0)
44
43
  parallel (~> 1.10)
45
44
  parser (>= 2.7.0.1)
46
45
  rainbow (>= 2.2.2, < 4.0)
47
46
  rexml
48
47
  ruby-progressbar (~> 1.7)
49
- unicode-display_width (>= 1.4.0, < 1.7)
48
+ unicode-display_width (>= 1.4.0, < 2.0)
50
49
  rubocop-performance (1.5.2)
51
50
  rubocop (>= 0.71.0)
52
51
  ruby-progressbar (1.10.1)
53
- solargraph (0.39.1)
52
+ solargraph (0.39.7)
54
53
  backport (~> 1.1)
55
54
  benchmark
56
55
  bundler (>= 1.17.2)
@@ -64,13 +63,13 @@ GEM
64
63
  thor (~> 1.0)
65
64
  tilt (~> 2.0)
66
65
  yard (~> 0.9, >= 0.9.24)
67
- standard (0.2.4)
68
- rubocop (~> 0.80.1)
66
+ standard (0.4.2)
67
+ rubocop (~> 0.83.0)
69
68
  rubocop-performance (~> 1.5.2)
70
69
  thor (1.0.1)
71
70
  tilt (2.0.10)
72
- unicode-display_width (1.6.1)
73
- yard (0.9.24)
71
+ unicode-display_width (1.7.0)
72
+ yard (0.9.25)
74
73
 
75
74
  PLATFORMS
76
75
  ruby
data/README.md CHANGED
@@ -1,8 +1,6 @@
1
- # Solargraph::Standardrb
1
+ # Solargraph StandardRb
2
2
 
3
- 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/solargraph/standardrb`. To experiment with that code, run `bin/console` for an interactive prompt.
4
-
5
- TODO: Delete this and the text above, and describe your gem
3
+ A StandardRb diagnostics reporter for the Solargraph language server.
6
4
 
7
5
  ## Installation
8
6
 
@@ -14,7 +12,7 @@ gem 'solargraph-standardrb'
14
12
 
15
13
  And then execute:
16
14
 
17
- $ bundle install
15
+ $ bundle
18
16
 
19
17
  Or install it yourself as:
20
18
 
@@ -22,23 +20,12 @@ Or install it yourself as:
22
20
 
23
21
  ## Usage
24
22
 
25
- TODO: Write usage instructions here
26
-
27
- ## Development
28
-
29
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
-
31
- 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).
32
-
33
- ## Contributing
34
-
35
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/solargraph-standardrb. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/solargraph-standardrb/blob/master/CODE_OF_CONDUCT.md).
23
+ Add solargraph-standardrb to your project's `.solargraph.yml` file:
36
24
 
25
+ ```
26
+ plugins:
27
+ - solargraph-standardrb
28
+ reporters:
29
+ - standardrb
30
+ ```
37
31
 
38
- ## License
39
-
40
- The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
41
-
42
- ## Code of Conduct
43
-
44
- Everyone interacting in the Solargraph::Standardrb project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/solargraph-standardrb/blob/master/CODE_OF_CONDUCT.md).
@@ -1,5 +1,5 @@
1
1
  module Solargraph
2
2
  module Standardrb
3
- VERSION = "0.0.1"
3
+ VERSION = "0.0.2"
4
4
  end
5
5
  end
@@ -19,5 +19,5 @@ Gem::Specification.new do |spec|
19
19
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
20
  spec.require_paths = ["lib"]
21
21
  spec.add_runtime_dependency "solargraph", "~> 0.39.1"
22
- spec.add_runtime_dependency "standard", "~> 0.2.4"
22
+ spec.add_runtime_dependency "standard", "~> 0.4.1"
23
23
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: solargraph-standardrb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yana Agun Siswanto
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-04-26 00:00:00.000000000 Z
11
+ date: 2020-05-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: solargraph
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 0.2.4
33
+ version: 0.4.1
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: 0.2.4
40
+ version: 0.4.1
41
41
  description: Solargraph Standardrb reporter
42
42
  email:
43
43
  - yana.developer@gmail.com
@@ -58,7 +58,6 @@ files:
58
58
  - bin/console
59
59
  - bin/setup
60
60
  - lib/solargraph-standardrb.rb
61
- - lib/solargraph/standardrb.rb
62
61
  - lib/solargraph/standardrb/version.rb
63
62
  - solargraph-standardrb.gemspec
64
63
  homepage: https://github.com/bekicot/solargraph-standardrb
File without changes