pikl 0.2.2 → 0.2.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,6 @@
1
+ == 0.2.3
2
+ * Change description.
3
+
1
4
  == 0.2.1
2
5
  * fix gem for mswin32.
3
6
 
data/README.txt CHANGED
@@ -1,6 +1,7 @@
1
1
  = pikl
2
2
 
3
- Pikl is an image librarry for ruby. This library aims easily image processing. Supports JPEG, PNG and BITMAP.
3
+ Pikl is an image librarry for JPEG, PNG and Bitmap.
4
+ Pikl's API is designed to process the image easily with method chain.
4
5
 
5
6
  === Installation of pikl
6
7
 
@@ -2,7 +2,7 @@ require 'pikl/version'
2
2
 
3
3
  AUTHOR = 'Ryota Maruko' # can also be an array of Authors
4
4
  EMAIL = ""
5
- DESCRIPTION = "Pikl is an image librarry for ruby. This library aims easily image processing. Supports JPEG, PNG and BITMAP."
5
+ DESCRIPTION = "Pikl is an image librarry for JPEG, PNG and Bitmap.Pikl's API is designed to process the image easily with method chain."
6
6
  GEM_NAME = 'pikl' # what ppl will type to install your gem
7
7
  RUBYFORGE_PROJECT = 'pikl' # The unix name for your project
8
8
  HOMEPATH = "http://#{RUBYFORGE_PROJECT}.rubyforge.org"
@@ -70,14 +70,20 @@ $hoe = Hoe.new(GEM_NAME, VERS) do |p|
70
70
  p.changes = p.paragraphs_of("History.txt", 0..1).join("\n\n")
71
71
  #p.extra_deps = [] # An array of rubygem dependencies [name, version], e.g. [ ['active_support', '>= 1.3.1'] ]
72
72
  if PACKAGE_PLATFORM =~ /mswin32/
73
- p.spec_extras[:platform] = "mswin32"
73
+ platform = Gem::Platform.new('mswin32')
74
+ p.spec_extras[:platform] = platform
74
75
  else
75
76
  p.spec_extras[:extensions] = ['ext/pikl/extconf.rb']
76
77
  end
77
78
  # A hash of extra values to set in the gemspec.
78
79
  end
79
-
80
+
80
81
  CHANGES = $hoe.paragraphs_of('History.txt', 0..1).join("\\n\\n")
81
82
  PATH = (RUBYFORGE_PROJECT == GEM_NAME) ? RUBYFORGE_PROJECT : "#{RUBYFORGE_PROJECT}/#{GEM_NAME}"
82
83
  $hoe.remote_rdoc_dir = File.join(PATH.gsub(/^#{RUBYFORGE_PROJECT}\/?/,''), 'rdoc')
83
- $hoe.rsync_args = '-av --delete --ignore-errors'
84
+ $hoe.rsync_args = '-av --delete --ignore-errors'
85
+
86
+
87
+
88
+
89
+
@@ -2,7 +2,7 @@ module Pikl #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 2
5
- TINY = 2
5
+ TINY = 3
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pikl
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryota Maruko
@@ -9,11 +9,11 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-05-02 00:00:00 +09:00
12
+ date: 2008-05-24 00:00:00 +09:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
16
- description: Pikl is an image librarry for ruby. This library aims easily image processing. Supports JPEG, PNG and BITMAP.
16
+ description: Pikl is an image librarry for JPEG, PNG and Bitmap.Pikl's API is designed to process the image easily with method chain.
17
17
  email:
18
18
  - ""
19
19
  executables: []
@@ -89,7 +89,7 @@ rubyforge_project: pikl
89
89
  rubygems_version: 1.0.1
90
90
  signing_key:
91
91
  specification_version: 2
92
- summary: Pikl is an image librarry for ruby. This library aims easily image processing. Supports JPEG, PNG and BITMAP.
92
+ summary: Pikl is an image librarry for JPEG, PNG and Bitmap.Pikl's API is designed to process the image easily with method chain.
93
93
  test_files:
94
94
  - test/test_helper.rb
95
95
  - test/test_pikl_image.rb