imagetools 0.1.0 → 0.2.0

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
- SHA1:
3
- metadata.gz: 6ef91388db420d9917f632bdc0331075867547d3
4
- data.tar.gz: 67fffc417243fb5651127df7c4804456eadb7ac4
2
+ SHA256:
3
+ metadata.gz: f6c1f6bcc140a56398c7dde6e035bfd833087c87d4073f79941f35a3bee218d5
4
+ data.tar.gz: '077803339e06bc1d111cfe3578102fce618317f5a3739baf77eccc904e73feaf'
5
5
  SHA512:
6
- metadata.gz: 24f098120824f57ff94074537e8a7e2fd974d5e7755ad8d3c903dc0bdc4e373aee64c4734c719035fc49f43c1824519a9e2e253375e5e999794b0ac7bc6aff66
7
- data.tar.gz: 07755c99ae95407267fe811a8bf25dbb27c1774bd31714bb9708fa882a2c7a17cbd86ad67b33dd3b022996dff73827d3790a55b616c272cf7d08a82ddab6ade8
6
+ metadata.gz: 0c84df990c4098d9670cffa17ad5e6a8d47c1f186ae071d341f5d5d167f3e66e0567928c96fa684b8c1bc7edc1232c6eb27c088dfdea1d6f32d9f7abf69d3ab5
7
+ data.tar.gz: 1021d94363089d3ac87b69336cce0b7accafd68e35454562b0e87f5de8fdd4dea2fbca212eabac8cfde803d8ec9f6c9659aeb440c750f61ea1dcabc42540f681
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- imagetools (0.1.0)
4
+ imagetools (0.2.0)
5
5
  rmagick
6
6
 
7
7
  GEM
@@ -21,4 +21,4 @@ DEPENDENCIES
21
21
  rake (~> 10.0)
22
22
 
23
23
  BUNDLED WITH
24
- 1.16.0
24
+ 1.16.1
data/README.md CHANGED
@@ -8,6 +8,15 @@ Image tools.
8
8
  gem imagetools
9
9
  ```
10
10
 
11
+ macOS High Sierra
12
+
13
+ ```
14
+ brew uninstall imagemagick
15
+ brew install imagemagick@6
16
+ PKG_CONFIG_PATH=/usr/local/opt/imagemagick@6/lib/pkgconfig gem imagetools
17
+ ```
18
+
19
+
11
20
  ## Usage
12
21
 
13
22
  ### imageconcat
data/exe/imagefilter CHANGED
@@ -3,3 +3,4 @@
3
3
  require 'imagetools/imagefilter'
4
4
 
5
5
  Imagetools::Imagefilter.run(ARGV)
6
+
@@ -1,10 +1,13 @@
1
1
  # coding: utf-8
2
+
3
+ require 'imagetools/version'
2
4
  require "optparse"
3
5
  require "fileutils"
4
6
 
5
7
  module Imagetools
6
8
  class Iconcreator
7
-
9
+
10
+
8
11
  ICON_INFOS = [
9
12
  ##### iPhone icons #####
10
13
  ["20x20", "iphone", "2x"], # iPhone Notification iOS 7-11
@@ -1,12 +1,12 @@
1
1
  # coding: utf-8
2
+
3
+ require 'imagetools/version'
2
4
  require 'rmagick'
3
5
  require 'optparse'
4
6
 
5
7
  module Imagetools
6
8
  class Imageconcat
7
9
 
8
- VERSION = "1.0"
9
-
10
10
  def self.run(argv)
11
11
  STDOUT.sync = true
12
12
  opts = {}
@@ -1,5 +1,6 @@
1
1
  # coding: utf-8
2
2
 
3
+ require 'imagetools/version'
3
4
  require 'fileutils'
4
5
  require 'optparse'
5
6
 
@@ -1,3 +1,3 @@
1
1
  module Imagetools
2
- VERSION = "0.1.0"
2
+ VERSION = "0.2.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: imagetools
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - src
@@ -123,7 +123,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
123
123
  version: '0'
124
124
  requirements: []
125
125
  rubyforge_project:
126
- rubygems_version: 2.6.13
126
+ rubygems_version: 2.7.6
127
127
  signing_key:
128
128
  specification_version: 4
129
129
  summary: Image Tools.