husl 1.0.0 → 1.0.1

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
  SHA1:
3
- metadata.gz: 540e8f2843428c702d8c94712e0e850d6a9238c1
4
- data.tar.gz: c863a75b3b3bf76d304688cfaeb05d28ef9411d2
3
+ metadata.gz: 2bfb3d34fda2ef16a846e2f68a36731651aaa569
4
+ data.tar.gz: aa2ecda5595c426720701f605efe611cd5beb31a
5
5
  SHA512:
6
- metadata.gz: 29c72427e3f87cd573655fa5a0bccf44c4c14c0a187c2ff0ee805067f75b11d5b648e51701092d5fa33b33ec02ce7d52ae41ace451228ce9292d0927c2f5d251
7
- data.tar.gz: e8fe0b7666d31de57e505a84e62f6aae5d6f8bb4fd6dfc5b566fda054190651e5c0ee5ef8a122789b9508dee1fe469d3080350e92abd28ab5a002162529e3d0f
6
+ metadata.gz: 3ae5e196a532a68d6d2f7d7e0b4bbb52c3eb11f95d4d3ff6cbd1e26a660637bdfdc7e5b2751ccb52f32163319722401fd24abefc1dae60eeb576b117ed207732
7
+ data.tar.gz: e302b2c2a4c8c96ae426d0be62d1b79d01c315d6b079e5413fcc4ebdef688e5d837420adaf00994f6b4c0aa0fe931e8975928def4f1737703344edb2e0224f91
@@ -1 +1 @@
1
- 2.2.1
1
+ 2.3.0
@@ -10,8 +10,8 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ["croitoruradubogdan@gmail.com"]
11
11
 
12
12
  spec.summary = %q{Human friendly alternative to HSL.}
13
- spec.description = %q{HUSL is implemented as a set of functions to convert colors between RGB, HUSL and HUSLp. }
14
- spec.homepage = "https://github.com/radubogdan/husl"
13
+ spec.description = %q{HUSL is implemented as a set of functions to convert colors between RGB, HUSL and HUSLp.}
14
+ spec.homepage = "https://github.com/hsluv/hsluv-ruby"
15
15
  spec.license = "MIT"
16
16
 
17
17
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
@@ -23,4 +23,12 @@ Gem::Specification.new do |spec|
23
23
  spec.add_development_dependency "rake", "~> 10.0"
24
24
  spec.add_development_dependency "pry"
25
25
  spec.add_development_dependency "rspec"
26
+
27
+ spec.post_install_message = <<-MESSAGE
28
+ ! The 'husl' gem has been deprecated and has been replaced by 'hsluv'.
29
+ ! See: https://rubygems.org/gems/hsluv
30
+ ! And: https://github.com/hsluv/hsluv-ruby
31
+ MESSAGE
32
+
26
33
  end
34
+
@@ -1,5 +1,7 @@
1
1
  require "husl/version"
2
2
 
3
+ warn "[DEPRECATION] This gem has been renamed to hsluv and will no longer be supported."
4
+
3
5
  module Husl
4
6
  extend self
5
7
 
@@ -1,3 +1,3 @@
1
1
  module Husl
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: husl
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
7
  - Radu-Bogdan Croitoru
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-10-26 00:00:00.000000000 Z
11
+ date: 2017-02-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -66,8 +66,8 @@ dependencies:
66
66
  - - ">="
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
- description: 'HUSL is implemented as a set of functions to convert colors between
70
- RGB, HUSL and HUSLp. '
69
+ description: HUSL is implemented as a set of functions to convert colors between RGB,
70
+ HUSL and HUSLp.
71
71
  email:
72
72
  - croitoruradubogdan@gmail.com
73
73
  executables: []
@@ -87,11 +87,14 @@ files:
87
87
  - husl.gemspec
88
88
  - lib/husl.rb
89
89
  - lib/husl/version.rb
90
- homepage: https://github.com/radubogdan/husl
90
+ homepage: https://github.com/hsluv/hsluv-ruby
91
91
  licenses:
92
92
  - MIT
93
93
  metadata: {}
94
- post_install_message:
94
+ post_install_message: |
95
+ ! The 'husl' gem has been deprecated and has been replaced by 'hsluv'.
96
+ ! See: https://rubygems.org/gems/hsluv
97
+ ! And: https://github.com/hsluv/hsluv-ruby
95
98
  rdoc_options: []
96
99
  require_paths:
97
100
  - lib
@@ -107,7 +110,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
107
110
  version: '0'
108
111
  requirements: []
109
112
  rubyforge_project:
110
- rubygems_version: 2.4.5
113
+ rubygems_version: 2.5.1
111
114
  signing_key:
112
115
  specification_version: 4
113
116
  summary: Human friendly alternative to HSL.