fucking_favicons 1.5.0 → 1.6.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- MzBlYjRjN2VlYTNmODExZjBhMjAzMTJkMzI0M2JlNWUyZWIyNWI4MQ==
5
- data.tar.gz: !binary |-
6
- YTNkODVlOTliNGYxMjZiOTUxYTllYzQ2N2UxOTYwOGZjZGVmM2VmMw==
7
- !binary "U0hBNTEy":
8
- metadata.gz: !binary |-
9
- ZmEyMmVjYzg4MTM5YTUwNDgzNzRhMGJhYjhmNDk1NTlhMmRiYTJmZmE4ODgz
10
- MzUzYThhYWZmNjU3MTc0ZDBlY2U4ZmU2YmIwMzVlOGE0OTk4ZmExN2RjM2M2
11
- NGJlYTQ2YmQ0OTUyMDdlMzhlNzFiOGZiNjUyYmQzMjdmMGU2NmU=
12
- data.tar.gz: !binary |-
13
- MGNjYWZkNTk0ZTU1OTFiNTI3NzgwMjUwZTgxMzA5ZTI1OTU3ZGQzN2RhN2Jm
14
- YzIyN2U3ODE5ZGY2MzE5YTZjZTc3OWQyNWIxN2E5MmVjNTc4OGEzYzVkNDg1
15
- NDk3OGMzNzA5Yzc1MDNmYzE4MzY5YzM4YjYyMjgwNTc1ZDVjNmI=
2
+ SHA1:
3
+ metadata.gz: dc6e3a1f372b8d50d462b8e7f1b85ef2e5192d5a
4
+ data.tar.gz: e10fd70016518b347fb3107bed8e2294d822c6d6
5
+ SHA512:
6
+ metadata.gz: 00e50cc397246e7ef48c46dd369cd5d5bbeaec4ee664fca5fbac46917055129034604e6320a332e9e85637b2d097c32e92512716cbffb87ecd056dd3372adf8b
7
+ data.tar.gz: fd6824d819712368ff00bec41a4f66782746a6f7eb279c6e1e0081e9e75fd7b8a8442652eb290b4d6ae19b6eb4a0b7e37a7eb05331e4f4323e5186268b2a179b
data/README.md CHANGED
@@ -19,11 +19,17 @@ TL;DR
19
19
  ```bash
20
20
 
21
21
  # make a fucking favicon - pro-tip since this gem resizes it make it big = 256x256 ish
22
+
23
+ # you can either create one in the default location, for example
22
24
 
23
- ~> cd app/views/images
25
+ ~> cd app/assets/images/
24
26
 
25
27
  ~> curl -sO http://s3.amazonaws.com/drawohara.com.images/favicon.png
26
28
 
29
+ # or you can configure the path where the generator will look
30
+
31
+
32
+
27
33
  ```
28
34
 
29
35
  ```erb
data/Rakefile CHANGED
@@ -4,7 +4,7 @@ This.email = "ara.t.howard@gmail.com"
4
4
  This.homepage = "https://github.com/ahoward/#{ This.lib }"
5
5
 
6
6
  task :license do
7
- open('LICENSE', 'w'){|fd| fd.puts "same as ruby's"}
7
+ open('LICENSE', 'w'){|fd| fd.puts "Ruby"}
8
8
  end
9
9
 
10
10
  task :default do
@@ -93,7 +93,7 @@ task :gemspec do
93
93
  test_files = "test/#{ lib }.rb" if File.file?("test/#{ lib }.rb")
94
94
  summary = object.respond_to?(:summary) ? object.summary : "summary: #{ lib } kicks the ass"
95
95
  description = object.respond_to?(:description) ? object.description : "description: #{ lib } kicks the ass"
96
- license = object.respond_to?(:license) ? object.license : "same as ruby's"
96
+ license = object.respond_to?(:license) ? object.license : "Ruby"
97
97
 
98
98
  if This.extensions.nil?
99
99
  This.extensions = []
@@ -297,7 +297,7 @@ BEGIN {
297
297
 
298
298
  # discover full path to this ruby executable
299
299
  #
300
- c = Config::CONFIG
300
+ c = RbConfig::CONFIG
301
301
  bindir = c["bindir"] || c['BINDIR']
302
302
  ruby_install_name = c['ruby_install_name'] || c['RUBY_INSTALL_NAME'] || 'ruby'
303
303
  ruby_ext = c['EXEEXT'] || ''
@@ -3,11 +3,11 @@
3
3
 
4
4
  Gem::Specification::new do |spec|
5
5
  spec.name = "fucking_favicons"
6
- spec.version = "1.5.0"
6
+ spec.version = "1.6.0"
7
7
  spec.platform = Gem::Platform::RUBY
8
8
  spec.summary = "fucking_favicons"
9
9
  spec.description = "fucking favicons fucking suck"
10
- spec.license = "same as ruby's"
10
+ spec.license = "Ruby"
11
11
 
12
12
  spec.files =
13
13
  ["README.md",
@@ -33,7 +33,7 @@ Gem::Specification::new do |spec|
33
33
  spec.test_files = nil
34
34
 
35
35
 
36
- spec.add_dependency(*["mini_magick", " ~> 3.1"])
36
+ spec.add_dependency(*["mini_magick", " ~> 4.0"])
37
37
 
38
38
 
39
39
  spec.extensions.push(*[])
@@ -8,7 +8,7 @@ module FuckingFavicons
8
8
  #
9
9
  def dependencies
10
10
  {
11
- 'mini_magick' => [ 'mini_magick' , ' ~> 3.1' ]
11
+ 'mini_magick' => [ 'mini_magick' , ' ~> 4.0' ]
12
12
  }
13
13
  end
14
14
 
@@ -1,5 +1,5 @@
1
1
  module FuckingFavicons
2
- VERSION = '1.5.0'
2
+ VERSION = '1.6.0'
3
3
 
4
4
  def FuckingFavicons.version
5
5
  ::FuckingFavicons::VERSION
metadata CHANGED
@@ -1,29 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fucking_favicons
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.0
4
+ version: 1.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ara T. Howard
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-06-05 00:00:00.000000000 Z
11
+ date: 2018-02-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: mini_magick
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ~>
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '3.1'
19
+ version: '4.0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ~>
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '3.1'
26
+ version: '4.0'
27
27
  description: fucking favicons fucking suck
28
28
  email: ara.t.howard@gmail.com
29
29
  executables: []
@@ -41,7 +41,7 @@ files:
41
41
  - lib/fucking_favicons/version.rb
42
42
  homepage: https://github.com/ahoward/fucking_favicons
43
43
  licenses:
44
- - same as ruby's
44
+ - Ruby
45
45
  metadata: {}
46
46
  post_install_message:
47
47
  rdoc_options: []
@@ -49,18 +49,19 @@ require_paths:
49
49
  - lib
50
50
  required_ruby_version: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ! '>='
52
+ - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
55
  required_rubygems_version: !ruby/object:Gem::Requirement
56
56
  requirements:
57
- - - ! '>='
57
+ - - ">="
58
58
  - !ruby/object:Gem::Version
59
59
  version: '0'
60
60
  requirements: []
61
61
  rubyforge_project: codeforpeople
62
- rubygems_version: 2.0.3
62
+ rubygems_version: 2.6.8
63
63
  signing_key:
64
64
  specification_version: 4
65
65
  summary: fucking_favicons
66
66
  test_files: []
67
+ has_rdoc: