fixit 0.0.6 → 0.0.8

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/fixit.gemspec +6 -1
  3. data/lib/fixit.rb +1 -0
  4. metadata +13 -10
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: eabf965490df944ffd5aed4c419c87d486e87a0c
4
- data.tar.gz: 5a336c8185c2bcaf907d152e6640bee0b493ee42
3
+ metadata.gz: 3db639c16f0dcb740946187e072693807a91ad77
4
+ data.tar.gz: 251882678b1f944dedb513595d133b91363cebf8
5
5
  SHA512:
6
- metadata.gz: 295a817c215f110cf1c675cdcc61a0d4fdb6ba371ac17ac3a19ae202c3f955881e8340f85532d711b84eabbf8b7dc8936d1241398c79da3a2cfb0aad5332b463
7
- data.tar.gz: 8fd55c5a5f043853e9c0f3c8aac024c653a09e67c209dc52d1b33eb4e532861d0be03f79a2895aaf7399b971546d8675bf64ab2eee5facabf447cabf77a50acb
6
+ metadata.gz: 8203aac70fcf6cb6f382cefffdfc46c93315e4cc3f72786d25bd1ccb4b7a5e4f11320ace4174fc4a669ea1144ca73dcda7d55534626e79c7d6b0f006337ef33a
7
+ data.tar.gz: 10c90970b078442b890be4e8137af2028ed22f94ca78796d00382ca0d87c289af4761f626f430997fb3eb8dc8713ff181c95895bf3880bcdc9a79e9e87dac574
data/fixit.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "fixit"
3
- s.version = "0.0.6"
3
+ s.version = "0.0.8"
4
4
  s.platform = Gem::Platform::RUBY
5
5
  s.summary = "simple fixture for rspec"
6
6
  s.license = "MIT"
@@ -17,4 +17,9 @@ EOF
17
17
  s.author = 'Masato Ishimoto'
18
18
  s.email = 'masato.ishimoto@gmail.com'
19
19
  s.homepage = 'https://github.com/borot/fixit'
20
+ s.post_install_message = <<-MESSAGE
21
+ ! The 'fixit' gem has been deprecated and has been replaced by 'fixture'.
22
+ ! See: https://rubygems.org/gems/fixture
23
+ ! And: https://github.com/borot/fixture
24
+ MESSAGE
20
25
  end
data/lib/fixit.rb CHANGED
@@ -1 +1,2 @@
1
+ warn "[DEPRECATION] `fixit` has been renamed to `fixture` and will no longer be supported. Please switch to `fixture` as soon as possible."
1
2
  require 'fixit/fixit'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fixit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Masato Ishimoto
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-06-11 00:00:00.000000000 Z
11
+ date: 2016-03-18 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: |
14
14
  Fixit provides a minimal interface for using fixuture.
@@ -18,32 +18,35 @@ executables: []
18
18
  extensions: []
19
19
  extra_rdoc_files: []
20
20
  files:
21
- - lib/fixit/fixit.rb
22
- - lib/fixit.rb
23
- - fixit.gemspec
24
- - Rakefile
25
21
  - README.md
22
+ - Rakefile
23
+ - fixit.gemspec
24
+ - lib/fixit.rb
25
+ - lib/fixit/fixit.rb
26
26
  homepage: https://github.com/borot/fixit
27
27
  licenses:
28
28
  - MIT
29
29
  metadata: {}
30
- post_install_message:
30
+ post_install_message: |2
31
+ ! The 'fixit' gem has been deprecated and has been replaced by 'fixture'.
32
+ ! See: https://rubygems.org/gems/fixture
33
+ ! And: https://github.com/borot/fixture
31
34
  rdoc_options: []
32
35
  require_paths:
33
36
  - lib
34
37
  required_ruby_version: !ruby/object:Gem::Requirement
35
38
  requirements:
36
- - - '>='
39
+ - - ">="
37
40
  - !ruby/object:Gem::Version
38
41
  version: '0'
39
42
  required_rubygems_version: !ruby/object:Gem::Requirement
40
43
  requirements:
41
- - - '>='
44
+ - - ">="
42
45
  - !ruby/object:Gem::Version
43
46
  version: '0'
44
47
  requirements: []
45
48
  rubyforge_project:
46
- rubygems_version: 2.0.3
49
+ rubygems_version: 2.4.5.1
47
50
  signing_key:
48
51
  specification_version: 4
49
52
  summary: simple fixture for rspec