matchi-fix 1.0.0 → 1.0.1

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
  SHA1:
3
- metadata.gz: c3e06971c09441d9d4d78a7183ef570351076f59
4
- data.tar.gz: ce4a705bd89b19f59c2ea7d5e87009250b50515d
3
+ metadata.gz: 7ef7ceb95f17221439b30968d36d994282342426
4
+ data.tar.gz: d12b91821e5813fea04bdeed20529c25ce8258e7
5
5
  SHA512:
6
- metadata.gz: ca3243c26e76df891900c158ade0bf1235b10fd0374168cb7e1a3574b8737fe33bb058d2049307039939138d08b552446b719b1c2f2edfc83f4955c37409690c
7
- data.tar.gz: 27694556fba226d2b1ffae30465283d164258b934fd35af0509fa5b6c0d831ca169ffc7358dd28e32525f53e35762fd99539204ef2b03cc0c3f9ad5e18e359cb
6
+ metadata.gz: e5b6cef34a5dfcb2025d8c8b2e17d6fb6885a5553407d94ddf66c2980bdde2c8d55eee23e1f8cc69e215ef21f5ad87867f313b21a466b8e13087d7125bd04a4c
7
+ data.tar.gz: 56e4e329b4cd59c91d2c498e7ae8de4685f5c6cec3068aaca81ff08387fd5018f63531368f7c938ff08accccc05eb4b797538c204ef78fcdc91baffa10243c64
data/.travis.yml CHANGED
@@ -1,23 +1,25 @@
1
1
  language: ruby
2
2
  sudo: false
3
3
  cache: bundler
4
- script: 'bundle exec rake test:coverage --trace'
5
4
  before_install:
6
5
  - gem install bundler
6
+ script:
7
+ - bundle exec rubocop
8
+ - bundle exec rake test
7
9
  rvm:
8
- - 1.9.3
9
10
  - 2.0
10
11
  - 2.1
11
12
  - 2.2
13
+ - 2.3.3
14
+ - 2.4.0
12
15
  - ruby-head
13
- - jruby
14
16
  - jruby-head
15
- - rbx-2
17
+ - rbx-3
16
18
  matrix:
17
19
  allow_failures:
18
- - rvm: rbx-2
19
- - rvm: jruby-head
20
20
  - rvm: ruby-head
21
+ - rvm: jruby-head
22
+ - rvm: rbx-3
21
23
  notifications:
22
24
  webhooks:
23
25
  urls:
data/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2015 Cyril Wack
3
+ Copyright (c) 2015 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
@@ -1,6 +1,8 @@
1
1
  # Matchi::Fix
2
2
 
