indie-raster 0.0.2 → 0.0.3

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.
data/.gitignore CHANGED
@@ -1,5 +1,3 @@
1
1
  .DS_Store
2
2
  fonts/scripts/temp
3
-
4
- #build-c
5
- # (non-excluded for `git ls-files` in the gemspec)
3
+ build-c
data/extconf.rb ADDED
@@ -0,0 +1,14 @@
1
+
2
+
3
+ `bash make.sh`
4
+
5
+ s = """
6
+
7
+ install:
8
+ \tdate
9
+
10
+ """
11
+
12
+ File.open("Makefile", "w") do |f|
13
+ f.write s
14
+ end
data/indie-raster.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
  Gem::Specification.new do |s|
3
3
 
4
4
  s.name = "indie-raster"
5
- s.version = "0.0.2"
5
+ s.version = "0.0.3"
6
6
 
7
7
  s.platform = Gem::Platform::RUBY
8
8
  s.authors = ["ShopKeep"]
@@ -11,7 +11,8 @@ Gem::Specification.new do |s|
11
11
  s.summary = "A small raster graphics library."
12
12
  s.description = "A small raster graphics library with pixel fonts and no dependencies."
13
13
 
14
- s.required_rubygems_version = ">= 1.3.6"
14
+ s.extensions = "extconf.rb"
15
+ s.required_rubygems_version = ">= 1.3.5"
15
16
 
16
17
  s.files = `git ls-files`.split
17
18
 
@@ -1,5 +1,5 @@
1
1
 
2
- require 'Open3'
2
+ require 'open3'
3
3
 
4
4
 
5
5
  def ascii_to_utf32(str)
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: indie-raster
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.2
5
+ version: 0.0.3
6
6
  platform: ruby
7
7
  authors:
8
8
  - ShopKeep
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-04-14 00:00:00 Z
13
+ date: 2011-04-15 00:00:00 Z
14
14
  dependencies: []
15
15
 
16
16
  description: A small raster graphics library with pixel fonts and no dependencies.
@@ -18,8 +18,8 @@ email:
18
18
  - opensource@shopkeep.com
19
19
  executables: []
20
20
 
21
- extensions: []
22
-
21
+ extensions:
22
+ - extconf.rb
23
23
  extra_rdoc_files: []
24
24
 
25
25
  files:
@@ -27,8 +27,8 @@ files:
27
27
  - LICENSE.txt
28
28
  - README.md
29
29
  - Rakefile
30
- - build-c/indie-raster
31
30
  - docs/PRF.md
31
+ - extconf.rb
32
32
  - fonts/README-fonts.md
33
33
  - fonts/fonts_prf1/dsm-22-italic.prf1
34
34
  - fonts/fonts_prf1/dsm-22.prf1
@@ -87,7 +87,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
87
87
  requirements:
88
88
  - - ">="
89
89
  - !ruby/object:Gem::Version
90
- version: 1.3.6
90
+ version: 1.3.5
91
91
  requirements: []
92
92
 
93
93
  rubyforge_project:
data/build-c/indie-raster DELETED
Binary file