image-file 0.1.0 → 0.1.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.
@@ -1,6 +1,12 @@
1
1
  image-file release history
2
2
  ==========================
3
3
 
4
+ 0.1.1 / 2010-12-17
5
+ ------------------
6
+
7
+ * Bug fixs
8
+ * build extension when installing gem.
9
+
4
10
  0.1.0 / 2010-12-16
5
11
  ------------------
6
12
 
@@ -19,6 +19,7 @@ Gem::Specification.new do |s|
19
19
  s.files = `git ls-files`.split("\n")
20
20
  s.test_files = `git ls-files -- {spec,features}/*`.split("\n")
21
21
  s.executables = `git ls-files -- bin/*`.split("\n").map {|f| File.basename(f) }
22
+ s.extensions = `git ls-files -- ext/*`.split("\n").grep(/extconf\.rb\Z/)
22
23
  s.extra_rdoc_files = []
23
24
  s.rdoc_options = ['--charset=UTF-8']
24
25
  s.require_path = 'lib'
@@ -2,7 +2,7 @@ module ImageFile
2
2
  module Version
3
3
  MAJOR = 0
4
4
  MINOR = 1
5
- MICRO = 0
5
+ MICRO = 1
6
6
  STRING = [MAJOR, MINOR, MICRO].join('.')
7
7
  end
8
8
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 0
9
- version: 0.1.0
8
+ - 1
9
+ version: 0.1.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Kenta Murata
@@ -22,8 +22,8 @@ description: A library for handling image files
22
22
  email: mrkn@mrkn.jp
23
23
  executables: []
24
24
 
25
- extensions: []
26
-
25
+ extensions:
26
+ - ext/image_file/extconf.rb
27
27
  extra_rdoc_files: []
28
28
 
29
29
  files:
@@ -70,7 +70,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
70
70
  requirements:
71
71
  - - ">="
72
72
  - !ruby/object:Gem::Version
73
- hash: 107401639748163987
73
+ hash: 416281435884097203
74
74
  segments:
75
75
  - 0
76
76
  version: "0"
@@ -79,7 +79,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - ">="
81
81
  - !ruby/object:Gem::Version
82
- hash: 107401639748163987
82
+ hash: 416281435884097203
83
83
  segments:
84
84
  - 0
85
85
  version: "0"
@@ -89,7 +89,7 @@ rubyforge_project:
89
89
  rubygems_version: 1.3.7
90
90
  signing_key:
91
91
  specification_version: 3
92
- summary: image-file-0.1.0
92
+ summary: image-file-0.1.1
93
93
  test_files:
94
94
  - spec/image_file/image_spec.rb
95
95
  - spec/image_file/jpeg_reader_spec.rb