3
3
  [![Build Status](https://travis-ci.org/fixrb/matchi-fix.svg?branch=master)][travis]
4
+ [![Code Climate](https://codeclimate.com/github/fixrb/matchi-fix/badges/gpa.svg)][codeclimate]
5
+ [![Dependency Status](https://gemnasium.com/fixrb/matchi-fix.svg)][gemnasium]
4
6
  [![Gem Version](https://badge.fury.io/rb/matchi-fix.svg)][gem]
5
7
  [![Inline docs](http://inch-ci.org/github/fixrb/matchi-fix.svg?branch=master)][inchpages]
6
8
  [![Documentation](http://img.shields.io/:yard-docs-38c800.svg)][rubydoc]
@@ -70,11 +72,13 @@ See `LICENSE.md` file.
70
72
 
71
73
  [gem]: https://rubygems.org/gems/matchi-fix
72
74
  [travis]: https://travis-ci.org/fixrb/matchi-fix
73
- [inchpages]: http://inch-ci.org/github/fixrb/matchi-fix/
75
+ [codeclimate]: https://codeclimate.com/github/fixrb/matchi-fix
76
+ [gemnasium]: https://gemnasium.com/fixrb/matchi-fix
77
+ [inchpages]: http://inch-ci.org/github/fixrb/matchi-fix
74
78
  [rubydoc]: http://rubydoc.info/gems/matchi-fix/frames
75
79
 
76
80
  ***
77
81
 
78
82
  This project is sponsored by:
79
83
 
80
- [![Sashite](http://www.sashite.com/assets/img/sashite.png)](http://www.sashite.com/)
84
+ [![Sashite](http://sashite.com/img/sashite.png)](http://sashite.com/)
data/Rakefile CHANGED
@@ -17,4 +17,4 @@ namespace :test do
17
17
  end
18
18
 
19
19
  task(:doc_stats) { ruby '-S yard stats' }
20
- task default: [:test, :doc_stats, :rubocop]
20
+ task default: %i[test doc_stats rubocop]
data/VERSION.semver CHANGED
@@ -1 +1 @@
1
- 1.0.0
1
+ 1.0.1
data/matchi-fix.gemspec CHANGED
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = 'matchi-fix'
3
3
  spec.version = File.read('VERSION.semver').chomp
4
- spec.authors = ['Cyril Wack']
4
+ spec.authors = ['Cyril Kato']
5
5
  spec.email = ['contact@cyril.email']
6
6
 
7
7
  spec.summary = 'Fix expectation matcher.'
@@ -17,11 +17,11 @@ Gem::Specification.new do |spec|
17
17
  spec.add_dependency 'matchi', '~> 1.0.1'
18
18
  spec.add_dependency 'fix', '~> 0.17.0'
19
19
 
20
- spec.add_development_dependency 'bundler', '~> 1.10'
21
- spec.add_development_dependency 'rake', '~> 10.4'
22
- spec.add_development_dependency 'yard', '~> 0.8'
23
- spec.add_development_dependency 'simplecov', '~> 0.10'
24
- spec.add_development_dependency 'rubocop', '~> 0.35'
20
+ spec.add_development_dependency 'bundler', '~> 1.14'
21
+ spec.add_development_dependency 'rake', '~> 12.0'
22
+ spec.add_development_dependency 'yard', '~> 0.9'
23
+ spec.add_development_dependency 'simplecov', '~> 0.14'
24
+ spec.add_development_dependency 'rubocop', '~> 0.48'
25
25
 
26
26
  spec.cert_chain = ['certs/gem-fixrb-public_cert.pem']
27
27
  private_key = File.expand_path('~/.ssh/gem-fixrb-private_key.pem')
metadata CHANGED
@@ -1,36 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: matchi-fix
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
- - Cyril Wack
7
+ - Cyril Kato
8
8
  autorequire:
9
9
  bindir: bin
10
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-11-28 00:00:00.000000000 Z
11
+ - certs/gem-fixrb-public_cert.pem
12
+ date: 2017-04-20 00:00:00.000000000 Z
34
13
  dependencies:
35
14
  - !ruby/object:Gem::Dependency
36
15
  name: matchi
@@ -66,70 +45,70 @@ dependencies:
66
45
  requirements:
67
46
  - - "~>"
68
47
  - !ruby/object:Gem::Version
69
- version: '1.10'
48
+ version: '1.14'
70
49
  type: :development
71
50
  prerelease: false
72
51
  version_requirements: !ruby/object:Gem::Requirement
73
52
  requirements:
74
53
  - - "~>"
75
54
  - !ruby/object:Gem::Version
76
- version: '1.10'
55
+ version: '1.14'
77
56
  - !ruby/object:Gem::Dependency
78
57
  name: rake
79
58
  requirement: !ruby/object:Gem::Requirement
80
59
  requirements:
81
60
  - - "~>"
82
61
  - !ruby/object:Gem::Version
83
- version: '10.4'
62
+ version: '12.0'
84
63
  type: :development
85
64
  prerelease: false
86
65
  version_requirements: !ruby/object:Gem::Requirement
87
66
  requirements:
88
67
  - - "~>"
89
68
  - !ruby/object:Gem::Version
90
- version: '10.4'
69
+ version: '12.0'
91
70
  - !ruby/object:Gem::Dependency
92
71
  name: yard
93
72
  requirement: !ruby/object:Gem::Requirement
94
73
  requirements:
95
74
  - - "~>"
96
75
  - !ruby/object:Gem::Version
97
- version: '0.8'
76
+ version: '0.9'
98
77
  type: :development
99
78
  prerelease: false
100
79
  version_requirements: !ruby/object:Gem::Requirement
101
80
  requirements:
102
81
  - - "~>"
103
82
  - !ruby/object:Gem::Version
104
- version: '0.8'
83
+ version: '0.9'
105
84
  - !ruby/object:Gem::Dependency
106
85
  name: simplecov
107
86
  requirement: !ruby/object:Gem::Requirement
108
87
  requirements:
109
88
  - - "~>"
110
89
  - !ruby/object:Gem::Version
111
- version: '0.10'
90
+ version: '0.14'
112
91
  type: :development
113
92
  prerelease: false
114
93
  version_requirements: !ruby/object:Gem::Requirement
115
94
  requirements:
116
95
  - - "~>"
117
96
  - !ruby/object:Gem::Version
118
- version: '0.10'
97
+ version: '0.14'
119
98
  - !ruby/object:Gem::Dependency
120
99
  name: rubocop
121
100
  requirement: !ruby/object:Gem::Requirement
122
101
  requirements:
123
102
  - - "~>"
124
103
  - !ruby/object:Gem::Version
125
- version: '0.35'
104
+ version: '0.48'
126
105
  type: :development
127
106
  prerelease: false
128
107
  version_requirements: !ruby/object:Gem::Requirement
129
108
  requirements:
130
109
  - - "~>"
131
110
  - !ruby/object:Gem::Version
132
- version: '0.35'
111
+ version: '0.48'
133
112
  description: A Fix expectation matcher for Matchi.
134
113
  email:
135
114
  - contact@cyril.email
@@ -178,9 +157,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
178
157
  version: '0'
179
158
  requirements: []
180
159
  rubyforge_project:
181
- rubygems_version: 2.4.5.1
160
+ rubygems_version: 2.6.11
182
161
  signing_key:
183
162
  specification_version: 4
184
163
  summary: Fix expectation matcher.
185
164
  test_files: []
186
- has_rdoc:
checksums.yaml.gz.sig DELETED
Binary file
data.tar.gz.sig DELETED
@@ -1,4 +0,0 @@
1
- h� ��#!'�����T�p�����_Բ�ɟ���P
2
- 3��_��՟=��kV�����>����]���$�e$��K��7WG�L����hX� A7@dm��
3
- m�9�R�C�����h)�U~�3{��A�+R1,�j
4
- zrH�e4�z��{]�吙k���������$�r
metadata.gz.sig DELETED
Binary file