standard-faker 0.1.2 → 0.1.3

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: c3349607591c3d615812ee44ed0ee8dfcfb92743f313402b38b2dbaa0ac3cacd
4
- data.tar.gz: 2c932a44dbba7b7a8098398b9fd77f76cefb4da8bc83e8a7fbc44d972d65e362
3
+ metadata.gz: f2c5c482bcd8cf54a29a90efa5b38e8d58bf61626081305236e9902f27fe291e
4
+ data.tar.gz: cd901f80bcd9943ef6878270e0e4f68ebf9e354db99acbd2e08c193443eb5ff8
5
5
  SHA512:
6
- metadata.gz: 1552dc87bc943536e312a1c2410beaa69c9a1b0d29e311d841940422933fd0713ec837f01e89b72cf18c1e8e6add03029e85830f49df72c4b86caa3cd3e4f060
7
- data.tar.gz: ca0d5b7d8fa395db62ba07c873875196f319870c97cebf8a79d28ea542f1353599d6acfe6439b13099ef4620e678904dc00cd587cd2f2b832609cfd7b080f4ec
6
+ metadata.gz: 96a5ee8facca9d35034138267f94028b2837d6c84f7f4d0a0dca68ff9442b638a7e3c8e659dca2df8fd3ed4a446eb4c35c9294e4ce32b7cb8166e696798d5ac8
7
+ data.tar.gz: 37bebdef9178ecb06f877ca6f965438329d7561231ef76a44ae8d16ea6049b93c49ca0daca65e462dfa228152b6a713c13296ce66fff902890bc5eda8b32ae9a
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Standard
4
4
  module Faker
5
- VERSION = "0.1.2"
5
+ VERSION = "0.1.3"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: standard-faker
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - shilin-anton
@@ -52,12 +52,11 @@ files:
52
52
  - README.md
53
53
  - Rakefile
54
54
  - config/base.yml
55
+ - lib/standard-faker.rb
55
56
  - lib/standard/faker.rb
56
57
  - lib/standard/faker/load_rubocop_faker_without_the_monkey_patch.rb
57
58
  - lib/standard/faker/plugin.rb
58
59
  - lib/standard/faker/version.rb
59
- - lib/standard_faker.rb
60
- - standard-faker.gemspec
61
60
  homepage: https://github.com/shilin-anton/standard-faker
62
61
  licenses:
63
62
  - MIT
@@ -1,34 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require_relative "lib/standard/faker/version"
4
-
5
- Gem::Specification.new do |spec|
6
- spec.name = "standard-faker"
7
- spec.version = Standard::Faker::VERSION
8
- spec.authors = ["shilin-anton"]
9
- spec.email = ["anton.d.shilin@gmail.com"]
10
-
11
- spec.summary = "A Standard plugin that adds rubocop-faker specific rules to Standard."
12
- spec.homepage = "https://github.com/shilin-anton/standard-faker"
13
- spec.license = "MIT"
14
- spec.required_ruby_version = ">= 2.7.0"
15
-
16
- spec.metadata["homepage_uri"] = spec.homepage
17
- spec.metadata["source_code_uri"] = spec.homepage
18
- spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/main/CHANGELOG.md"
19
-
20
- # Specify which files should be added to the gem when it is released.
21
- # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
22
- spec.files = Dir.chdir(__dir__) do
23
- `git ls-files -z`.split("\x0").reject do |f|
24
- (File.expand_path(f) == __FILE__) ||
25
- f.start_with?(*%w[bin/ test/ spec/ features/ .git .circleci appveyor Gemfile])
26
- end
27
- end
28
- spec.bindir = "exe"
29
- spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
30
- spec.require_paths = ["lib"]
31
-
32
- spec.add_dependency "lint_roller", "~> 1.0"
33
- spec.add_dependency "rubocop-faker", "~> 1.1.0"
34
- end
File without changes