standard-faker 0.1.1 → 0.1.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: 4074ab4c95b510be27383d573b3ba36c40b5d5cb5bc3787f148e75e3e512b92f
4
- data.tar.gz: a2295c9aa1a9760166f3429f9c9ccd4b34329a93eeebc84e114311e6aaf368d6
3
+ metadata.gz: c3349607591c3d615812ee44ed0ee8dfcfb92743f313402b38b2dbaa0ac3cacd
4
+ data.tar.gz: 2c932a44dbba7b7a8098398b9fd77f76cefb4da8bc83e8a7fbc44d972d65e362
5
5
  SHA512:
6
- metadata.gz: 43da097e1c1aea5b3817a3910f502e0b9326ca700e7c62dc6950083c226775d1547e7296707d4949a35d966cf674267b4f71576db0185f4d166609ffc8850a9c
7
- data.tar.gz: 9420b5d0858b4ac8024fe3fe04dec05728d5118775d097f5fd524c15c098cb94fb012b47aaec910c1f25c1b6cf487530502439488cafdba221dd65eb6d4445a0
6
+ metadata.gz: 1552dc87bc943536e312a1c2410beaa69c9a1b0d29e311d841940422933fd0713ec837f01e89b72cf18c1e8e6add03029e85830f49df72c4b86caa3cd3e4f060
7
+ data.tar.gz: ca0d5b7d8fa395db62ba07c873875196f319870c97cebf8a79d28ea542f1353599d6acfe6439b13099ef4620e678904dc00cd587cd2f2b832609cfd7b080f4ec
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Standard
4
4
  module Faker
5
- VERSION = "0.1.1"
5
+ VERSION = "0.1.2"
6
6
  end
7
7
  end
@@ -0,0 +1,34 @@
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
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: standard-faker
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - shilin-anton
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-07-10 00:00:00.000000000 Z
11
+ date: 2023-07-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: lint_roller
@@ -57,6 +57,7 @@ files:
57
57
  - lib/standard/faker/plugin.rb
58
58
  - lib/standard/faker/version.rb
59
59
  - lib/standard_faker.rb
60
+ - standard-faker.gemspec
60
61
  homepage: https://github.com/shilin-anton/standard-faker
61
62
  licenses:
62
63
  - MIT