mork 0.1.1 → 0.1.2
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.
- checksums.yaml +4 -4
- data/README.md +4 -0
- data/lib/mork/version.rb +1 -1
- data/mork.gemspec +2 -2
- metadata +16 -9
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 30bb83507bfa6f93ba79b2b672422248c047f6a0
|
|
4
|
+
data.tar.gz: 3f8cedc05b7608e01a48bd19aede37f7bfe60d78
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8210a5f9978440dc365cd23053e74a188e973f1f4daa69dc62f27b2eda39ca0e7be94ea85ea20fa218b2c01cecfe3969e8614aedd9d53cd52e0a958cd373edef
|
|
7
|
+
data.tar.gz: 131a80caa409088c511ec7e539d40f82bf9f07dc9accd55e165ff111434cb7be32b134770a71a0d2686fb124fb9e843461faf9cbf9535842132c10ce7b57aca8
|
data/README.md
CHANGED
|
@@ -23,6 +23,10 @@ Mork is a low-level library, and very much work in progress. It is not, and will
|
|
|
23
23
|
|
|
24
24
|
## Getting started
|
|
25
25
|
|
|
26
|
+
First, make sure that ImageMagick is installed in your system. On the Mac, `brew` is the preferred package manager:
|
|
27
|
+
|
|
28
|
+
brew install imagemagick
|
|
29
|
+
|
|
26
30
|
To create a small ruby project that uses Mork, `cd` into a directory of choice, then execute the following shell commands:
|
|
27
31
|
|
|
28
32
|
```
|
data/lib/mork/version.rb
CHANGED
data/mork.gemspec
CHANGED
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
|
|
|
10
10
|
s.email = ["giuseppe.bertini@gmail.com"]
|
|
11
11
|
s.homepage = 'https://github.com/giuseb/mork'
|
|
12
12
|
s.summary = %q{Optical mark recognition of multiple-choice tests and surveys}
|
|
13
|
-
s.description = %q{Optical mark recognition of multiple-choice tests and surveys}
|
|
13
|
+
s.description = %q{Optical mark recognition of multiple-choice tests and surveys. Low-level ruby library to generate response sheets in PDF form and to automatically score manually filled-out forms.}
|
|
14
14
|
|
|
15
15
|
s.files = `git ls-files`.split("\n")
|
|
16
16
|
s.test_files = `git ls-files -- {spec}/*`.split("\n")
|
|
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
|
|
|
20
20
|
# dependencies:
|
|
21
21
|
s.add_dependency 'narray', '~> 0.6'
|
|
22
22
|
s.add_dependency 'rmagick', '~> 2.13'
|
|
23
|
-
s.
|
|
23
|
+
s.add_runtime_dependency 'prawn', '~> 1.3', '>= 1.3.0'
|
|
24
24
|
s.add_development_dependency 'rake', '~> 10.3'
|
|
25
25
|
s.add_development_dependency 'rspec', '~> 3.1'
|
|
26
26
|
s.add_development_dependency 'guard', '~> 2.6'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mork
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Giuseppe Bertini
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-09-
|
|
11
|
+
date: 2014-09-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: narray
|
|
@@ -42,16 +42,22 @@ dependencies:
|
|
|
42
42
|
name: prawn
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
|
-
- -
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '1.3'
|
|
48
|
+
- - ">="
|
|
46
49
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: 1.
|
|
50
|
+
version: 1.3.0
|
|
48
51
|
type: :runtime
|
|
49
52
|
prerelease: false
|
|
50
53
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
54
|
requirements:
|
|
52
|
-
- -
|
|
55
|
+
- - "~>"
|
|
56
|
+
- !ruby/object:Gem::Version
|
|
57
|
+
version: '1.3'
|
|
58
|
+
- - ">="
|
|
53
59
|
- !ruby/object:Gem::Version
|
|
54
|
-
version: 1.
|
|
60
|
+
version: 1.3.0
|
|
55
61
|
- !ruby/object:Gem::Dependency
|
|
56
62
|
name: rake
|
|
57
63
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -136,7 +142,9 @@ dependencies:
|
|
|
136
142
|
- - "~>"
|
|
137
143
|
- !ruby/object:Gem::Version
|
|
138
144
|
version: '1.2'
|
|
139
|
-
description: Optical mark recognition of multiple-choice tests and surveys
|
|
145
|
+
description: Optical mark recognition of multiple-choice tests and surveys. Low-level
|
|
146
|
+
ruby library to generate response sheets in PDF form and to automatically score
|
|
147
|
+
manually filled-out forms.
|
|
140
148
|
email:
|
|
141
149
|
- giuseppe.bertini@gmail.com
|
|
142
150
|
executables: []
|
|
@@ -204,9 +212,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
204
212
|
version: '0'
|
|
205
213
|
requirements: []
|
|
206
214
|
rubyforge_project:
|
|
207
|
-
rubygems_version: 2.
|
|
215
|
+
rubygems_version: 2.2.2
|
|
208
216
|
signing_key:
|
|
209
217
|
specification_version: 4
|
|
210
218
|
summary: Optical mark recognition of multiple-choice tests and surveys
|
|
211
219
|
test_files: []
|
|
212
|
-
has_rdoc:
|