danica 2.7.5 → 2.7.6

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: 0aa87c4f5832d6ab5e0ecf3ee864cf2482938d15b2deaaff5409d295a664606b
4
- data.tar.gz: 7e9f79d9fd199f3f17983d48487d7d0b84c42e976a684100357ac88fab3e67db
3
+ metadata.gz: adec95bf637395e77d15b0ba8227e1dee950f3fe0e47fa23c7691dda7ed2c301
4
+ data.tar.gz: 2559adb6edd7c047fe13f30ca870d14b390587d0be404a3abc837d5774004241
5
5
  SHA512:
6
- metadata.gz: 6f6254fa99e724a04a00bc0f943e082fc8f59f9e3efc60b6bdfa1d6e3f0554a22841849027588b7377619781d098badbb31480ff80857d6d9f3c3122203ec8bd
7
- data.tar.gz: 5e14fef2c26461a234e18b73a8eea187117336aed2a2c0fcb7ca30f324a4ff2ba6bcb2c1d4ddfe7c0ac1d97de99d1b3af9af92bc5c1fdd5ae0ab0e13cecd24e3
6
+ metadata.gz: b4810b520ec682ccb868d6b04fbdc7f45b997750f742ea61c907d50d81a2c2c001bc80f88fe623abf298db5396dacd1cb0e96861ee84764fde8deb2991b8b040
7
+ data.tar.gz: fe80a2a718db1f040803e5ca0afd75b275ebcac40e2a5d945d183faf0f4e44a9e0a558fbc00a20cd750d4b0621e958956b4d2d36c72744b8ebaa1cb7a1536017
data/.circleci/config.yml CHANGED
@@ -1,8 +1,26 @@
1
1
  version: 2
2
+ workflows:
3
+ version: 2
4
+ test-and-build:
5
+ jobs:
6
+ - test:
7
+ filters:
8
+ tags:
9
+ only: /.*/
10
+ - build-and-release:
11
+ requires: [test]
12
+ filters:
13
+ tags:
14
+ only: /\d+\.\d+\.\d+/
15
+ branches:
16
+ only:
17
+ - master
2
18
  jobs:
3
- build:
19
+ test:
4
20
  docker:
5
- - image: darthjee/circleci_ruby_gems:0.1.0
21
+ - image: darthjee/circleci_ruby_250:0.6.2
22
+ environment:
23
+ PROJECT: danica
6
24
  steps:
7
25
  - checkout
8
26
  - run:
@@ -23,6 +41,31 @@ jobs:
23
41
  - run:
24
42
  name: Yardstick coverage check
25
43
  command: bundle exec rake verify_measurements
44
+ - run:
45
+ name: Check version documentation
46
+ command: check_readme.sh
26
47
  - run:
27
48
  name: Rubycritcs check
28
- command: scripts/rubycritic.sh
49
+ command: rubycritic.sh
50
+ - run:
51
+ name: Check unit tests
52
+ command: check_specs
53
+ build-and-release:
54
+ docker:
55
+ - image: darthjee/circleci_ruby_250:0.6.2
56
+ environment:
57
+ PROJECT: danica
58
+ steps:
59
+ - checkout
60
+ - run:
61
+ name: Bundle Install
62
+ command: bundle install
63
+ - run:
64
+ name: Signin
65
+ command: build_gem.sh signin
66
+ - run:
67
+ name: Build Gem
68
+ command: build_gem.sh build
69
+ - run:
70
+ name: Push Gem
71
+ command: build_gem.sh push
data/.rubocop_todo.yml CHANGED
@@ -1,14 +1,14 @@
1
1
  # This configuration was generated by
2
2
  # `rubocop --auto-gen-config`
3
- # on 2019-07-14 10:50:19 +0000 using RuboCop version 0.58.1.
3
+ # on 2021-04-26 22:48:12 +0000 using RuboCop version 0.80.1.
4
4
  # The point is for the user to remove these configuration records
5
5
  # one by one as the offenses are removed from the code base.
6
6
  # Note that changes in the inspected code, or installation of new
7
7
  # versions of RuboCop, may require this file to be generated again.
8
8
 
9
- # Offense count: 3
9
+ # Offense count: 2
10
10
  Metrics/AbcSize:
11
- Max: 19
11
+ Max: 18
12
12
 
13
13
  # Offense count: 8
14
14
  # Configuration parameters: CountComments, ExcludedMethods.
@@ -17,7 +17,7 @@ Metrics/BlockLength:
17
17
  Max: 54
18
18
 
19
19
  # Offense count: 4
20
- # Configuration parameters: CountComments.
20
+ # Configuration parameters: CountComments, ExcludedMethods.
21
21
  Metrics/MethodLength:
22
22
  Max: 16
23
23
 
@@ -36,22 +36,37 @@ RSpec/FilePath:
36
36
  - 'spec/integration/readme/number_spec.rb'
37
37
  - 'spec/integration/readme/variables_spec.rb'
38
38
 
39
- # Offense count: 4
39
+ # Offense count: 1
40
+ RSpec/LeakyConstantDeclaration:
41
+ Exclude:
42
+ - 'spec/lib/danica/dsl_spec.rb'
43
+
44
+ # Offense count: 3
40
45
  RSpec/MultipleDescribes:
41
46
  Exclude:
42
47
  - 'spec/integration/readme/expression_spec.rb'
43
- - 'spec/integration/readme/formatting_spec.rb'
44
48
  - 'spec/integration/readme/function_spec.rb'
45
49
  - 'spec/integration/readme/operator_spec.rb'
46
50
 
47
- # Offense count: 294
51
+ # Offense count: 241
52
+ # Configuration parameters: IgnoreSharedExamples.
48
53
  RSpec/NamedSubject:
49
54
  Enabled: false
50
55
 
51
- # Offense count: 73
56
+ # Offense count: 79
52
57
  RSpec/NestedGroups:
53
58
  Max: 6
54
59
 
60
+ # Offense count: 2
61
+ RSpec/RepeatedExampleGroupBody:
62
+ Exclude:
63
+ - 'spec/lib/danica/function_spec.rb'
64
+
65
+ # Offense count: 2
66
+ RSpec/RepeatedExampleGroupDescription:
67
+ Exclude:
68
+ - 'spec/integration/global/danica/operator/multiplication_spec.rb'
69
+
55
70
  # Offense count: 35
56
71
  # Cop supports --auto-correct.
57
72
  # Configuration parameters: AutoCorrect, EnforcedStyle.
@@ -68,6 +83,13 @@ Style/EvalWithLocation:
68
83
  Exclude:
69
84
  - 'lib/danica/operator/functional.rb'
70
85
 
86
+ # Offense count: 1
87
+ # Configuration parameters: EnforcedStyle.
88
+ # SupportedStyles: left_coerce, right_coerce, single_coerce, fdiv
89
+ Style/FloatDivision:
90
+ Exclude:
91
+ - 'lib/danica/operator/division.rb'
92
+
71
93
  # Offense count: 1
72
94
  Style/MethodMissingSuper:
73
95
  Exclude:
@@ -85,7 +107,7 @@ Style/MultilineBlockChain:
85
107
 
86
108
  # Offense count: 2
87
109
  # Cop supports --auto-correct.
88
- # Configuration parameters: AutoCorrect, EnforcedStyle.
110
+ # Configuration parameters: AutoCorrect, EnforcedStyle, IgnoredMethods.
89
111
  # SupportedStyles: predicate, comparison
90
112
  Style/NumericPredicate:
91
113
  Exclude:
@@ -94,7 +116,8 @@ Style/NumericPredicate:
94
116
  - 'lib/danica/wrapper/number.rb'
95
117
 
96
118
  # Offense count: 83
97
- # Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
119
+ # Cop supports --auto-correct.
120
+ # Configuration parameters: AutoCorrect, AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
98
121
  # URISchemes: http, https
99
- Metrics/LineLength:
122
+ Layout/LineLength:
100
123
  Max: 181
data/Dockerfile CHANGED
@@ -1,26 +1,22 @@
1
- FROM darthjee/ruby_gems:0.1.0 as base
2
- FROM darthjee/scripts:0.0.2 as scripts
1
+ FROM darthjee/scripts:0.1.8 as scripts
2
+
3
+ FROM darthjee/ruby_250:0.6.2 as base
4
+
5
+ COPY --chown=app:app ./ /home/app/app/
3
6
 
4
7
  ######################################
5
8
 
6
9
  FROM base as builder
7
10
 
8
- COPY --chown=app ./ /home/app/app/
9
- COPY --chown=app:app --from=scripts /home/scripts/ ./
11
+ COPY --chown=app:app --from=scripts /home/scripts/builder/bundle_builder.sh /usr/local/sbin/bundle_builder.sh
10
12
 
11
13
  ENV HOME_DIR /home/app
12
- RUN /bin/bash bundle_builder.sh
14
+ RUN bundle_builder.sh
13
15
 
14
16
  #######################
15
17
  #FINAL IMAGE
16
18
  FROM base
17
19
 
18
- USER root
19
-
20
- COPY --chown=app:app --from=builder /home/app/bundle/gems /usr/local/bundle/gems
21
- COPY --chown=app:app --from=builder /home/app/bundle/cache /usr/local/bundle/cache
22
- COPY --chown=app:app --from=builder /home/app/bundle/specifications /usr/local/bundle/specifications
23
- COPY --chown=app:app --from=builder /home/app/bundle/bin /usr/local/bundle/bin
24
- COPY --chown=app:app --from=builder /home/app/bundle/extensions /usr/local/bundle/extensions
20
+ COPY --chown=app:app --from=builder /home/app/bundle/ /usr/local/bundle/
21
+ RUN bundle install
25
22
 
26
- USER app
data/README.md CHANGED
@@ -1,9 +1,17 @@
1
1
  # danica
2
2
  [![Code Climate](https://codeclimate.com/github/darthjee/danica/badges/gpa.svg)](https://codeclimate.com/github/darthjee/danica)
3
3
  [![Test Coverage](https://codeclimate.com/github/darthjee/danica/badges/coverage.svg)](https://codeclimate.com/github/darthjee/danica/coverage)
4
+ [![Issue Count](https://codeclimate.com/github/darthjee/danica/badges/issue_count.svg)](https://codeclimate.com/github/darthjee/danica)
5
+ [![Gem Version](https://badge.fury.io/rb/danica.svg)](https://badge.fury.io/rb/danica)
6
+ [![Codacy Badge](https://app.codacy.com/project/badge/Grade/7990acf6e4404787995fff3c0d6eb1dc)](https://www.codacy.com/gh/darthjee/danica/dashboard?utm_source=github.com&utm_medium=referral&utm_content=darthjee/danica&utm_campaign=Badge_Grade)
7
+ [![Inline docs](http://inch-ci.org/github/darthjee/danica.svg?branch=master)](http://inch-ci.org/github/darthjee/danica)
4
8
 
5
9
  A tool for math formulation on docs
6
10
 
11
+ Yard Documentation
12
+ -------------------
13
+ [https://www.rubydoc.info/gems/danica/2.7.6](https://www.rubydoc.info/gems/danica/2.7.6)
14
+
7
15
  ## How to use
8
16
  Add the gem to your project or just install the gem
9
17
 
@@ -613,7 +621,7 @@ which will have the returns of ```#to(format)``` obeying the following
613
621
  }
614
622
  ```
615
623
 
616
- ###Formatting
624
+ ### Formatting
617
625
  When generating the output, you can choose options or even
618
626
  create a formatted object
619
627
 
@@ -0,0 +1,13 @@
1
+ ignore:
2
+ - lib/danica/builder.rb
3
+ - lib/danica/dsl/builder.rb
4
+ - lib/danica/equation/builder.rb
5
+ - lib/danica/exception.rb
6
+ - lib/danica/operator/chained.rb
7
+ - lib/danica/operator/functional.rb
8
+ - lib/danica/variables_holder/alias_builder.rb
9
+ - lib/danica/variables_holder/calculator.rb
10
+ - lib/danica/variables_holder/variables_builder.rb
11
+ - lib/danica/wrapper/container.rb
12
+ - lib/danica/base_operations.rb
13
+ - lib/danica/version.rb
data/danica.gemspec CHANGED
@@ -20,14 +20,14 @@ Gem::Specification.new do |spec|
20
20
  spec.add_runtime_dependency 'darthjee-core_ext', '~> 1.7.3'
21
21
 
22
22
  spec.add_development_dependency 'bundler', '~> 1.16.1'
23
- spec.add_development_dependency 'pry-nav', '~> 0.2.4'
24
- spec.add_development_dependency 'rake', '>= 12.3.1'
25
- spec.add_development_dependency 'rspec', '>= 3.8'
26
- spec.add_development_dependency 'rubocop', '0.58.1'
27
- spec.add_development_dependency 'rubocop-rspec', '1.30.0'
28
- spec.add_development_dependency 'rubycritic', '>= 4.0.2'
29
- spec.add_development_dependency 'simplecov', '~> 0.16.x'
30
- spec.add_development_dependency 'yard', '>= 0.9.18'
23
+ spec.add_development_dependency 'pry-nav', '~> 0.3.0'
24
+ spec.add_development_dependency 'rake', '>= 13.0.1'
25
+ spec.add_development_dependency 'rspec', '>= 3.9.0'
26
+ spec.add_development_dependency 'rubocop', '0.80.1'
27
+ spec.add_development_dependency 'rubocop-rspec', '1.38.1'
28
+ spec.add_development_dependency 'rubycritic', '>= 4.4.1'
29
+ spec.add_development_dependency 'simplecov', '~> 0.17.1'
30
+ spec.add_development_dependency 'yard', '>= 0.9.24'
31
31
  spec.add_development_dependency 'yardstick', '>= 0.9.9'
32
32
 
33
33
  spec.add_development_dependency 'rspec-mocks'
@@ -30,6 +30,7 @@ module Danica
30
30
 
31
31
  def formatted_operation(other, value)
32
32
  return other.repack(value) if other.is_a?(Danica::Formatted)
33
+
33
34
  value
34
35
  end
35
36
  end
data/lib/danica/common.rb CHANGED
@@ -75,6 +75,7 @@ module Danica
75
75
 
76
76
  def wrap_as_group(value)
77
77
  return value if is_grouped? || value.priority >= priority
78
+
78
79
  group(value)
79
80
  end
80
81
  end
@@ -24,6 +24,7 @@ module Danica
24
24
  def build_clazz
25
25
  return clazz_from_method unless claz
26
26
  return claz if claz.is_a? Class
27
+
27
28
  clazz_from_string
28
29
  end
29
30
 
@@ -14,6 +14,7 @@ class Danica::Formatted
14
14
 
15
15
  def ==(other)
16
16
  return false unless other.class == self.class
17
+
17
18
  other.content == content &&
18
19
  other.format == format
19
20
  end
@@ -46,6 +47,7 @@ class Danica::Formatted
46
47
  def method_missing(method, *args)
47
48
  value = content.public_send(method, *args)
48
49
  return value unless value.is_a?(Danica::Common)
50
+
49
51
  repack(value)
50
52
  end
51
53
  end
@@ -22,6 +22,7 @@ module Danica
22
22
 
23
23
  def ==(other)
24
24
  return false unless other.class == self.class
25
+
25
26
  variables == other.variables
26
27
  end
27
28
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Danica
4
- VERSION = '2.7.5'
4
+ VERSION = '2.7.6'
5
5
  end
@@ -26,17 +26,20 @@ module Danica
26
26
  Variable.new(name: value)
27
27
  else
28
28
  raise Exception::InvalidInput, value unless value.is_a?(Danica::Common)
29
+
29
30
  value
30
31
  end
31
32
  end
32
33
 
33
34
  def self.wrap_numeric(number)
34
35
  return Negative.new(Number.new(-number)) if number < 0
36
+
35
37
  Number.new(number)
36
38
  end
37
39
 
38
40
  def self.wrap_hash(hash)
39
41
  return Constant.new(hash) if hash.keys.map(&:to_sym).sort == %i[gnuplot latex value]
42
+
40
43
  Variable.new(hash)
41
44
  end
42
45
  end
@@ -27,6 +27,7 @@ module Danica
27
27
 
28
28
  def ==(other)
29
29
  return false unless other.class == self.class
30
+
30
31
  gnuplot == other.gnuplot && latex == other.latex && value == other.value
31
32
  end
32
33
 
@@ -17,6 +17,7 @@ module Danica
17
17
 
18
18
  def ==(other)
19
19
  return content == other unless other.is_a?(self.class)
20
+
20
21
  content == other.content
21
22
  end
22
23
  end
@@ -26,6 +26,7 @@ module Danica
26
26
 
27
27
  def ==(other)
28
28
  return value == other unless other.is_a?(self.class)
29
+
29
30
  value == other.value
30
31
  end
31
32
  end
@@ -27,6 +27,7 @@ module Danica
27
27
 
28
28
  def ==(other)
29
29
  return false unless other.class == self.class
30
+
30
31
  value == other.value
31
32
  end
32
33
  end
@@ -18,6 +18,7 @@ module Danica
18
18
  def to(_format, decimals: nil, **_options)
19
19
  return value.to_i.to_s if value.to_i == value
20
20
  return format("%.#{decimals}f", value).to_f.to_s if decimals
21
+
21
22
  value.to_s
22
23
  end
23
24
 
@@ -31,6 +32,7 @@ module Danica
31
32
 
32
33
  def ==(other)
33
34
  return false unless other.class == self.class
35
+
34
36
  value == other.value
35
37
  end
36
38
  end
@@ -31,6 +31,7 @@ module Danica
31
31
 
32
32
  def ==(other)
33
33
  return false unless other.class == self.class
34
+
34
35
  value == other.value
35
36
  end
36
37
  end
@@ -27,6 +27,7 @@ module Danica
27
27
 
28
28
  def ==(other)
29
29
  return false unless other.class == self.class
30
+
30
31
  other.value == value &&
31
32
  other.name == name &&
32
33
  other.latex == latex &&
@@ -35,11 +36,13 @@ module Danica
35
36
 
36
37
  def to_tex(**options)
37
38
  return value.to_tex(options) if value
39
+
38
40
  (latex || name).to_s
39
41
  end
40
42
 
41
43
  def to_gnu(**options)
42
44
  return value.to_gnu(options) if value
45
+
43
46
  (gnuplot || name).to_s
44
47
  end
45
48
 
@@ -14,27 +14,27 @@ end
14
14
 
15
15
  shared_examples 'a class with mapped dsl' do
16
16
  {
17
- addition: Danica::Operator::Addition,
18
- sum: Danica::Operator::Addition,
17
+ addition: Danica::Operator::Addition,
18
+ sum: Danica::Operator::Addition,
19
19
  multiplication: Danica::Operator::Multiplication,
20
- product: Danica::Operator::Multiplication,
21
- division: Danica::Operator::Division,
22
- power: Danica::Operator::Power
20
+ product: Danica::Operator::Multiplication,
21
+ division: Danica::Operator::Division,
22
+ power: Danica::Operator::Power
23
23
  }.each do |aliaz, clazz|
24
24
  it_behaves_like 'a class with alias to a clazz', aliaz, clazz, 2, 3
25
25
  end
26
26
  {
27
- squared_root: Danica::Operator::SquaredRoot,
28
- sqrt: Danica::Operator::SquaredRoot,
29
- exponential: Danica::Operator::Exponential,
30
- sin: Danica::Operator::Sin,
31
- cos: Danica::Operator::Cos,
32
- group: Danica::Wrapper::Group,
33
- negative: Danica::Wrapper::Negative,
34
- number: Danica::Wrapper::Number,
35
- num: Danica::Wrapper::Number,
36
- plus_minus: Danica::Wrapper::PlusMinus,
37
- constant: Danica::Wrapper::Constant
27
+ squared_root: Danica::Operator::SquaredRoot,
28
+ sqrt: Danica::Operator::SquaredRoot,
29
+ exponential: Danica::Operator::Exponential,
30
+ sin: Danica::Operator::Sin,
31
+ cos: Danica::Operator::Cos,
32
+ group: Danica::Wrapper::Group,
33
+ negative: Danica::Wrapper::Negative,
34
+ number: Danica::Wrapper::Number,
35
+ num: Danica::Wrapper::Number,
36
+ plus_minus: Danica::Wrapper::PlusMinus,
37
+ constant: Danica::Wrapper::Constant
38
38
  }.each do |aliaz, clazz|
39
39
  it_behaves_like 'a class with alias to a clazz', aliaz, clazz, 9
40
40
  end
@@ -86,10 +86,10 @@ describe Danica::Formatted do
86
86
 
87
87
  describe 'operators' do
88
88
  it_behaves_like 'a formatted object that responds to basic operations',
89
- :+ => ['V + 2', '2 + V'],
90
- :- => ['V -2', '2 -V'],
91
- :* => ['V \cdot 2', '2 \cdot V'],
92
- :/ => ['\frac{V}{2}', '\frac{2}{V}'],
89
+ :+ => ['V + 2', '2 + V'],
90
+ :- => ['V -2', '2 -V'],
91
+ :* => ['V \cdot 2', '2 \cdot V'],
92
+ :/ => ['\frac{V}{2}', '\frac{2}{V}'],
93
93
  :** => ['V^{2}', '2^{V}']
94
94
 
95
95
  describe '-@' do
data/spec/spec_helper.rb CHANGED
@@ -19,7 +19,7 @@ require 'danica'
19
19
 
20
20
  # Requires supporting ruby files with custom matchers and macros, etc,
21
21
  # in spec/support/ and its subdirectories.
22
- Dir['./spec/support/**/*.rb'].each { |f| require f }
22
+ Dir['./spec/support/**/*.rb'].sort.each { |f| require f }
23
23
 
24
24
  RSpec.configure do |config|
25
25
  config.treat_symbols_as_metadata_keys_with_true_values = true
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: danica
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.7.5
4
+ version: 2.7.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Darthjee
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-07-14 00:00:00.000000000 Z
11
+ date: 2021-04-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -58,112 +58,112 @@ dependencies:
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: 0.2.4
61
+ version: 0.3.0
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: 0.2.4
68
+ version: 0.3.0
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: rake
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
73
  - - ">="
74
74
  - !ruby/object:Gem::Version
75
- version: 12.3.1
75
+ version: 13.0.1
76
76
  type: :development
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - ">="
81
81
  - !ruby/object:Gem::Version
82
- version: 12.3.1
82
+ version: 13.0.1
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: rspec
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
87
  - - ">="
88
88
  - !ruby/object:Gem::Version
89
- version: '3.8'
89
+ version: 3.9.0
90
90
  type: :development
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: '3.8'
96
+ version: 3.9.0
97
97
  - !ruby/object:Gem::Dependency
98
98
  name: rubocop
99
99
  requirement: !ruby/object:Gem::Requirement
100
100
  requirements:
101
101
  - - '='
102
102
  - !ruby/object:Gem::Version
103
- version: 0.58.1
103
+ version: 0.80.1
104
104
  type: :development
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
108
  - - '='
109
109
  - !ruby/object:Gem::Version
110
- version: 0.58.1
110
+ version: 0.80.1
111
111
  - !ruby/object:Gem::Dependency
112
112
  name: rubocop-rspec
113
113
  requirement: !ruby/object:Gem::Requirement
114
114
  requirements:
115
115
  - - '='
116
116
  - !ruby/object:Gem::Version
117
- version: 1.30.0
117
+ version: 1.38.1
118
118
  type: :development
119
119
  prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
121
121
  requirements:
122
122
  - - '='
123
123
  - !ruby/object:Gem::Version
124
- version: 1.30.0
124
+ version: 1.38.1
125
125
  - !ruby/object:Gem::Dependency
126
126
  name: rubycritic
127
127
  requirement: !ruby/object:Gem::Requirement
128
128
  requirements:
129
129
  - - ">="
130
130
  - !ruby/object:Gem::Version
131
- version: 4.0.2
131
+ version: 4.4.1
132
132
  type: :development
133
133
  prerelease: false
134
134
  version_requirements: !ruby/object:Gem::Requirement
135
135
  requirements:
136
136
  - - ">="
137
137
  - !ruby/object:Gem::Version
138
- version: 4.0.2
138
+ version: 4.4.1
139
139
  - !ruby/object:Gem::Dependency
140
140
  name: simplecov
141
141
  requirement: !ruby/object:Gem::Requirement
142
142
  requirements:
143
143
  - - "~>"
144
144
  - !ruby/object:Gem::Version
145
- version: 0.16.x
145
+ version: 0.17.1
146
146
  type: :development
147
147
  prerelease: false
148
148
  version_requirements: !ruby/object:Gem::Requirement
149
149
  requirements:
150
150
  - - "~>"
151
151
  - !ruby/object:Gem::Version
152
- version: 0.16.x
152
+ version: 0.17.1
153
153
  - !ruby/object:Gem::Dependency
154
154
  name: yard
155
155
  requirement: !ruby/object:Gem::Requirement
156
156
  requirements:
157
157
  - - ">="
158
158
  - !ruby/object:Gem::Version
159
- version: 0.9.18
159
+ version: 0.9.24
160
160
  type: :development
161
161
  prerelease: false
162
162
  version_requirements: !ruby/object:Gem::Requirement
163
163
  requirements:
164
164
  - - ">="
165
165
  - !ruby/object:Gem::Version
166
- version: 0.9.18
166
+ version: 0.9.24
167
167
  - !ruby/object:Gem::Dependency
168
168
  name: yardstick
169
169
  requirement: !ruby/object:Gem::Requirement
@@ -210,6 +210,7 @@ files:
210
210
  - README.md
211
211
  - Rakefile
212
212
  - circle.yml
213
+ - config/check_specs.yml
213
214
  - config/rubycritc.rb
214
215
  - config/yardstick.rb
215
216
  - config/yardstick.yml