cupsffi 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/{README → README.rdoc} +9 -4
- data/cupsffi.gemspec +1 -1
- data/lib/cupsffi/version.rb +1 -1
- metadata +4 -4
data/{README → README.rdoc}
RENAMED
|
@@ -2,19 +2,24 @@ CupsFFI is an FFI wrapper around libcups providing access to the Cups API
|
|
|
2
2
|
as well as the PPD API. It was written using Ruby 1.9.2 but has not been
|
|
3
3
|
tested with previous versions.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
== Author
|
|
6
|
+
|
|
7
|
+
Nathan Ehresman
|
|
8
|
+
www.tebros.com
|
|
9
|
+
|
|
10
|
+
== License
|
|
6
11
|
|
|
7
12
|
CupsFFI is MIT licensed.
|
|
8
13
|
|
|
9
|
-
|
|
14
|
+
== Installation
|
|
10
15
|
|
|
11
16
|
gem install cupsffi
|
|
12
17
|
|
|
13
|
-
|
|
18
|
+
== Setup
|
|
14
19
|
|
|
15
20
|
Nothing required. libcups is used to find and read all configuration.
|
|
16
21
|
|
|
17
|
-
|
|
22
|
+
== Example usage
|
|
18
23
|
|
|
19
24
|
require 'cupsffi'
|
|
20
25
|
# Returns array of printer names:
|
data/cupsffi.gemspec
CHANGED
|
@@ -8,7 +8,7 @@ Gem::Specification.new do |s|
|
|
|
8
8
|
s.platform = Gem::Platform::RUBY
|
|
9
9
|
s.authors = ["Nathan Ehresman"]
|
|
10
10
|
s.email = ["nehresma@gmail.com"]
|
|
11
|
-
s.homepage = ""
|
|
11
|
+
s.homepage = "http://www.tebros.com/"
|
|
12
12
|
s.summary = %q{FFI wrapper around libcups}
|
|
13
13
|
s.description = %q{Simple wrapper around libcups to give CUPS printing capabilities to Ruby apps.}
|
|
14
14
|
|
data/lib/cupsffi/version.rb
CHANGED
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: cupsffi
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 0.0.
|
|
5
|
+
version: 0.0.3
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Nathan Ehresman
|
|
@@ -10,7 +10,7 @@ autorequire:
|
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
12
|
|
|
13
|
-
date: 2011-03-
|
|
13
|
+
date: 2011-03-10 00:00:00 -05:00
|
|
14
14
|
default_executable:
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
@@ -37,7 +37,7 @@ files:
|
|
|
37
37
|
- .gitignore
|
|
38
38
|
- COPYING
|
|
39
39
|
- Gemfile
|
|
40
|
-
- README
|
|
40
|
+
- README.rdoc
|
|
41
41
|
- Rakefile
|
|
42
42
|
- cupsffi.gemspec
|
|
43
43
|
- lib/cupsffi.rb
|
|
@@ -47,7 +47,7 @@ files:
|
|
|
47
47
|
- lib/cupsffi/printer.rb
|
|
48
48
|
- lib/cupsffi/version.rb
|
|
49
49
|
has_rdoc: true
|
|
50
|
-
homepage:
|
|
50
|
+
homepage: http://www.tebros.com/
|
|
51
51
|
licenses: []
|
|
52
52
|
|
|
53
53
|
post_install_message:
|