code_analyzer 0.4.6 → 0.5.2

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.
@@ -1,13 +1,13 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'spec_helper'
2
4
 
3
5
  module CodeAnalyzer
4
6
  describe Warning do
5
- it "should return error with filename, line number and message" do
6
-
7
- expect(Warning.new(
8
- filename: "app/models/user.rb",
9
- line_number: "100",
10
- message: "not good").to_s).to eq "app/models/user.rb:100 - not good"
7
+ it 'should return error with filename, line number and message' do
8
+ expect(
9
+ Warning.new(filename: 'app/models/user.rb', line_number: '100', message: 'not good').to_s
10
+ ).to eq 'app/models/user.rb:100 - not good'
11
11
  end
12
12
  end
13
13
  end
@@ -1,5 +1,7 @@
1
+ # frozen_string_literal: true
2
+
1
3
  $LOAD_PATH.unshift(File.dirname(__FILE__))
2
- $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), "..", "lib"))
4
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
3
5
 
4
6
  require 'rspec'
5
7
  require 'code_analyzer'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: code_analyzer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.6
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Richard Huang
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-08-07 00:00:00.000000000 Z
11
+ date: 2020-07-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sexp_processor
@@ -91,7 +91,7 @@ homepage: https://github.com/flyerhzm/code_analyzer
91
91
  licenses:
92
92
  - MIT
93
93
  metadata: {}
94
- post_install_message:
94
+ post_install_message:
95
95
  rdoc_options: []
96
96
  require_paths:
97
97
  - lib
@@ -106,9 +106,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
106
106
  - !ruby/object:Gem::Version
107
107
  version: '0'
108
108
  requirements: []
109
- rubyforge_project:
110
- rubygems_version: 2.5.1
111
- signing_key:
109
+ rubygems_version: 3.1.2
110
+ signing_key:
112
111
  specification_version: 4
113
112
  summary: a code analyzer helps you build your own code analyzer tool.
114
113
  test_files: