forked from mobmewireless/origami-pdf
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sajith Amma
committed
Oct 16, 2012
1 parent
19473ef
commit c036b16
Showing
4 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
module Origami | ||
|
||
VERSION = "1.2.1" | ||
|
||
end |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
lib = File.expand_path('../lib/', __FILE__) | ||
$:.unshift lib unless $:.include?(lib) | ||
|
||
require 'version' | ||
|
||
Gem::Specification.new do |s| | ||
s.name = 'origami' | ||
s.version = Origami::VERSION | ||
s.platform = Gem::Platform::RUBY | ||
s.date = '2012-10-10' | ||
s.summary = "Origami PDF extended version" | ||
s.description = "Extended the origami-pdf library to support methods to insert signature inside a PDF" | ||
s.authors = ["MobMe"] | ||
s.email = ["engineering@mobme.in"] | ||
|
||
s.homepage = | ||
'https://github.com/mobmewireless/origami-pdf' | ||
|
||
|
||
s.add_development_dependency "rspec" | ||
s.add_development_dependency "rake" | ||
s.add_development_dependency "guard" | ||
s.add_development_dependency "guard-rspec" | ||
s.add_development_dependency "simplecov" | ||
s.add_development_dependency "yard" | ||
s.add_development_dependency "ci_reporter" | ||
s.add_development_dependency "simplecov-rcov" | ||
s.add_development_dependency "rdiscount" | ||
s.add_development_dependency "pry" | ||
|
||
s.files = `git ls-files`.split("\n") - ["Gemfile.lock", ".rvmrc"] | ||
s.test_files = `git ls-files -- {spec}/*`.split("\n") | ||
s.require_paths = ["lib"] | ||
|
||
|
||
end |
Binary file not shown.