ft2-ruby 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
data/ft2-ruby.gemspec ADDED
@@ -0,0 +1,18 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require File.expand_path('../lib/ft2-ruby/version', __FILE__)
3
+
4
+ Gem::Specification.new do |gem|
5
+ gem.authors = ["Paul Duncan"]
6
+ gem.email = ["pabs@pablotron.org"]
7
+ gem.description = %q{FreeType2 bindings for Ruby 1.8 and 1.9}
8
+ gem.summary = %q{FreeType2 bindings for Ruby}
9
+ gem.homepage = "https://github.com/customink/ft2-ruby"
10
+
11
+ gem.files = `git ls-files`.split($\)
12
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
13
+ gem.extensions = ['ext/ft2-ruby/extconf.rb']
14
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
15
+ gem.name = "ft2-ruby"
16
+ gem.require_paths = ["lib"]
17
+ gem.version = FT2::VERSION
18
+ end
@@ -0,0 +1,3 @@
1
+ module FT2
2
+ VERSION = "0.1.4"
3
+ end
metadata CHANGED
@@ -1,80 +1,59 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: ft2-ruby
3
- version: !ruby/object:Gem::Version
4
- hash: 29
5
- prerelease: false
6
- segments:
7
- - 0
8
- - 1
9
- - 3
10
- version: 0.1.3
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.4
5
+ prerelease:
11
6
  platform: ruby
12
- authors:
7
+ authors:
13
8
  - Paul Duncan
14
9
  autorequire:
15
10
  bindir: bin
16
11
  cert_chain: []
17
-
18
- date: 2010-10-19 00:00:00 -07:00
19
- default_executable:
12
+ date: 2012-12-10 00:00:00.000000000 Z
20
13
  dependencies: []
21
-
22
- description:
23
- email: pabs@pablotron.org
14
+ description: FreeType2 bindings for Ruby 1.8 and 1.9
15
+ email:
16
+ - pabs@pablotron.org
24
17
  executables: []
25
-
26
- extensions:
27
- - extconf.rb
28
- extra_rdoc_files:
29
- - ChangeLog
30
- - README
31
- - TODO
32
- files:
33
- - ChangeLog
34
- - MANIFEST
35
- - README
36
- - Rakefile
37
- - TODO
38
- - VERSION
18
+ extensions:
19
+ - ext/ft2-ruby/extconf.rb
20
+ extra_rdoc_files: []
21
+ files:
22
+ - .gitignore
23
+ - CHANGELOG.md
24
+ - Gemfile
25
+ - LICENSE
26
+ - README.md
27
+ - TODO.md
39
28
  - examples/fonts/yudit.ttf
40
29
  - examples/name_list.rb
41
30
  - examples/test_ft2.rb
42
- - extconf.rb
43
- - ft2.c
44
- has_rdoc: true
45
- homepage: http://www.pablotron.org/
31
+ - ext/ft2-ruby/extconf.rb
32
+ - ext/ft2-ruby/ft2.c
33
+ - ft2-ruby.gemspec
34
+ - lib/ft2-ruby/version.rb
35
+ homepage: https://github.com/customink/ft2-ruby
46
36
  licenses: []
47
-
48
37
  post_install_message:
49
- rdoc_options:
50
- - --charset=UTF-8
51
- require_paths:
38
+ rdoc_options: []
39
+ require_paths:
52
40
  - lib
53
- required_ruby_version: !ruby/object:Gem::Requirement
41
+ required_ruby_version: !ruby/object:Gem::Requirement
54
42
  none: false
55
- requirements:
56
- - - ">="
57
- - !ruby/object:Gem::Version
58
- hash: 3
59
- segments:
60
- - 0
61
- version: "0"
62
- required_rubygems_version: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ! '>='
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ required_rubygems_version: !ruby/object:Gem::Requirement
63
48
  none: false
64
- requirements:
65
- - - ">="
66
- - !ruby/object:Gem::Version
67
- hash: 3
68
- segments:
69
- - 0
70
- version: "0"
49
+ requirements:
50
+ - - ! '>='
51
+ - !ruby/object:Gem::Version
52
+ version: '0'
71
53
  requirements: []
72
-
73
54
  rubyforge_project:
74
- rubygems_version: 1.3.7
55
+ rubygems_version: 1.8.23
75
56
  signing_key:
76
57
  specification_version: 3
