fix-command 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +1 -0
- data/.gitignore +10 -0
- data/.rubocop.yml +1 -0
- data/.rubocop_todo.yml +23 -0
- data/.travis.yml +15 -0
- data/.yardopts +1 -0
- data/CODE_OF_CONDUCT.md +13 -0
- data/Gemfile +3 -0
- data/LICENSE.md +21 -0
- data/README.md +102 -0
- data/Rakefile +21 -0
- data/VERSION.semver +1 -0
- data/bin/console +7 -0
- data/bin/fix +5 -0
- data/bin/setup +5 -0
- data/certs/gem-fixrb-public_cert.pem +21 -0
- data/fix-command.gemspec +29 -0
- data/lib/fix/command.rb +125 -0
- data/pkg_checksum +11 -0
- metadata +183 -0
- metadata.gz.sig +0 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 28e38209639923c6f824afbe265028afcfc0287f
|
4
|
+
data.tar.gz: cb4e299c6c3c505019fce9155f2dc3a89868e766
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: a78715c5211e3d0f9aeac573435b7b52d9f4ea98239d63ac8e723c322c8f4918f00c5c56e6e41a450a2268c6eb05cbbe525a7e0d7494b9fd83edee881db68501
|
7
|
+
data.tar.gz: f70c81585d7de1464f63ab15bbdba7cbb5f69f418e9c5762eb93e2726605a51b5214407a5827ca7243ffe3870ae7cf144d073f41de11878a45216720631cde66
|
checksums.yaml.gz.sig
ADDED
Binary file
|
data.tar.gz.sig
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
J_vG*%b���š�b8�0
|
data/.gitignore
ADDED
data/.rubocop.yml
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
inherit_from: .rubocop_todo.yml
|
data/.rubocop_todo.yml
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
# This configuration was generated by
|
2
|
+
# `rubocop --auto-gen-config`
|
3
|
+
# on 2015-09-28 21:33:27 +0200 using RuboCop version 0.34.1.
|
4
|
+
# The point is for the user to remove these configuration records
|
5
|
+
# one by one as the offenses are removed from the code base.
|
6
|
+
# Note that changes in the inspected code, or installation of new
|
7
|
+
# versions of RuboCop, may require this file to be generated again.
|
8
|
+
|
9
|
+
# Offense count: 3
|
10
|
+
Metrics/AbcSize:
|
11
|
+
Max: 23
|
12
|
+
|
13
|
+
# Offense count: 3
|
14
|
+
# Configuration parameters: CountComments.
|
15
|
+
Metrics/MethodLength:
|
16
|
+
Max: 30
|
17
|
+
|
18
|
+
# Offense count: 3
|
19
|
+
# Cop supports --auto-correct.
|
20
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
21
|
+
Style/AlignParameters:
|
22
|
+
Exclude:
|
23
|
+
- 'lib/fix/command.rb'
|
data/.travis.yml
ADDED
data/.yardopts
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
- README.md
|
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# Contributor Code of Conduct
|
2
|
+
|
3
|
+
As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
|
4
|
+
|
5
|
+
We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, age, or religion.
|
6
|
+
|
7
|
+
Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
|
8
|
+
|
9
|
+
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
|
10
|
+
|
11
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
|
12
|
+
|
13
|
+
This Code of Conduct is adapted from the [Contributor Covenant](http:contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
|
data/Gemfile
ADDED
data/LICENSE.md
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2015 Cyril Wack
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,102 @@
|
|
1
|
+
# Fix::Command
|
2
|
+
|
3
|
+
[![Build Status](https://travis-ci.org/fixrb/fix-command.svg?branch=master)][travis]
|
4
|
+
[![Gem Version](https://badge.fury.io/rb/fix-command.svg)][gem]
|
5
|
+
[![Inline docs](http://inch-ci.org/github/fixrb/fix-command.svg?branch=master)][inchpages]
|
6
|
+
[![Documentation](http://img.shields.io/:yard-docs-38c800.svg)][rubydoc]
|
7
|
+
|
8
|
+
> Provides the `fix` command with several options.
|
9
|
+
|
10
|
+
## Contact
|
11
|
+
|
12
|
+
* Home page: https://github.com/fixrb/fix-command
|
13
|
+
* Bugs/issues: https://github.com/fixrb/fix-command/issues
|
14
|
+
* Support: https://stackoverflow.com/questions/tagged/fixrb
|
15
|
+
|
16
|
+
## Rubies
|
17
|
+
|
18
|
+
* [MRI](https://www.ruby-lang.org/)
|
19
|
+
* [Rubinius](http://rubini.us/)
|
20
|
+
* [JRuby](http://jruby.org/)
|
21
|
+
|
22
|
+
## Installation
|
23
|
+
|
24
|
+
__Fix::Command__ is cryptographically signed.
|
25
|
+
|
26
|
+
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:
|
27
|
+
|
28
|
+
$ gem cert --add <(curl -Ls https://raw.github.com/fixrb/fix-command/master/certs/gem-fixrb-public_cert.pem)
|
29
|
+
$ gem install fix-command -P HighSecurity
|
30
|
+
|
31
|
+
The `HighSecurity` trust profile will verify all gems. All of __Fix::Command__'s dependencies are signed.
|
32
|
+
|
33
|
+
Or add this line to your application's Gemfile:
|
34
|
+
|
35
|
+
```ruby
|
36
|
+
gem 'fix-command'
|
37
|
+
```
|
38
|
+
|
39
|
+
And then execute:
|
40
|
+
|
41
|
+
$ bundle
|
42
|
+
|
43
|
+
## Usage
|
44
|
+
|
45
|
+
First, let's see the API:
|
46
|
+
|
47
|
+
$ bundle exec fix --help
|
48
|
+
Usage: fix <files or directories> [options]
|
49
|
+
|
50
|
+
Specific options:
|
51
|
+
--debug Enable ruby debug
|
52
|
+
--warnings Enable ruby warnings
|
53
|
+
|
54
|
+
Common options:
|
55
|
+
--help Show this message
|
56
|
+
--version Show the version
|
57
|
+
|
58
|
+
And second, let's run a test:
|
59
|
+
|
60
|
+
$ bundle exec fix duck_fix.rb -w
|
61
|
+
> fix --warnings /Users/bob/code/duck_fix.rb
|
62
|
+
|
63
|
+
/Users/bob/code/duck_fix.rb ..I
|
64
|
+
|
65
|
+
1. Info: undefined method `sings' for #<Duck:0x007fdbeb05c1d8> (NoMethodError).
|
66
|
+
|
67
|
+
Ran 3 tests in 0.000612 seconds
|
68
|
+
100% compliant - 1 infos, 0 failures, 0 errors
|
69
|
+
|
70
|
+
## Security
|
71
|
+
|
72
|
+
As a basic form of security __Fix::Command__ provides a set of SHA512 checksums for
|
73
|
+
every Gem release. These checksums can be found in the `checksum/` directory.
|
74
|
+
Although these checksums do not prevent malicious users from tampering with a
|
75
|
+
built Gem they can be used for basic integrity verification purposes.
|
76
|
+
|
77
|
+
The checksum of a file can be checked using the `sha512sum` command. For
|
78
|
+
example:
|
79
|
+
|
80
|
+
$ sha512sum pkg/fix-command-0.1.0.gem
|
81
|
+
26198b7812a5ac118a5f2a1b63927871b3378efb071b37abb7e1ba87c1aac9f3a6b45eeae87d9dc647b194c15171b13f15e46503a9a1440b1233faf924381ff5 pkg/fix-command-0.1.0.gem
|
82
|
+
|
83
|
+
## Versioning
|
84
|
+
|
85
|
+
__Fix::Command__ follows [Semantic Versioning 2.0](http://semver.org/).
|
86
|
+
|
87
|
+
## Contributing
|
88
|
+
|
89
|
+
1. [Fork it](https://github.com/fixrb/fix-command/fork)
|
90
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
91
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
92
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
93
|
+
5. Create a new Pull Request
|
94
|
+
|
95
|
+
## License
|
96
|
+
|
97
|
+
See `LICENSE.md` file.
|
98
|
+
|
99
|
+
[gem]: https://rubygems.org/gems/fix-command
|
100
|
+
[travis]: https://travis-ci.org/fixrb/fix-command
|
101
|
+
[inchpages]: http://inch-ci.org/github/fixrb/fix-command/
|
102
|
+
[rubydoc]: http://rubydoc.info/gems/fix-command/frames
|
data/Rakefile
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
require 'bundler/gem_tasks'
|
2
|
+
require 'rake/testtask'
|
3
|
+
require 'rubocop/rake_task'
|
4
|
+
|
5
|
+
RuboCop::RakeTask.new
|
6
|
+
|
7
|
+
Rake::TestTask.new do |t|
|
8
|
+
t.verbose = true
|
9
|
+
t.warning = true
|
10
|
+
t.pattern = File.join('test', '**', 'test_*.rb')
|
11
|
+
end
|
12
|
+
|
13
|
+
namespace :test do
|
14
|
+
task :coverage do
|
15
|
+
ENV['COVERAGE'] = 'true'
|
16
|
+
Rake::Task['test'].invoke
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
task(:doc_stats) { ruby '-S yard stats' }
|
21
|
+
task default: [:test, :doc_stats, :rubocop]
|
data/VERSION.semver
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.1.0
|
data/bin/console
ADDED
data/bin/fix
ADDED
data/bin/setup
ADDED
@@ -0,0 +1,21 @@
|
|
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-----
|
data/fix-command.gemspec
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
Gem::Specification.new do |spec|
|
2
|
+
spec.name = 'fix-command'
|
3
|
+
spec.version = File.read('VERSION.semver').chomp
|
4
|
+
spec.authors = ['Cyril Wack']
|
5
|
+
spec.email = ['contact@cyril.email']
|
6
|
+
|
7
|
+
spec.summary = 'Fix extension gem for the fix command.'
|
8
|
+
spec.description = 'Provides the fix command to run specs.'
|
9
|
+
spec.homepage = 'https://github.com/fixrb/fix-command'
|
10
|
+
spec.license = 'MIT'
|
11
|
+
|
12
|
+
spec.files =
|
13
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^test/}) }
|
14
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
15
|
+
spec.require_paths = ['lib']
|
16
|
+
|
17
|
+
spec.add_dependency 'fix', '~> 0.12.3'
|
18
|
+
|
19
|
+
spec.add_development_dependency 'bundler', '~> 1.10'
|
20
|
+
spec.add_development_dependency 'rake', '~> 10.4'
|
21
|
+
spec.add_development_dependency 'yard', '~> 0.8'
|
22
|
+
spec.add_development_dependency 'simplecov', '~> 0.10'
|
23
|
+
spec.add_development_dependency 'rubocop', '~> 0.34'
|
24
|
+
spec.add_development_dependency 'spectus', '~> 2.7'
|
25
|
+
|
26
|
+
spec.cert_chain = ['certs/gem-fixrb-public_cert.pem']
|
27
|
+
private_key = File.expand_path('~/.ssh/gem-fixrb-private_key.pem')
|
28
|
+
spec.signing_key = private_key if File.exist?(private_key)
|
29
|
+
end
|
data/lib/fix/command.rb
ADDED
@@ -0,0 +1,125 @@
|
|
1
|
+
require 'fix'
|
2
|
+
require 'optparse'
|
3
|
+
require 'set'
|
4
|
+
|
5
|
+
# Namespace for the Fix framework.
|
6
|
+
#
|
7
|
+
# @api public
|
8
|
+
#
|
9
|
+
# @example Let's test a duck's spec!
|
10
|
+
# Fix::Command.run('duck_fix.rb', '-w')
|
11
|
+
#
|
12
|
+
module Fix
|
13
|
+
# Open the command class.
|
14
|
+
#
|
15
|
+
# @api public
|
16
|
+
#
|
17
|
+
# @example Let's test a duck's spec!
|
18
|
+
# Command.run('duck_fix.rb', '-w')
|
19
|
+
#
|
20
|
+
class Command
|
21
|
+
# Hand the parameters passed to fix command from the console.
|
22
|
+
#
|
23
|
+
# @api public
|
24
|
+
#
|
25
|
+
# @example Let's test a duck's spec!
|
26
|
+
# run('duck_fix.rb', '-w')
|
27
|
+
#
|
28
|
+
# @param args [Array] A list of files and options.
|
29
|
+
#
|
30
|
+
# @raise [SystemExit] The result of the tests.
|
31
|
+
def self.run(*args)
|
32
|
+
process_args(args)
|
33
|
+
|
34
|
+
file_paths = fetch_file_paths(*args)
|
35
|
+
|
36
|
+
str = "\e[37m"
|
37
|
+
str += '> fix'
|
38
|
+
str += ' --debug' if $DEBUG
|
39
|
+
str += ' --warnings' if $VERBOSE
|
40
|
+
|
41
|
+
puts str + ' ' + file_paths.to_a.join(' ') + "\e[22m"
|
42
|
+
|
43
|
+
status = true
|
44
|
+
|
45
|
+
file_paths.each do |file_path|
|
46
|
+
begin
|
47
|
+
puts
|
48
|
+
print "\e[30m#{file_path}\e[0m "
|
49
|
+
require file_path
|
50
|
+
rescue SystemExit => e
|
51
|
+
status = false unless e.success?
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
exit(status)
|
56
|
+
end
|
57
|
+
|
58
|
+
# @private
|
59
|
+
def self.process_args(args)
|
60
|
+
options = {
|
61
|
+
debug: false,
|
62
|
+
warnings: false
|
63
|
+
}
|
64
|
+
|
65
|
+
opt_parser = OptionParser.new do |opts|
|
66
|
+
opts.banner = 'Usage: fix <files or directories> [options]'
|
67
|
+
|
68
|
+
opts.separator ''
|
69
|
+
opts.separator 'Specific options:'
|
70
|
+
|
71
|
+
opts.on('--debug', 'Enable ruby debug') do
|
72
|
+
options[:debug] = $DEBUG = true
|
73
|
+
end
|
74
|
+
|
75
|
+
opts.on('--warnings', 'Enable ruby warnings') do
|
76
|
+
options[:warnings] = $VERBOSE = true
|
77
|
+
end
|
78
|
+
|
79
|
+
opts.separator ''
|
80
|
+
opts.separator 'Common options:'
|
81
|
+
|
82
|
+
opts.on_tail '--help', 'Show this message' do
|
83
|
+
puts opts
|
84
|
+
exit
|
85
|
+
end
|
86
|
+
|
87
|
+
opts.on_tail '--version', 'Show the version' do
|
88
|
+
puts File.read(File.join(File.expand_path(File.dirname(__FILE__)),
|
89
|
+
'..',
|
90
|
+
'..',
|
91
|
+
'VERSION.semver')).chomp
|
92
|
+
|
93
|
+
exit
|
94
|
+
end
|
95
|
+
end
|
96
|
+
|
97
|
+
opt_parser.parse!(args)
|
98
|
+
options
|
99
|
+
end
|
100
|
+
|
101
|
+
# @private
|
102
|
+
def self.fetch_file_paths(*args)
|
103
|
+
absolute_paths = Set.new
|
104
|
+
|
105
|
+
args << '.' if args.empty?
|
106
|
+
args.each do |s|
|
107
|
+
s = File.absolute_path(s) unless s.start_with?(File::SEPARATOR)
|
108
|
+
|
109
|
+
if File.directory?(s)
|
110
|
+
spec_files = File.join(s, '**', '*_fix.rb')
|
111
|
+
Dir.glob(spec_files).each { |spec_f| absolute_paths.add(spec_f) }
|
112
|
+
else
|
113
|
+
absolute_paths.add(s)
|
114
|
+
end
|
115
|
+
end
|
116
|
+
|
117
|
+
if absolute_paths.empty?
|
118
|
+
warn 'Sorry, files or directories not found.'
|
119
|
+
exit false
|
120
|
+
end
|
121
|
+
|
122
|
+
absolute_paths
|
123
|
+
end
|
124
|
+
end
|
125
|
+
end
|
data/pkg_checksum
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require 'digest/sha2'
|
4
|
+
|
5
|
+
gemname = 'fix-command'.to_sym
|
6
|
+
ARGV[0] = File.read('VERSION.semver').chomp if ARGV[0].nil?
|
7
|
+
built_gem_path = "pkg/#{gemname}-#{ARGV[0]}.gem"
|
8
|
+
checksum = Digest::SHA512.new.hexdigest(File.read(built_gem_path))
|
9
|
+
checksum_path = "checksum/#{gemname}-#{ARGV[0]}.gem.sha512"
|
10
|
+
|
11
|
+
File.open(checksum_path, 'w') { |f| f.write("#{checksum}\n") }
|
metadata
ADDED
@@ -0,0 +1,183 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: fix-command
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Cyril Wack
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain:
|
11
|
+
- |
|
12
|
+
-----BEGIN CERTIFICATE-----
|
13
|
+
MIIDdDCCAlygAwIBAgIBATANBgkqhkiG9w0BAQUFADBAMRAwDgYDVQQDDAdjb250
|
14
|
+
YWN0MRUwEwYKCZImiZPyLGQBGRYFY3lyaWwxFTATBgoJkiaJk/IsZAEZFgVlbWFp
|
15
|
+
bDAeFw0xNTA3MzExMjExMDZaFw0xNjA3MzAxMjExMDZaMEAxEDAOBgNVBAMMB2Nv
|
16
|
+
bnRhY3QxFTATBgoJkiaJk/IsZAEZFgVjeXJpbDEVMBMGCgmSJomT8ixkARkWBWVt
|
17
|
+
YWlsMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA6hUEYoxnn1mtoaiK
|
18
|
+
NiwjzVPqPgQCR9ZeYdWjLJ3UUG2h5Q6awJCnbaGr8LGGcKtveCDbOJRjtdKNuOTH
|
19
|
+
O2FLTkf46nrMGiF+6/j//qh8o0EQHBRKIVMYkxZxZe4Fcqtdf1bWNMZuXeyoDjdt
|
20
|
+
4yiGfizbbTOu0gBf7Yrsv5DsL0a5CU/We7zxMfgGXCVb9PYkD+OWUMcTARYDKfYa
|
21
|
+
nN9ECI7CFm/yXcsof/eIQA5EmJNmQnhx8B+8L6jDqQeSUAUrBZnC9CdloKOoqmEL
|
22
|
+
weqM2g6LM932Ba74rEl4QlFRYDcs8kjr71UcvseHRCUkFr36j26OU8+gKelsTNdO
|
23
|
+
7OZNKQIDAQABo3kwdzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNVHQ4EFgQU
|
24
|
+
LSJTN9h29D6bqOhp+vyvhyM0AF4wHgYDVR0RBBcwFYETY29udGFjdEBjeXJpbC5l
|
25
|
+
bWFpbDAeBgNVHRIEFzAVgRNjb250YWN0QGN5cmlsLmVtYWlsMA0GCSqGSIb3DQEB
|
26
|
+
BQUAA4IBAQArqCC1rUyGJlF0DF9ZhUOgggyROvO0/WroSI5zWgzdB8EU7RJpsDIV
|
27
|
+
caGnpji7h0rQIGWQuJ6TL2fTFLfeGRFdIzRZwWC7TeXhcXngJHZxSjDBt2OpfM8A
|
28
|
+
P5eElSQS9iJCetBGGMyt354PfgZkg3URaC+JA6mdEisdtEdo64ElnMsLg9shCqye
|
29
|
+
JSR3BbejbyPVva0/MHKD+dR6RswlcM9KMiYOXQml7a/kH6huOHvVq9gj5xC2ih8W
|
30
|
+
dzJvWzQ1+dJU6WQv75E9ddSkaQrK3nhdgQVu+/wgvGSrsMvOGNz+LXaSDxQqZuwX
|
31
|
+
0KNQFuIukfrdk8URwRnHoAnvx4U93iUw
|
32
|
+
-----END CERTIFICATE-----
|
33
|
+
date: 2015-09-28 00:00:00.000000000 Z
|
34
|
+
dependencies:
|
35
|
+
- !ruby/object:Gem::Dependency
|
36
|
+
name: fix
|
37
|
+
requirement: !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - "~>"
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: 0.12.3
|
42
|
+
type: :runtime
|
43
|
+
prerelease: false
|
44
|
+
version_requirements: !ruby/object:Gem::Requirement
|
45
|
+
requirements:
|
46
|
+
- - "~>"
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: 0.12.3
|
49
|
+
- !ruby/object:Gem::Dependency
|
50
|
+
name: bundler
|
51
|
+
requirement: !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
53
|
+
- - "~>"
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: '1.10'
|
56
|
+
type: :development
|
57
|
+
prerelease: false
|
58
|
+
version_requirements: !ruby/object:Gem::Requirement
|
59
|
+
requirements:
|
60
|
+
- - "~>"
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: '1.10'
|
63
|
+
- !ruby/object:Gem::Dependency
|
64
|
+
name: rake
|
65
|
+
requirement: !ruby/object:Gem::Requirement
|
66
|
+
requirements:
|
67
|
+
- - "~>"
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '10.4'
|
70
|
+
type: :development
|
71
|
+
prerelease: false
|
72
|
+
version_requirements: !ruby/object:Gem::Requirement
|
73
|
+
requirements:
|
74
|
+
- - "~>"
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: '10.4'
|
77
|
+
- !ruby/object:Gem::Dependency
|
78
|
+
name: yard
|
79
|
+
requirement: !ruby/object:Gem::Requirement
|
80
|
+
requirements:
|
81
|
+
- - "~>"
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
version: '0.8'
|
84
|
+
type: :development
|
85
|
+
prerelease: false
|
86
|
+
version_requirements: !ruby/object:Gem::Requirement
|
87
|
+
requirements:
|
88
|
+
- - "~>"
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: '0.8'
|
91
|
+
- !ruby/object:Gem::Dependency
|
92
|
+
name: simplecov
|
93
|
+
requirement: !ruby/object:Gem::Requirement
|
94
|
+
requirements:
|
95
|
+
- - "~>"
|
96
|
+
- !ruby/object:Gem::Version
|
97
|
+
version: '0.10'
|
98
|
+
type: :development
|
99
|
+
prerelease: false
|
100
|
+
version_requirements: !ruby/object:Gem::Requirement
|
101
|
+
requirements:
|
102
|
+
- - "~>"
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: '0.10'
|
105
|
+
- !ruby/object:Gem::Dependency
|
106
|
+
name: rubocop
|
107
|
+
requirement: !ruby/object:Gem::Requirement
|
108
|
+
requirements:
|
109
|
+
- - "~>"
|
110
|
+
- !ruby/object:Gem::Version
|
111
|
+
version: '0.34'
|
112
|
+
type: :development
|
113
|
+
prerelease: false
|
114
|
+
version_requirements: !ruby/object:Gem::Requirement
|
115
|
+
requirements:
|
116
|
+
- - "~>"
|
117
|
+
- !ruby/object:Gem::Version
|
118
|
+
version: '0.34'
|
119
|
+
- !ruby/object:Gem::Dependency
|
120
|
+
name: spectus
|
121
|
+
requirement: !ruby/object:Gem::Requirement
|
122
|
+
requirements:
|
123
|
+
- - "~>"
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
version: '2.7'
|
126
|
+
type: :development
|
127
|
+
prerelease: false
|
128
|
+
version_requirements: !ruby/object:Gem::Requirement
|
129
|
+
requirements:
|
130
|
+
- - "~>"
|
131
|
+
- !ruby/object:Gem::Version
|
132
|
+
version: '2.7'
|
133
|
+
description: Provides the fix command to run specs.
|
134
|
+
email:
|
135
|
+
- contact@cyril.email
|
136
|
+
executables: []
|
137
|
+
extensions: []
|
138
|
+
extra_rdoc_files: []
|
139
|
+
files:
|
140
|
+
- ".gitignore"
|
141
|
+
- ".rubocop.yml"
|
142
|
+
- ".rubocop_todo.yml"
|
143
|
+
- ".travis.yml"
|
144
|
+
- ".yardopts"
|
145
|
+
- CODE_OF_CONDUCT.md
|
146
|
+
- Gemfile
|
147
|
+
- LICENSE.md
|
148
|
+
- README.md
|
149
|
+
- Rakefile
|
150
|
+
- VERSION.semver
|
151
|
+
- bin/console
|
152
|
+
- bin/fix
|
153
|
+
- bin/setup
|
154
|
+
- certs/gem-fixrb-public_cert.pem
|
155
|
+
- fix-command.gemspec
|
156
|
+
- lib/fix/command.rb
|
157
|
+
- pkg_checksum
|
158
|
+
homepage: https://github.com/fixrb/fix-command
|
159
|
+
licenses:
|
160
|
+
- MIT
|
161
|
+
metadata: {}
|
162
|
+
post_install_message:
|
163
|
+
rdoc_options: []
|
164
|
+
require_paths:
|
165
|
+
- lib
|
166
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
167
|
+
requirements:
|
168
|
+
- - ">="
|
169
|
+
- !ruby/object:Gem::Version
|
170
|
+
version: '0'
|
171
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
172
|
+
requirements:
|
173
|
+
- - ">="
|
174
|
+
- !ruby/object:Gem::Version
|
175
|
+
version: '0'
|
176
|
+
requirements: []
|
177
|
+
rubyforge_project:
|
178
|
+
rubygems_version: 2.4.5.1
|
179
|
+
signing_key:
|
180
|
+
specification_version: 4
|
181
|
+
summary: Fix extension gem for the fix command.
|
182
|
+
test_files: []
|
183
|
+
has_rdoc:
|
metadata.gz.sig
ADDED
Binary file
|