fix-command 0.5.2 → 0.5.3

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9950305ae195351f7013514967d26b9396148e13ef3554fc8f9d8013b804f90a
4
- data.tar.gz: d1152c9192c59c76e6de4ebb6b169ada7000398944f654e554ed22cef05fca2f
3
+ metadata.gz: e659b0e580431ef2d16f52dc12f9e8749a91ffa98d8bd26ceee4876908b1cb25
4
+ data.tar.gz: f2abb90333e3fd3dd94e2b60b18eed11c4e7ad3f007abfd2c573c28a0a8891c1
5
5
  SHA512:
6
- metadata.gz: f8e9332928ee811debfa501038cb6a04e47ff9d87f566e1fd89e3a0a1a323da0fb2a65853961d48417dbe5f3957bea50ec87ca0d0f08c459dbb764f60ce8b57e
7
- data.tar.gz: '029a95c505653c7ce9aa817eb1dcd818a976c2c0ee0db9f6ee5edd525bc963f0bbe1496b37ba4bd35148bb520dcf44a6972ac120684d424c98b6c36cd42d6886'
6
+ metadata.gz: 07a203ad3cde21878a5f4ef16642743768c457b1196a4497ab585a827aac39ddbe440ca55840377eaeb4d4647184a5f3e5f46c596edc1c8a67204c8e9fcf5d7a
7
+ data.tar.gz: 2341dc31bcbf3303e470eb71dafdf36782c4ca00c98b0786d12f35fb0d75536d721fca9d941824030a2a06a869dc8c17e04e9f53fbb6429fe177d93e8dde57e7
data/.travis.yml CHANGED
@@ -7,10 +7,10 @@ script:
7
7
  - bundle exec rubocop
8
8
  - bundle exec rake test
9
9
  rvm:
10
- - 2.2
11
10
  - 2.3.3
12
11
  - 2.4.0
13
12
  - 2.5.0
13
+ - 2.6.1
14
14
  - ruby-head
15
15
  - jruby-head
16
16
  - rbx-3
data/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2015 Cyril Kato
3
+ Copyright (c) 2015-2019 Cyril Kato
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -22,16 +22,7 @@
22
22
 
23
23
  ## Installation
24
24
 