77
- summary: Ruby libraries to FreeType2
78
- test_files:
79
- - examples/test_ft2.rb
80
- - examples/name_list.rb
58
+ summary: FreeType2 bindings for Ruby
59
+ test_files: []
data/ChangeLog DELETED
@@ -1,32 +0,0 @@
1
- Thu Aug 15 09:39:24 2002, pabs <pabs@pablotron.org>
2
- * created changelog.
3
-
4
- Tue Nov 12 17:20:23 2002, pabs <pabs@pablotron.org
5
- * made some changes according to the notes in the freetype2 headers:
6
- * ft2.c: removed FT2::PixelMode::RGB and FT2::PixelMode::RGBA constants
7
- * ft2.c: removed Ft2::PaletteMode
8
- * compiles clean with -W -Wall -pedantic again
9
-
10
- Fri Nov 15 03:27:50 2002, pabs <pabs@pablotron.org
11
- * ft2.c: finished documentation for FT2::Face methods.
12
-
13
- Fri Nov 15 03:52:46 2002, pabs <pabs@pablotron.org
14
- * ft2.c: added FT2::Face#current_charmap
15
-
16
- Fri Nov 15 15:15:37 2002, pabs <pabs@pablotron.org
17
- * ft2.c: finished documentation for FT2::GlyphMetrics methods.
18
-
19
- Sat Nov 16 01:45:42 2002, pabs <pabs@pablotron.org
20
- * ft2.c: finished documentation for FT2::GlyphSlot methods.
21
-
22
- Wed Nov 20 16:11:10 2002, pabs <pabs@pablotron.org
23
- * ft2.c: finished documenting the FT2::SizeMetrics methods (had to
24
- pull the documentation for them out of the second part of the
25
- FreeType2 tutorial, since they're not available in the API
26
- reference).
27
-
28
- Thu Nov 21 15:18:26 2002, pabs <pabs@pablotron.org
29
- * ft2.c: finished documenting and implementing FT2::Glyph,
30
- FT2::BitmapGlyph, and FT2::OutlineGlyph.
31
- * ft2.c: compiles clean with -W -Wall -pedantic again
32
- * TODO: updated
data/MANIFEST DELETED
@@ -1,14 +0,0 @@
1
- ./README
2
- ./ft2.c
3
- ./extconf.rb
4
- ./examples/name_list.rb
5
- ./examples/test_ft2.rb
6
- ./examples/fonts/CVS/Root
7
- ./examples/fonts/CVS/Repository
8
- ./examples/fonts/CVS/Entries
9
- ./examples/fonts/yudit.ttf
10
- ./examples/.test_ft2.rb.swp
11
- ./MANIFEST
12
- ./TODO
13
- ./tags
14
- ./ChangeLog
data/README DELETED
@@ -1,19 +0,0 @@
1
- FT2-Ruby 0.1.0 README
2
- =====================
3
-
4
- This document was last updated on Sat Nov 16 17:51:41 2002. Please see
5
- http://www.pablotron.org/software/ft2-ruby/ for the latest version of
6
- this software.
7
-
8
- Introduction
9
- ============
10
- hum de dum dum
11
-
12
- Installing FT2-Ruby
13
- ===================
14
- blah de blah blah
15
-
16
- About the Author
17
- ================
18
- Paul Duncan <pabs@pablotron.org>
19
- http://www.pablotron.org/
data/Rakefile DELETED
@@ -1,32 +0,0 @@
1
- require 'rubygems'
2
- require 'rake'
3
-
4
- begin
5
- require 'jeweler'
6
- Jeweler::Tasks.new do |gem|
7
- gem.name = "ft2-ruby"
8
- gem.summary = %Q{Ruby libraries to FreeType2}
9
- gem.email = "pabs@pablotron.org"
10
- gem.homepage = "http://www.pablotron.org/"
11
- gem.authors = ["Paul Duncan"]
12
- gem.extensions = ["extconf.rb"]
13
- # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
14
- end
15
- Jeweler::GemcutterTasks.new
16
- rescue LoadError
17
- puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
18
- end
19
-
20
- #
21
- # task :default => :test
22
- #
23
- require 'rake/rdoctask'
24
- Rake::RDocTask.new do |rdoc|
25
- version = File.exist?('VERSION') ? File.read('VERSION') : ""
26
-
27
- rdoc.rdoc_dir = 'rdoc'
28
- rdoc.title = "ft2-ruby #{version}"
29
- rdoc.rdoc_files.include('README')
30
- rdoc.rdoc_files.include('TODO')
31
- rdoc.rdoc_files.include('ft2.c')
32
- end
data/VERSION DELETED
@@ -1 +0,0 @@
1
- 0.1.3