check_writer 0.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +5 -0
- data/.rspec +1 -0
- data/Appraisals +11 -0
- data/Gemfile +21 -0
- data/Gemfile.lock +57 -0
- data/LICENSE.txt +20 -0
- data/README.rdoc +69 -0
- data/Rakefile +50 -0
- data/VERSION +1 -0
- data/check_writer.gemspec +109 -0
- data/gemfiles/prawn0.12.0.gemfile +15 -0
- data/gemfiles/prawn0.12.0.gemfile.lock +56 -0
- data/gemfiles/prawn0.6.1.gemfile +15 -0
- data/gemfiles/prawn0.6.1.gemfile.lock +57 -0
- data/gemfiles/prawn0.6.3.gemfile +15 -0
- data/gemfiles/prawn0.6.3.gemfile.lock +57 -0
- data/lib/check_writer/check.rb +246 -0
- data/lib/check_writer.rb +9 -0
- data/spec/assets/test-0.12.0.pdf +0 -0
- data/spec/assets/test-0.6.1.pdf +0 -0
- data/spec/assets/test-0.6.3.pdf +0 -0
- data/spec/check_spec.rb +57 -0
- data/spec/spec_helper.rb +33 -0
- data/vendor/GnuMICR-0.30/AUTHORS +3 -0
- data/vendor/GnuMICR-0.30/CHANGELOG +26 -0
- data/vendor/GnuMICR-0.30/COPYING +339 -0
- data/vendor/GnuMICR-0.30/GnuMICR.afm +36 -0
- data/vendor/GnuMICR-0.30/GnuMICR.otf +0 -0
- data/vendor/GnuMICR-0.30/GnuMICR.pfa +215 -0
- data/vendor/GnuMICR-0.30/GnuMICR.pfb +0 -0
- data/vendor/GnuMICR-0.30/GnuMICR.pfm +0 -0
- data/vendor/GnuMICR-0.30/GnuMICR.raw +1189 -0
- data/vendor/GnuMICR-0.30/GnuMICR.ttf +0 -0
- data/vendor/GnuMICR-0.30/INSTALL +27 -0
- data/vendor/GnuMICR-0.30/NEWS +15 -0
- data/vendor/GnuMICR-0.30/README +93 -0
- data/vendor/GnuMICR-0.30/TODO +8 -0
- data/vendor/GnuMICR-0.30/comparison.png +0 -0
- data/vendor/GnuMICR-0.30/symbols.png +0 -0
- data/vendor/GnuMICR-0.30/test.ps +14 -0
- metadata +265 -0
data/.document
ADDED
data/.rspec
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
--color
|
data/Appraisals
ADDED
data/Gemfile
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
source "http://rubygems.org"
|
2
|
+
# Add dependencies required to use your gem here.
|
3
|
+
# Example:
|
4
|
+
# gem "activesupport", ">= 2.3.5"
|
5
|
+
|
6
|
+
gem 'activesupport'
|
7
|
+
gem 'prawn'
|
8
|
+
gem 'linguistics'
|
9
|
+
|
10
|
+
# Add dependencies to develop your gem here.
|
11
|
+
# Include everything needed to run rake, tests, features, etc.
|
12
|
+
group :development do
|
13
|
+
gem 'appraisal'
|
14
|
+
gem 'rake'
|
15
|
+
gem "jeweler", "~> 1.8.3"
|
16
|
+
gem 'appraisal'
|
17
|
+
gem "rspec", "~> 2.8.0"
|
18
|
+
gem "rdoc", "~> 3.12"
|
19
|
+
gem "bundler", "~> 1.0.0"
|
20
|
+
gem "rcov", ">= 0"
|
21
|
+
end
|
data/Gemfile.lock
ADDED
@@ -0,0 +1,57 @@
|
|
1
|
+
GEM
|
2
|
+
remote: http://rubygems.org/
|
3
|
+
specs:
|
4
|
+
activesupport (3.2.1)
|
5
|
+
i18n (~> 0.6)
|
6
|
+
multi_json (~> 1.0)
|
7
|
+
appraisal (0.4.1)
|
8
|
+
bundler
|
9
|
+
rake
|
10
|
+
diff-lcs (1.1.3)
|
11
|
+
git (1.2.5)
|
12
|
+
i18n (0.6.0)
|
13
|
+
jeweler (1.8.3)
|
14
|
+
bundler (~> 1.0)
|
15
|
+
git (>= 1.2.5)
|
16
|
+
rake
|
17
|
+
rdoc
|
18
|
+
json (1.7.1)
|
19
|
+
linguistics (1.0.9)
|
20
|
+
multi_json (1.1.0)
|
21
|
+
prawn (0.6.1)
|
22
|
+
prawn-core (>= 0.6.1, < 0.7)
|
23
|
+
prawn-format (>= 0.2.2, < 0.3)
|
24
|
+
prawn-layout (>= 0.3.1, < 0.4)
|
25
|
+
prawn-security (>= 0.1.1, < 0.2)
|
26
|
+
prawn-core (0.6.3)
|
27
|
+
prawn-format (0.2.3)
|
28
|
+
prawn-core
|
29
|
+
prawn-layout (0.3.2)
|
30
|
+
prawn-security (0.1.1)
|
31
|
+
rake (0.9.2.2)
|
32
|
+
rcov (1.0.0)
|
33
|
+
rdoc (3.12)
|
34
|
+
json (~> 1.4)
|
35
|
+
rspec (2.8.0)
|
36
|
+
rspec-core (~> 2.8.0)
|
37
|
+
rspec-expectations (~> 2.8.0)
|
38
|
+
rspec-mocks (~> 2.8.0)
|
39
|
+
rspec-core (2.8.0)
|
40
|
+
rspec-expectations (2.8.0)
|
41
|
+
diff-lcs (~> 1.1.2)
|
42
|
+
rspec-mocks (2.8.0)
|
43
|
+
|
44
|
+
PLATFORMS
|
45
|
+
ruby
|
46
|
+
|
47
|
+
DEPENDENCIES
|
48
|
+
activesupport
|
49
|
+
appraisal
|
50
|
+
bundler (~> 1.0.0)
|
51
|
+
jeweler (~> 1.8.3)
|
52
|
+
linguistics
|
53
|
+
prawn
|
54
|
+
rake
|
55
|
+
rcov
|
56
|
+
rdoc (~> 3.12)
|
57
|
+
rspec (~> 2.8.0)
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2012 Ryan Winograd
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
@@ -0,0 +1,69 @@
|
|
1
|
+
= check_writer
|
2
|
+
|
3
|
+
A ruby gem to help generate checks in PDF format.
|
4
|
+
|
5
|
+
== Project Status
|
6
|
+
|
7
|
+
A version of this code has been used in a production application for a couple of years and we are finally getting around to extracting the check writing code. As we go through this process, there may be significant changes to the API. You've been warned.
|
8
|
+
|
9
|
+
Currently the only check stock format that is supported is the 1/3 bottom check.
|
10
|
+
You can get some check stock at Amazon[http://www.amazon.com/gp/product/B002HIV1KQ/ref=as_li_qf_sp_asn_il_tl?ie=UTF8&tag=checkwriter-20&linkCode=as2&camp=1789&creative=9325&creativeASIN=B002HIV1KQ], amongst other places.
|
11
|
+
|
12
|
+
== GnuMICR
|
13
|
+
|
14
|
+
check_writer uses GnuMICR (http://www.sandeen.net/GnuMICR) to print the MICR numbers at the bottom of the check. Please read the notes on the GnuMICR site. We have not had any issues using this font (2+ years now), but that is no guarantee.
|
15
|
+
|
16
|
+
== Example
|
17
|
+
|
18
|
+
@check = CheckWriter::Check.new(
|
19
|
+
:number => '12345', # the check number
|
20
|
+
:date => Date.yesterday, # Default: today
|
21
|
+
|
22
|
+
:payee_name => 'John Smith',
|
23
|
+
:payee_address => ['Line 1', 'City, State, Zip'], # Array of as many lines as desired
|
24
|
+
|
25
|
+
:payor_name => 'Payor Name',
|
26
|
+
:payor_address => ['Line 1', 'City, State, Zip'],
|
27
|
+
|
28
|
+
:bank_name => 'Bank of America',
|
29
|
+
:bank_address => ['Line 1', 'City, State, Zip'],
|
30
|
+
:bank_fraction => '12-9876/1234',
|
31
|
+
|
32
|
+
:routing_number => '1234567689',
|
33
|
+
:account_number => '123456789',
|
34
|
+
|
35
|
+
:amount => '1003.23',
|
36
|
+
:memo => 'Memo: Void after 60 days'
|
37
|
+
)
|
38
|
+
|
39
|
+
check.to_pdf # returns PDF file data
|
40
|
+
|
41
|
+
Check out spec/assets to see what the output looks like.
|
42
|
+
|
43
|
+
== Tests
|
44
|
+
|
45
|
+
check_writer uses the appraisal gem to facilitate testing of various versions of prawn. To run the tests using appraisal:
|
46
|
+
|
47
|
+
$ rake appraisal
|
48
|
+
|
49
|
+
Note that if you need modify the Gemfile and need to re-bundle, you will also have to reinstall the appraisal gemfiles as well. To do this, your must first remove the +:development+ group from the Gemfile (i.e., the gems in the development group need to be bundled along with the rest of the gems, so they cannot be isolated in the dev group). Once you have done this, run:
|
50
|
+
|
51
|
+
$ rake appraisal:install
|
52
|
+
|
53
|
+
After appraisal installs its gemfiles, you can revert your Gemfile to as it was before.
|
54
|
+
|
55
|
+
== Contributing to check_writer
|
56
|
+
|
57
|
+
* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
|
58
|
+
* Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
|
59
|
+
* Fork the project.
|
60
|
+
* Start a feature/bugfix branch.
|
61
|
+
* Commit and push until you are happy with your contribution.
|
62
|
+
* Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
|
63
|
+
* Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
|
64
|
+
|
65
|
+
== Copyright
|
66
|
+
|
67
|
+
Copyright (c) 2012 Ryan Winograd. See LICENSE.txt for
|
68
|
+
further details.
|
69
|
+
|
data/Rakefile
ADDED
@@ -0,0 +1,50 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
require 'rubygems'
|
4
|
+
require 'bundler'
|
5
|
+
begin
|
6
|
+
Bundler.setup(:default, :development)
|
7
|
+
rescue Bundler::BundlerError => e
|
8
|
+
$stderr.puts e.message
|
9
|
+
$stderr.puts "Run `bundle install` to install missing gems"
|
10
|
+
exit e.status_code
|
11
|
+
end
|
12
|
+
require 'rake'
|
13
|
+
require 'appraisal'
|
14
|
+
|
15
|
+
require 'jeweler'
|
16
|
+
Jeweler::Tasks.new do |gem|
|
17
|
+
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
|
18
|
+
gem.name = "check_writer"
|
19
|
+
gem.homepage = "http://github.com/rylwin/check_writer"
|
20
|
+
gem.license = "MIT"
|
21
|
+
gem.summary = %Q{Generate PDF checks}
|
22
|
+
gem.description = %Q{Ruby library for generating PDF checks that you can take to the bank}
|
23
|
+
gem.email = "ryan@thewinograds.com"
|
24
|
+
gem.authors = ["Ryan Winograd"]
|
25
|
+
# dependencies defined in Gemfile
|
26
|
+
end
|
27
|
+
Jeweler::RubygemsDotOrgTasks.new
|
28
|
+
|
29
|
+
require 'rspec/core'
|
30
|
+
require 'rspec/core/rake_task'
|
31
|
+
RSpec::Core::RakeTask.new(:spec) do |spec|
|
32
|
+
spec.pattern = FileList['spec/**/*_spec.rb']
|
33
|
+
end
|
34
|
+
|
35
|
+
RSpec::Core::RakeTask.new(:rcov) do |spec|
|
36
|
+
spec.pattern = 'spec/**/*_spec.rb'
|
37
|
+
spec.rcov = true
|
38
|
+
end
|
39
|
+
|
40
|
+
task :default => :spec
|
41
|
+
|
42
|
+
require 'rdoc/task'
|
43
|
+
Rake::RDocTask.new do |rdoc|
|
44
|
+
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
45
|
+
|
46
|
+
rdoc.rdoc_dir = 'rdoc'
|
47
|
+
rdoc.title = "check_writer #{version}"
|
48
|
+
rdoc.rdoc_files.include('README*')
|
49
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
50
|
+
end
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.0.0
|
@@ -0,0 +1,109 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = "check_writer"
|
8
|
+
s.version = "0.0.0"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Ryan Winograd"]
|
12
|
+
s.date = "2012-05-08"
|
13
|
+
s.description = "Ruby library for generating PDF checks that you can take to the bank"
|
14
|
+
s.email = "ryan@thewinograds.com"
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"LICENSE.txt",
|
17
|
+
"README.rdoc"
|
18
|
+
]
|
19
|
+
s.files = [
|
20
|
+
".document",
|
21
|
+
".rspec",
|
22
|
+
"Appraisals",
|
23
|
+
"Gemfile",
|
24
|
+
"Gemfile.lock",
|
25
|
+
"LICENSE.txt",
|
26
|
+
"README.rdoc",
|
27
|
+
"Rakefile",
|
28
|
+
"VERSION",
|
29
|
+
"check_writer.gemspec",
|
30
|
+
"gemfiles/prawn0.12.0.gemfile",
|
31
|
+
"gemfiles/prawn0.12.0.gemfile.lock",
|
32
|
+
"gemfiles/prawn0.6.1.gemfile",
|
33
|
+
"gemfiles/prawn0.6.1.gemfile.lock",
|
34
|
+
"gemfiles/prawn0.6.3.gemfile",
|
35
|
+
"gemfiles/prawn0.6.3.gemfile.lock",
|
36
|
+
"lib/check_writer.rb",
|
37
|
+
"lib/check_writer/check.rb",
|
38
|
+
"spec/assets/test-0.12.0.pdf",
|
39
|
+
"spec/assets/test-0.6.1.pdf",
|
40
|
+
"spec/assets/test-0.6.3.pdf",
|
41
|
+
"spec/check_spec.rb",
|
42
|
+
"spec/spec_helper.rb",
|
43
|
+
"vendor/GnuMICR-0.30/AUTHORS",
|
44
|
+
"vendor/GnuMICR-0.30/CHANGELOG",
|
45
|
+
"vendor/GnuMICR-0.30/COPYING",
|
46
|
+
"vendor/GnuMICR-0.30/GnuMICR.afm",
|
47
|
+
"vendor/GnuMICR-0.30/GnuMICR.otf",
|
48
|
+
"vendor/GnuMICR-0.30/GnuMICR.pfa",
|
49
|
+
"vendor/GnuMICR-0.30/GnuMICR.pfb",
|
50
|
+
"vendor/GnuMICR-0.30/GnuMICR.pfm",
|
51
|
+
"vendor/GnuMICR-0.30/GnuMICR.raw",
|
52
|
+
"vendor/GnuMICR-0.30/GnuMICR.ttf",
|
53
|
+
"vendor/GnuMICR-0.30/INSTALL",
|
54
|
+
"vendor/GnuMICR-0.30/NEWS",
|
55
|
+
"vendor/GnuMICR-0.30/README",
|
56
|
+
"vendor/GnuMICR-0.30/TODO",
|
57
|
+
"vendor/GnuMICR-0.30/comparison.png",
|
58
|
+
"vendor/GnuMICR-0.30/symbols.png",
|
59
|
+
"vendor/GnuMICR-0.30/test.ps"
|
60
|
+
]
|
61
|
+
s.homepage = "http://github.com/rylwin/check_writer"
|
62
|
+
s.licenses = ["MIT"]
|
63
|
+
s.require_paths = ["lib"]
|
64
|
+
s.rubygems_version = "1.8.15"
|
65
|
+
s.summary = "Generate PDF checks"
|
66
|
+
|
67
|
+
if s.respond_to? :specification_version then
|
68
|
+
s.specification_version = 3
|
69
|
+
|
70
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
71
|
+
s.add_runtime_dependency(%q<activesupport>, [">= 0"])
|
72
|
+
s.add_runtime_dependency(%q<prawn>, [">= 0"])
|
73
|
+
s.add_runtime_dependency(%q<linguistics>, [">= 0"])
|
74
|
+
s.add_development_dependency(%q<appraisal>, [">= 0"])
|
75
|
+
s.add_development_dependency(%q<rake>, [">= 0"])
|
76
|
+
s.add_development_dependency(%q<jeweler>, ["~> 1.8.3"])
|
77
|
+
s.add_development_dependency(%q<appraisal>, [">= 0"])
|
78
|
+
s.add_development_dependency(%q<rspec>, ["~> 2.8.0"])
|
79
|
+
s.add_development_dependency(%q<rdoc>, ["~> 3.12"])
|
80
|
+
s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
|
81
|
+
s.add_development_dependency(%q<rcov>, [">= 0"])
|
82
|
+
else
|
83
|
+
s.add_dependency(%q<activesupport>, [">= 0"])
|
84
|
+
s.add_dependency(%q<prawn>, [">= 0"])
|
85
|
+
s.add_dependency(%q<linguistics>, [">= 0"])
|
86
|
+
s.add_dependency(%q<appraisal>, [">= 0"])
|
87
|
+
s.add_dependency(%q<rake>, [">= 0"])
|
88
|
+
s.add_dependency(%q<jeweler>, ["~> 1.8.3"])
|
89
|
+
s.add_dependency(%q<appraisal>, [">= 0"])
|
90
|
+
s.add_dependency(%q<rspec>, ["~> 2.8.0"])
|
91
|
+
s.add_dependency(%q<rdoc>, ["~> 3.12"])
|
92
|
+
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
|
93
|
+
s.add_dependency(%q<rcov>, [">= 0"])
|
94
|
+
end
|
95
|
+
else
|
96
|
+
s.add_dependency(%q<activesupport>, [">= 0"])
|
97
|
+
s.add_dependency(%q<prawn>, [">= 0"])
|
98
|
+
s.add_dependency(%q<linguistics>, [">= 0"])
|
99
|
+
s.add_dependency(%q<appraisal>, [">= 0"])
|
100
|
+
s.add_dependency(%q<rake>, [">= 0"])
|
101
|
+
s.add_dependency(%q<jeweler>, ["~> 1.8.3"])
|
102
|
+
s.add_dependency(%q<appraisal>, [">= 0"])
|
103
|
+
s.add_dependency(%q<rspec>, ["~> 2.8.0"])
|
104
|
+
s.add_dependency(%q<rdoc>, ["~> 3.12"])
|
105
|
+
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
|
106
|
+
s.add_dependency(%q<rcov>, [">= 0"])
|
107
|
+
end
|
108
|
+
end
|
109
|
+
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# This file was generated by Appraisal
|
2
|
+
|
3
|
+
source "http://rubygems.org"
|
4
|
+
|
5
|
+
gem "activesupport"
|
6
|
+
gem "linguistics"
|
7
|
+
gem "rake"
|
8
|
+
gem "jeweler", "~> 1.8.3"
|
9
|
+
gem "appraisal"
|
10
|
+
gem "rspec", "~> 2.8.0"
|
11
|
+
gem "rdoc", "~> 3.12"
|
12
|
+
gem "bundler", "~> 1.0.0"
|
13
|
+
gem "rcov", ">= 0"
|
14
|
+
gem "prawn", "0.12.0"
|
15
|
+
|
@@ -0,0 +1,56 @@
|
|
1
|
+
GEM
|
2
|
+
remote: http://rubygems.org/
|
3
|
+
specs:
|
4
|
+
Ascii85 (1.0.1)
|
5
|
+
activesupport (3.2.3)
|
6
|
+
i18n (~> 0.6)
|
7
|
+
multi_json (~> 1.0)
|
8
|
+
appraisal (0.4.1)
|
9
|
+
bundler
|
10
|
+
rake
|
11
|
+
diff-lcs (1.1.3)
|
12
|
+
git (1.2.5)
|
13
|
+
i18n (0.6.0)
|
14
|
+
jeweler (1.8.3)
|
15
|
+
bundler (~> 1.0)
|
16
|
+
git (>= 1.2.5)
|
17
|
+
rake
|
18
|
+
rdoc
|
19
|
+
json (1.7.1)
|
20
|
+
linguistics (1.0.9)
|
21
|
+
multi_json (1.3.4)
|
22
|
+
pdf-reader (1.1.0)
|
23
|
+
Ascii85 (~> 1.0.0)
|
24
|
+
ruby-rc4
|
25
|
+
prawn (0.12.0)
|
26
|
+
pdf-reader (>= 0.9.0)
|
27
|
+
ttfunk (~> 1.0.2)
|
28
|
+
rake (0.9.2.2)
|
29
|
+
rcov (1.0.0)
|
30
|
+
rdoc (3.12)
|
31
|
+
json (~> 1.4)
|
32
|
+
rspec (2.8.0)
|
33
|
+
rspec-core (~> 2.8.0)
|
34
|
+
rspec-expectations (~> 2.8.0)
|
35
|
+
rspec-mocks (~> 2.8.0)
|
36
|
+
rspec-core (2.8.0)
|
37
|
+
rspec-expectations (2.8.0)
|
38
|
+
diff-lcs (~> 1.1.2)
|
39
|
+
rspec-mocks (2.8.0)
|
40
|
+
ruby-rc4 (0.1.5)
|
41
|
+
ttfunk (1.0.3)
|
42
|
+
|
43
|
+
PLATFORMS
|
44
|
+
ruby
|
45
|
+
|
46
|
+
DEPENDENCIES
|
47
|
+
activesupport
|
48
|
+
appraisal
|
49
|
+
bundler (~> 1.0.0)
|
50
|
+
jeweler (~> 1.8.3)
|
51
|
+
linguistics
|
52
|
+
prawn (= 0.12.0)
|
53
|
+
rake
|
54
|
+
rcov
|
55
|
+
rdoc (~> 3.12)
|
56
|
+
rspec (~> 2.8.0)
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# This file was generated by Appraisal
|
2
|
+
|
3
|
+
source "http://rubygems.org"
|
4
|
+
|
5
|
+
gem "activesupport"
|
6
|
+
gem "linguistics"
|
7
|
+
gem "rake"
|
8
|
+
gem "jeweler", "~> 1.8.3"
|
9
|
+
gem "appraisal"
|
10
|
+
gem "rspec", "~> 2.8.0"
|
11
|
+
gem "rdoc", "~> 3.12"
|
12
|
+
gem "bundler", "~> 1.0.0"
|
13
|
+
gem "rcov", ">= 0"
|
14
|
+
gem "prawn", "0.6.1"
|
15
|
+
|
@@ -0,0 +1,57 @@
|
|
1
|
+
GEM
|
2
|
+
remote: http://rubygems.org/
|
3
|
+
specs:
|
4
|
+
activesupport (3.2.3)
|
5
|
+
i18n (~> 0.6)
|
6
|
+
multi_json (~> 1.0)
|
7
|
+
appraisal (0.4.1)
|
8
|
+
bundler
|
9
|
+
rake
|
10
|
+
diff-lcs (1.1.3)
|
11
|
+
git (1.2.5)
|
12
|
+
i18n (0.6.0)
|
13
|
+
jeweler (1.8.3)
|
14
|
+
bundler (~> 1.0)
|
15
|
+
git (>= 1.2.5)
|
16
|
+
rake
|
17
|
+
rdoc
|
18
|
+
json (1.7.1)
|
19
|
+
linguistics (1.0.9)
|
20
|
+
multi_json (1.3.4)
|
21
|
+
prawn (0.6.1)
|
22
|
+
prawn-core (>= 0.6.1, < 0.7)
|
23
|
+
prawn-format (>= 0.2.2, < 0.3)
|
24
|
+
prawn-layout (>= 0.3.1, < 0.4)
|
25
|
+
prawn-security (>= 0.1.1, < 0.2)
|
26
|
+
prawn-core (0.6.3)
|
27
|
+
prawn-format (0.2.3)
|
28
|
+
prawn-core
|
29
|
+
prawn-layout (0.3.2)
|
30
|
+
prawn-security (0.1.1)
|
31
|
+
rake (0.9.2.2)
|
32
|
+
rcov (1.0.0)
|
33
|
+
rdoc (3.12)
|
34
|
+
json (~> 1.4)
|
35
|
+
rspec (2.8.0)
|
36
|
+
rspec-core (~> 2.8.0)
|
37
|
+
rspec-expectations (~> 2.8.0)
|
38
|
+
rspec-mocks (~> 2.8.0)
|
39
|
+
rspec-core (2.8.0)
|
40
|
+
rspec-expectations (2.8.0)
|
41
|
+
diff-lcs (~> 1.1.2)
|
42
|
+
rspec-mocks (2.8.0)
|
43
|
+
|
44
|
+
PLATFORMS
|
45
|
+
ruby
|
46
|
+
|
47
|
+
DEPENDENCIES
|
48
|
+
activesupport
|
49
|
+
appraisal
|
50
|
+
bundler (~> 1.0.0)
|
51
|
+
jeweler (~> 1.8.3)
|
52
|
+
linguistics
|
53
|
+
prawn (= 0.6.1)
|
54
|
+
rake
|
55
|
+
rcov
|
56
|
+
rdoc (~> 3.12)
|
57
|
+
rspec (~> 2.8.0)
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# This file was generated by Appraisal
|
2
|
+
|
3
|
+
source "http://rubygems.org"
|
4
|
+
|
5
|
+
gem "activesupport"
|
6
|
+
gem "linguistics"
|
7
|
+
gem "rake"
|
8
|
+
gem "jeweler", "~> 1.8.3"
|
9
|
+
gem "appraisal"
|
10
|
+
gem "rspec", "~> 2.8.0"
|
11
|
+
gem "rdoc", "~> 3.12"
|
12
|
+
gem "bundler", "~> 1.0.0"
|
13
|
+
gem "rcov", ">= 0"
|
14
|
+
gem "prawn", "0.6.3"
|
15
|
+
|
@@ -0,0 +1,57 @@
|
|
1
|
+
GEM
|
2
|
+
remote: http://rubygems.org/
|
3
|
+
specs:
|
4
|
+
activesupport (3.2.3)
|
5
|
+
i18n (~> 0.6)
|
6
|
+
multi_json (~> 1.0)
|
7
|
+
appraisal (0.4.1)
|
8
|
+
bundler
|
9
|
+
rake
|
10
|
+
diff-lcs (1.1.3)
|
11
|
+
git (1.2.5)
|
12
|
+
i18n (0.6.0)
|
13
|
+
jeweler (1.8.3)
|
14
|
+
bundler (~> 1.0)
|
15
|
+
git (>= 1.2.5)
|
16
|
+
rake
|
17
|
+
rdoc
|
18
|
+
json (1.7.1)
|
19
|
+
linguistics (1.0.9)
|
20
|
+
multi_json (1.3.4)
|
21
|
+
prawn (0.6.3)
|
22
|
+
prawn-core (>= 0.6.3, < 0.7)
|
23
|
+
prawn-format (>= 0.2.3, < 0.3)
|
24
|
+
prawn-layout (>= 0.3.2, < 0.4)
|
25
|
+
prawn-security (>= 0.1.1, < 0.2)
|
26
|
+
prawn-core (0.6.3)
|
27
|
+
prawn-format (0.2.3)
|
28
|
+
prawn-core
|
29
|
+
prawn-layout (0.3.2)
|
30
|
+
prawn-security (0.1.1)
|
31
|
+
rake (0.9.2.2)
|
32
|
+
rcov (1.0.0)
|
33
|
+
rdoc (3.12)
|
34
|
+
json (~> 1.4)
|
35
|
+
rspec (2.8.0)
|
36
|
+
rspec-core (~> 2.8.0)
|
37
|
+
rspec-expectations (~> 2.8.0)
|
38
|
+
rspec-mocks (~> 2.8.0)
|
39
|
+
rspec-core (2.8.0)
|
40
|
+
rspec-expectations (2.8.0)
|
41
|
+
diff-lcs (~> 1.1.2)
|
42
|
+
rspec-mocks (2.8.0)
|
43
|
+
|
44
|
+
PLATFORMS
|
45
|
+
ruby
|
46
|
+
|
47
|
+
DEPENDENCIES
|
48
|
+
activesupport
|
49
|
+
appraisal
|
50
|
+
bundler (~> 1.0.0)
|
51
|
+
jeweler (~> 1.8.3)
|
52
|
+
linguistics
|
53
|
+
prawn (= 0.6.3)
|
54
|
+
rake
|
55
|
+
rcov
|
56
|
+
rdoc (~> 3.12)
|
57
|
+
rspec (~> 2.8.0)
|