25
- __Fix::Command__ is cryptographically signed.
26
-
27
- To be sure the gem you install hasn't been tampered with, add my public key (if you haven't already) as a trusted certificate:
28
-
29
- $ gem cert --add <(curl -Ls https://raw.github.com/fixrb/fix-command/master/certs/gem-fixrb-public_cert.pem)
30
- $ gem install fix-command -P HighSecurity
31
-
32
- The `HighSecurity` trust profile will verify all gems. All of __Fix::Command__'s dependencies are signed.
33
-
34
- Or add this line to your application's Gemfile:
25
+ Add this line to your application's Gemfile:
35
26
 
36
27
  ```ruby
37
28
  gem 'fix-command'
@@ -41,6 +32,10 @@ And then execute:
41
32
 
42
33
  $ bundle
43
34
 
35
+ Or install it yourself as:
36
+
37
+ $ gem install fix-command
38
+
44
39
  ## Usage
45
40
 
46
41
  First, let's see the API:
@@ -117,4 +112,4 @@ See `LICENSE.md` file.
117
112
 
118
113
  This project is sponsored by:
119
114
 
120
- [![Sashite](http://sashite.com/img/sashite.png)](http://sashite.com/)
115
+ [![Sashite](https://sashite.com/img/sashite.png)](https://sashite.com/)
data/VERSION.semver CHANGED
@@ -1 +1 @@
1
- 0.5.2
1
+ 0.5.3
@@ -0,0 +1 @@
1
+ f798a7003cf3df93b0c233832a004bc24a431a38c7b8bb6b42e86355f61220555df924ca7f8607fca9d4c0a936250fd086fc29e6e2e051690a422ea69f6f7469
data/fix-command.gemspec CHANGED
@@ -16,16 +16,12 @@ Gem::Specification.new do |spec|
16
16
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
17
17
  spec.require_paths = ['lib']
18
18
 
19
- spec.add_dependency 'fix', '~> 0.17.1'
19
+ spec.add_dependency 'fix', '~> 0.17.2'
20
20
 
21
- spec.add_development_dependency 'bundler', '~> 1.16'
21
+ spec.add_development_dependency 'bundler', '~> 2.0'
22
22
  spec.add_development_dependency 'rake', '~> 12.3'
23
- spec.add_development_dependency 'rubocop', '~> 0.58'
23
+ spec.add_development_dependency 'rubocop', '~> 0.67'
24
24
  spec.add_development_dependency 'simplecov', '~> 0.16'
25
25
  spec.add_development_dependency 'yard', '~> 0.9'
26
26
  spec.add_development_dependency 'spectus', '~> 3.0'
27
-
28
- spec.cert_chain = ['certs/gem-fixrb-public_cert.pem']
29
- private_key = File.expand_path('~/.ssh/gem-fixrb-private_key.pem')
30
- spec.signing_key = private_key if File.exist?(private_key)
31
27
  end
data/lib/fix/command.rb CHANGED
@@ -87,12 +87,12 @@ module Fix
87
87
  # @param args [Array] List of parameters.
88
88
  def self.process_args(load_file, args)
89
89
  options = {
90
- debug: false,
90
+ debug: false,
91
91
  warnings: false,
92
- diff: false,
93
- random: Random.new_seed,
94
- prefix: '',
95
- suffix: '_fix'
92
+ diff: false,
93
+ random: Random.new_seed,
94
+ prefix: '',
95
+ suffix: '_fix'
96
96
  }
97
97
 
98
98
  # rubocop:disable BlockLength
metadata CHANGED
@@ -1,15 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fix-command
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.2
4
+ version: 0.5.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cyril Kato
8
8
  autorequire:
9
9
  bindir: bin
10
- cert_chain:
11
- - certs/gem-fixrb-public_cert.pem
12
- date: 2018-08-26 00:00:00.000000000 Z
10
+ cert_chain: []
11
+ date: 2019-04-12 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: fix
@@ -17,28 +16,28 @@ dependencies:
17
16
  requirements:
18
17
  - - "~>"
19
18
  - !ruby/object:Gem::Version
20
- version: 0.17.1
19
+ version: 0.17.2
21
20
  type: :runtime
22
21
  prerelease: false
23
22
  version_requirements: !ruby/object:Gem::Requirement
24
23
  requirements:
25
24
  - - "~>"
26
25
  - !ruby/object:Gem::Version
27
- version: 0.17.1
26
+ version: 0.17.2
28
27
  - !ruby/object:Gem::Dependency
29
28
  name: bundler
30
29
  requirement: !ruby/object:Gem::Requirement
31
30
  requirements:
32
31
  - - "~>"
33
32
  - !ruby/object:Gem::Version
34
- version: '1.16'
33
+ version: '2.0'
35
34
  type: :development
36
35
  prerelease: false
37
36
  version_requirements: !ruby/object:Gem::Requirement
38
37
  requirements:
39
38
  - - "~>"
40
39
  - !ruby/object:Gem::Version
41
- version: '1.16'
40
+ version: '2.0'
42
41
  - !ruby/object:Gem::Dependency
43
42
  name: rake
44
43
  requirement: !ruby/object:Gem::Requirement
@@ -59,14 +58,14 @@ dependencies:
59
58
  requirements:
60
59
  - - "~>"
61
60
  - !ruby/object:Gem::Version
62
- version: '0.58'
61
+ version: '0.67'
63
62
  type: :development
64
63
  prerelease: false
65
64
  version_requirements: !ruby/object:Gem::Requirement
66
65
  requirements:
67
66
  - - "~>"
68
67
  - !ruby/object:Gem::Version
69
- version: '0.58'
68
+ version: '0.67'
70
69
  - !ruby/object:Gem::Dependency
71
70
  name: simplecov
72
71
  requirement: !ruby/object:Gem::Requirement
@@ -130,7 +129,6 @@ files:
130
129
  - bin/console
131
130
  - bin/fix
132
131
  - bin/setup
133
- - certs/gem-fixrb-public_cert.pem
134
132
  - checksum/fix-command-0.1.0.gem.sha512
135
133
  - checksum/fix-command-0.1.1.gem.sha512
136
134
  - checksum/fix-command-0.1.2.gem.sha512
@@ -140,6 +138,7 @@ files:
140
138
  - checksum/fix-command-0.4.0.gem.sha512
141
139
  - checksum/fix-command-0.5.0.gem.sha512
142
140
  - checksum/fix-command-0.5.1.gem.sha512
141
+ - checksum/fix-command-0.5.2.gem.sha512
143
142
  - fix-command.gemspec
144
143
  - lib/fix/command.rb
145
144
  - pkg_checksum
@@ -1,21 +0,0 @@
1
- -----BEGIN CERTIFICATE-----
2
- MIIDdDCCAlygAwIBAgIBATANBgkqhkiG9w0BAQUFADBAMRAwDgYDVQQDDAdjb250
3
- YWN0MRUwEwYKCZImiZPyLGQBGRYFY3lyaWwxFTATBgoJkiaJk/IsZAEZFgVlbWFp
4
- bDAeFw0xNTA3MzExMjExMDZaFw0xNjA3MzAxMjExMDZaMEAxEDAOBgNVBAMMB2Nv
5
- bnRhY3QxFTATBgoJkiaJk/IsZAEZFgVjeXJpbDEVMBMGCgmSJomT8ixkARkWBWVt
6
- YWlsMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA6hUEYoxnn1mtoaiK
7
- NiwjzVPqPgQCR9ZeYdWjLJ3UUG2h5Q6awJCnbaGr8LGGcKtveCDbOJRjtdKNuOTH
8
- O2FLTkf46nrMGiF+6/j//qh8o0EQHBRKIVMYkxZxZe4Fcqtdf1bWNMZuXeyoDjdt
9
- 4yiGfizbbTOu0gBf7Yrsv5DsL0a5CU/We7zxMfgGXCVb9PYkD+OWUMcTARYDKfYa
10
- nN9ECI7CFm/yXcsof/eIQA5EmJNmQnhx8B+8L6jDqQeSUAUrBZnC9CdloKOoqmEL
11
- weqM2g6LM932Ba74rEl4QlFRYDcs8kjr71UcvseHRCUkFr36j26OU8+gKelsTNdO
12
- 7OZNKQIDAQABo3kwdzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNVHQ4EFgQU
13
- LSJTN9h29D6bqOhp+vyvhyM0AF4wHgYDVR0RBBcwFYETY29udGFjdEBjeXJpbC5l
14
- bWFpbDAeBgNVHRIEFzAVgRNjb250YWN0QGN5cmlsLmVtYWlsMA0GCSqGSIb3DQEB
15
- BQUAA4IBAQArqCC1rUyGJlF0DF9ZhUOgggyROvO0/WroSI5zWgzdB8EU7RJpsDIV
16
- caGnpji7h0rQIGWQuJ6TL2fTFLfeGRFdIzRZwWC7TeXhcXngJHZxSjDBt2OpfM8A
17
- P5eElSQS9iJCetBGGMyt354PfgZkg3URaC+JA6mdEisdtEdo64ElnMsLg9shCqye
18
- JSR3BbejbyPVva0/MHKD+dR6RswlcM9KMiYOXQml7a/kH6huOHvVq9gj5xC2ih8W
19
- dzJvWzQ1+dJU6WQv75E9ddSkaQrK3nhdgQVu+/wgvGSrsMvOGNz+LXaSDxQqZuwX
20
- 0KNQFuIukfrdk8URwRnHoAnvx4U93iUw
21
- -----END CERTIFICATE-----