netprint 0.1.1 → 0.3.4
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 +7 -0
- data/.travis.yml +7 -0
- data/README.md +16 -1
- data/bin/netprint +5 -0
- data/lib/netprint.rb +0 -2
- data/lib/netprint/agent.rb +30 -17
- data/lib/netprint/constants.rb +2 -2
- data/lib/netprint/options.rb +7 -7
- data/lib/netprint/version.rb +1 -1
- data/netprint.gemspec +2 -4
- data/spec/{foo.pdf → fixtures/foo.pdf} +0 -0
- data/spec/fixtures/list_empty.html +366 -0
- data/spec/fixtures/list_error.html +372 -0
- data/spec/fixtures/list_processed.html +372 -0
- data/spec/fixtures/list_processing.html +372 -0
- data/spec/fixtures/login.html +192 -0
- data/spec/fixtures/upload.html +420 -0
- data/spec/fixtures/upload_error.html +416 -0
- data/spec/{ → fixtures/}/343/201/202/343/201/204/343/201/206/343/201/210/343/201/212.pdf +0 -0
- data/spec/netprint/agent_spec.rb +95 -24
- data/spec/netprint/options_spec.rb +44 -44
- data/spec/spec_helper.rb +10 -3
- metadata +40 -85
- data/lib/netprint/url.rb +0 -35
- data/spec/error.html +0 -13
- data/spec/list.html +0 -13
- data/spec/netprint/url_spec.rb +0 -26
- data/spec/upload.html +0 -372
File without changes
|
data/spec/netprint/agent_spec.rb
CHANGED
@@ -7,59 +7,130 @@ describe Agent do
|
|
7
7
|
before do
|
8
8
|
@agent = Agent.new('user_id', 'password')
|
9
9
|
|
10
|
-
stub_request(:get, 'https://www.printing.ne.jp/
|
11
|
-
to_return(
|
10
|
+
stub_request(:get, 'https://www.printing.ne.jp/usr/web/NPCM0010.seam').
|
11
|
+
to_return(read_fixture_file('login.html'))
|
12
|
+
|
13
|
+
stub_request(:post, 'https://www.printing.ne.jp/usr/web/NPCM0010.seam').
|
14
|
+
with(body: {
|
15
|
+
'NPCM0010' => 'NPCM0010',
|
16
|
+
'NPCM0010:login-btn' => 'ログイン',
|
17
|
+
'NPCM0010:userIdOrMailads-txt' => 'user_id',
|
18
|
+
'NPCM0010:password-pwd' => 'password',
|
19
|
+
'controlParamKey' => 'foo',
|
20
|
+
'javax.faces.ViewState' => 'bar'
|
21
|
+
}
|
22
|
+
).
|
23
|
+
to_return(read_fixture_file('list_empty.html'))
|
12
24
|
end
|
13
25
|
|
14
|
-
it '
|
15
|
-
@agent.
|
26
|
+
it 'logins' do
|
27
|
+
expect(@agent).not_to be_login
|
16
28
|
|
17
29
|
@agent.login
|
18
30
|
|
19
|
-
@agent.
|
31
|
+
expect(@agent).to be_login
|
20
32
|
end
|
21
33
|
|
22
34
|
shared_examples_for '#upload' do
|
23
|
-
it '
|
24
|
-
stub_request(:
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
35
|
+
it 'uploads' do
|
36
|
+
stub_request(:post, 'https://www.printing.ne.jp/usr/web/auth/NPFL0010.seam').
|
37
|
+
with(body: {
|
38
|
+
'NPFL0010' => 'NPFL0010',
|
39
|
+
'display-max-rows' => '10',
|
40
|
+
'create-document' => '',
|
41
|
+
'controlParamKey' => 'xxx',
|
42
|
+
'javax.faces.ViewState' => 'yyy'
|
43
|
+
}
|
44
|
+
).
|
45
|
+
to_return(read_fixture_file('upload.html'))
|
46
|
+
|
47
|
+
stub_request(:post, 'https://www.printing.ne.jp/usr/web/auth/NPFL0020.seam').
|
48
|
+
to_return(read_fixture_file('list_processing.html'))
|
49
|
+
|
50
|
+
stub_request(:post, 'https://www.printing.ne.jp/usr/web/auth/NPFL0010.seam').
|
51
|
+
with(body: {
|
52
|
+
'NPFL0010' => 'NPFL0010',
|
53
|
+
'display-max-rows' => '10',
|
54
|
+
'reload' => '',
|
55
|
+
'controlParamKey' => 'xxx',
|
56
|
+
'javax.faces.ViewState' => 'yyy'
|
57
|
+
}
|
58
|
+
).
|
59
|
+
to_return(read_fixture_file('list_processed.html'))
|
30
60
|
|
31
61
|
filename = File.expand_path(pdf_filename)
|
32
62
|
@agent.login
|
33
63
|
|
34
64
|
code = @agent.upload(filename)
|
35
|
-
code.
|
65
|
+
expect(code).to match(/^[0-9A-Z]{8}$/)
|
36
66
|
end
|
37
67
|
|
38
|
-
it '
|
39
|
-
stub_request(:
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
68
|
+
it 'handles registration error' do
|
69
|
+
stub_request(:post, 'https://www.printing.ne.jp/usr/web/auth/NPFL0010.seam').
|
70
|
+
with(body: {
|
71
|
+
'NPFL0010' => 'NPFL0010',
|
72
|
+
'display-max-rows' => '10',
|
73
|
+
'create-document' => '',
|
74
|
+
'controlParamKey' => 'xxx',
|
75
|
+
'javax.faces.ViewState' => 'yyy'
|
76
|
+
}
|
77
|
+
).
|
78
|
+
to_return(read_fixture_file('upload.html'))
|
79
|
+
|
80
|
+
stub_request(:post, 'https://www.printing.ne.jp/usr/web/auth/NPFL0020.seam').
|
81
|
+
to_return(read_fixture_file('list_processing.html'))
|
82
|
+
|
83
|
+
stub_request(:post, 'https://www.printing.ne.jp/usr/web/auth/NPFL0010.seam').
|
84
|
+
with(body: {
|
85
|
+
'NPFL0010' => 'NPFL0010',
|
86
|
+
'display-max-rows' => '10',
|
87
|
+
'reload' => '',
|
88
|
+
'controlParamKey' => 'xxx',
|
89
|
+
'javax.faces.ViewState' => 'yyy'
|
90
|
+
}
|
91
|
+
).
|
92
|
+
to_return(read_fixture_file('list_error.html'))
|
45
93
|
|
46
94
|
filename = File.expand_path(pdf_filename)
|
47
95
|
@agent.login
|
48
96
|
|
49
|
-
|
97
|
+
expect {
|
50
98
|
@agent.upload(filename)
|
51
|
-
}.
|
99
|
+
}.to raise_error(RegistrationError)
|
100
|
+
end
|
101
|
+
|
102
|
+
it 'handles upload error' do
|
103
|
+
stub_request(:post, 'https://www.printing.ne.jp/usr/web/auth/NPFL0010.seam').
|
104
|
+
with(body: {
|
105
|
+
'NPFL0010' => 'NPFL0010',
|
106
|
+
'display-max-rows' => '10',
|
107
|
+
'create-document' => '',
|
108
|
+
'controlParamKey' => 'xxx',
|
109
|
+
'javax.faces.ViewState' => 'yyy'
|
110
|
+
}
|
111
|
+
).
|
112
|
+
to_return(read_fixture_file('upload.html'))
|
113
|
+
|
114
|
+
stub_request(:post, 'https://www.printing.ne.jp/usr/web/auth/NPFL0020.seam').
|
115
|
+
to_return(read_fixture_file('upload_error.html'))
|
116
|
+
|
117
|
+
filename = File.expand_path(pdf_filename)
|
118
|
+
@agent.login
|
119
|
+
|
120
|
+
expect {
|
121
|
+
@agent.upload(filename)
|
122
|
+
}.to raise_error(UploadError, 'error message')
|
52
123
|
end
|
53
124
|
end
|
54
125
|
|
55
126
|
context 'filename is ASCII only' do
|
56
|
-
let(:pdf_filename) {
|
127
|
+
let(:pdf_filename) { fixture_file('foo.pdf') }
|
57
128
|
|
58
129
|
it_should_behave_like '#upload'
|
59
130
|
end
|
60
131
|
|
61
132
|
context 'filename has non-ASCII characters' do
|
62
|
-
let(:pdf_filename) {
|
133
|
+
let(:pdf_filename) { fixture_file('あいうえお.pdf') }
|
63
134
|
|
64
135
|
it_should_behave_like '#upload'
|
65
136
|
end
|
@@ -13,13 +13,13 @@ describe Options do
|
|
13
13
|
context 'default' do
|
14
14
|
it do
|
15
15
|
form = Object.new
|
16
|
-
form.
|
17
|
-
form.
|
18
|
-
form.
|
19
|
-
form.
|
20
|
-
form.
|
16
|
+
expect(form).to be_checked('yus-size', PAPERSIZE::A4)
|
17
|
+
expect(form).to be_checked('iro-cl', COLOR::BW)
|
18
|
+
expect(form).to be_checked('yyk-type-cl', CODE_TYPE::ALNUM)
|
19
|
+
expect(form).to be_checked('pin-num-set-fl', '0')
|
20
|
+
expect(form).to be_checked('notice-onoff', '0')
|
21
21
|
|
22
|
-
form.
|
22
|
+
expect(form).not_to receive(:[]=)
|
23
23
|
|
24
24
|
subject.apply(form)
|
25
25
|
end
|
@@ -30,13 +30,13 @@ describe Options do
|
|
30
30
|
|
31
31
|
it do
|
32
32
|
form = Object.new
|
33
|
-
form.
|
34
|
-
form.
|
35
|
-
form.
|
36
|
-
form.
|
37
|
-
form.
|
33
|
+
expect(form).to be_checked('yus-size', PAPERSIZE::A4)
|
34
|
+
expect(form).to be_checked('iro-cl', COLOR::BW)
|
35
|
+
expect(form).to be_checked('yyk-type-cl', CODE_TYPE::ALNUM)
|
36
|
+
expect(form).to be_checked('pin-num-set-fl', '1')
|
37
|
+
expect(form).to be_checked('notice-onoff', '0')
|
38
38
|
|
39
|
-
form.
|
39
|
+
expect(form).to receive(:[]=).with('pin-no', '0123')
|
40
40
|
|
41
41
|
subject.apply(form)
|
42
42
|
end
|
@@ -47,13 +47,13 @@ describe Options do
|
|
47
47
|
|
48
48
|
it do
|
49
49
|
form = Object.new
|
50
|
-
form.
|
51
|
-
form.
|
52
|
-
form.
|
53
|
-
form.
|
54
|
-
form.
|
50
|
+
expect(form).to be_checked('yus-size', PAPERSIZE::A4)
|
51
|
+
expect(form).to be_checked('iro-cl', COLOR::BW)
|
52
|
+
expect(form).to be_checked('yyk-type-cl', CODE_TYPE::ALNUM)
|
53
|
+
expect(form).to be_checked('pin-num-set-fl', '0')
|
54
|
+
expect(form).to be_checked('notice-onoff', '1')
|
55
55
|
|
56
|
-
form.
|
56
|
+
expect(form).to receive(:[]=).with('mail-adr-to-tx', 'test@example.com')
|
57
57
|
|
58
58
|
subject.apply(form)
|
59
59
|
end
|
@@ -64,13 +64,13 @@ describe Options do
|
|
64
64
|
|
65
65
|
it do
|
66
66
|
form = Object.new
|
67
|
-
form.
|
68
|
-
form.
|
69
|
-
form.
|
70
|
-
form.
|
71
|
-
form.
|
67
|
+
expect(form).to be_checked('yus-size', PAPERSIZE::B4)
|
68
|
+
expect(form).to be_checked('iro-cl', COLOR::BW)
|
69
|
+
expect(form).to be_checked('yyk-type-cl', CODE_TYPE::ALNUM)
|
70
|
+
expect(form).to be_checked('pin-num-set-fl', '0')
|
71
|
+
expect(form).to be_checked('notice-onoff', '0')
|
72
72
|
|
73
|
-
form.
|
73
|
+
expect(form).not_to receive(:[]=)
|
74
74
|
|
75
75
|
subject.apply(form)
|
76
76
|
end
|
@@ -81,13 +81,13 @@ describe Options do
|
|
81
81
|
|
82
82
|
it do
|
83
83
|
form = Object.new
|
84
|
-
form.
|
85
|
-
form.
|
86
|
-
form.
|
87
|
-
form.
|
88
|
-
form.
|
84
|
+
expect(form).to be_checked('yus-size', PAPERSIZE::A4)
|
85
|
+
expect(form).to be_checked('iro-cl', COLOR::COLOR)
|
86
|
+
expect(form).to be_checked('yyk-type-cl', CODE_TYPE::ALNUM)
|
87
|
+
expect(form).to be_checked('pin-num-set-fl', '0')
|
88
|
+
expect(form).to be_checked('notice-onoff', '0')
|
89
89
|
|
90
|
-
form.
|
90
|
+
expect(form).not_to receive(:[]=)
|
91
91
|
|
92
92
|
subject.apply(form)
|
93
93
|
end
|
@@ -98,13 +98,13 @@ describe Options do
|
|
98
98
|
|
99
99
|
it do
|
100
100
|
form = Object.new
|
101
|
-
form.
|
102
|
-
form.
|
103
|
-
form.
|
104
|
-
form.
|
105
|
-
form.
|
101
|
+
expect(form).to be_checked('yus-size', PAPERSIZE::A4)
|
102
|
+
expect(form).to be_checked('iro-cl', COLOR::BW)
|
103
|
+
expect(form).to be_checked('yyk-type-cl', CODE_TYPE::NUM)
|
104
|
+
expect(form).to be_checked('pin-num-set-fl', '0')
|
105
|
+
expect(form).to be_checked('notice-onoff', '0')
|
106
106
|
|
107
|
-
form.
|
107
|
+
expect(form).not_to receive(:[]=)
|
108
108
|
|
109
109
|
subject.apply(form)
|
110
110
|
end
|
@@ -123,14 +123,14 @@ describe Options do
|
|
123
123
|
|
124
124
|
it do
|
125
125
|
form = Object.new
|
126
|
-
form.
|
127
|
-
form.
|
128
|
-
form.
|
129
|
-
form.
|
130
|
-
form.
|
131
|
-
|
132
|
-
form.
|
133
|
-
form.
|
126
|
+
expect(form).to be_checked('yus-size', PAPERSIZE::B5)
|
127
|
+
expect(form).to be_checked('iro-cl', COLOR::SELECT_WHEN_PRINT)
|
128
|
+
expect(form).to be_checked('yyk-type-cl', CODE_TYPE::NUM)
|
129
|
+
expect(form).to be_checked('pin-num-set-fl', '1')
|
130
|
+
expect(form).to be_checked('notice-onoff', '1')
|
131
|
+
|
132
|
+
expect(form).to receive(:[]=).with('pin-no', '0987')
|
133
|
+
expect(form).to receive(:[]=).with('mail-adr-to-tx', 'foo@example.com')
|
134
134
|
|
135
135
|
subject.apply(form)
|
136
136
|
end
|
data/spec/spec_helper.rb
CHANGED
@@ -9,7 +9,6 @@ require 'webmock/rspec'
|
|
9
9
|
#
|
10
10
|
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
11
11
|
RSpec.configure do |config|
|
12
|
-
config.treat_symbols_as_metadata_keys_with_true_values = true
|
13
12
|
config.run_all_when_everything_filtered = true
|
14
13
|
config.filter_run :focus
|
15
14
|
|
@@ -18,13 +17,21 @@ RSpec.configure do |config|
|
|
18
17
|
# the seed, which is printed after each run.
|
19
18
|
# --seed 1234
|
20
19
|
config.order = 'random'
|
20
|
+
|
21
|
+
def fixture_file(name)
|
22
|
+
File.expand_path(File.dirname(__FILE__) + '/fixtures/' + name)
|
23
|
+
end
|
24
|
+
|
25
|
+
def read_fixture_file(name)
|
26
|
+
open(fixture_file(name)).read
|
27
|
+
end
|
21
28
|
end
|
22
29
|
|
23
30
|
RSpec::Matchers.define :be_checked do |name, value|
|
24
31
|
match do |form|
|
25
32
|
radiobutton = Object.new
|
26
|
-
radiobutton.
|
33
|
+
expect(radiobutton).to receive(:check)
|
27
34
|
|
28
|
-
form.
|
35
|
+
expect(form).to receive(:radiobutton_with).with(:name => name, :value => value).and_return(radiobutton)
|
29
36
|
end
|
30
37
|
end
|
metadata
CHANGED
@@ -1,84 +1,60 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: netprint
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
5
|
-
prerelease:
|
4
|
+
version: 0.3.4
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- youpy
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 2020-09-02 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: rspec
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
16
|
requirements:
|
19
|
-
- - ~>
|
17
|
+
- - "~>"
|
20
18
|
- !ruby/object:Gem::Version
|
21
|
-
version:
|
19
|
+
version: 3.9.0
|
22
20
|
type: :development
|
23
21
|
prerelease: false
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
23
|
requirements:
|
27
|
-
- - ~>
|
24
|
+
- - "~>"
|
28
25
|
- !ruby/object:Gem::Version
|
29
|
-
version:
|
26
|
+
version: 3.9.0
|
30
27
|
- !ruby/object:Gem::Dependency
|
31
28
|
name: rake
|
32
29
|
requirement: !ruby/object:Gem::Requirement
|
33
|
-
none: false
|
34
30
|
requirements:
|
35
|
-
- -
|
31
|
+
- - ">="
|
36
32
|
- !ruby/object:Gem::Version
|
37
|
-
version:
|
38
|
-
type: :development
|
39
|
-
prerelease: false
|
40
|
-
version_requirements: !ruby/object:Gem::Requirement
|
41
|
-
none: false
|
42
|
-
requirements:
|
43
|
-
- - ! '>='
|
44
|
-
- !ruby/object:Gem::Version
|
45
|
-
version: '0'
|
46
|
-
- !ruby/object:Gem::Dependency
|
47
|
-
name: netprint
|
48
|
-
requirement: !ruby/object:Gem::Requirement
|
49
|
-
none: false
|
50
|
-
requirements:
|
51
|
-
- - ! '>='
|
52
|
-
- !ruby/object:Gem::Version
|
53
|
-
version: '0'
|
33
|
+
version: 12.3.3
|
54
34
|
type: :development
|
55
35
|
prerelease: false
|
56
36
|
version_requirements: !ruby/object:Gem::Requirement
|
57
|
-
none: false
|
58
37
|
requirements:
|
59
|
-
- -
|
38
|
+
- - ">="
|
60
39
|
- !ruby/object:Gem::Version
|
61
|
-
version:
|
40
|
+
version: 12.3.3
|
62
41
|
- !ruby/object:Gem::Dependency
|
63
42
|
name: webmock
|
64
43
|
requirement: !ruby/object:Gem::Requirement
|
65
|
-
none: false
|
66
44
|
requirements:
|
67
|
-
- -
|
45
|
+
- - ">="
|
68
46
|
- !ruby/object:Gem::Version
|
69
47
|
version: '0'
|
70
48
|
type: :development
|
71
49
|
prerelease: false
|
72
50
|
version_requirements: !ruby/object:Gem::Requirement
|
73
|
-
none: false
|
74
51
|
requirements:
|
75
|
-
- -
|
52
|
+
- - ">="
|
76
53
|
- !ruby/object:Gem::Version
|
77
54
|
version: '0'
|
78
55
|
- !ruby/object:Gem::Dependency
|
79
56
|
name: mechanize
|
80
57
|
requirement: !ruby/object:Gem::Requirement
|
81
|
-
none: false
|
82
58
|
requirements:
|
83
59
|
- - '='
|
84
60
|
- !ruby/object:Gem::Version
|
@@ -86,41 +62,22 @@ dependencies:
|
|
86
62
|
type: :runtime
|
87
63
|
prerelease: false
|
88
64
|
version_requirements: !ruby/object:Gem::Requirement
|
89
|
-
none: false
|
90
65
|
requirements:
|
91
66
|
- - '='
|
92
67
|
- !ruby/object:Gem::Version
|
93
68
|
version: 2.7.0
|
94
|
-
- !ruby/object:Gem::Dependency
|
95
|
-
name: addressable
|
96
|
-
requirement: !ruby/object:Gem::Requirement
|
97
|
-
none: false
|
98
|
-
requirements:
|
99
|
-
- - ! '>='
|
100
|
-
- !ruby/object:Gem::Version
|
101
|
-
version: '0'
|
102
|
-
type: :runtime
|
103
|
-
prerelease: false
|
104
|
-
version_requirements: !ruby/object:Gem::Requirement
|
105
|
-
none: false
|
106
|
-
requirements:
|
107
|
-
- - ! '>='
|
108
|
-
- !ruby/object:Gem::Version
|
109
|
-
version: '0'
|
110
69
|
- !ruby/object:Gem::Dependency
|
111
70
|
name: docopt
|
112
71
|
requirement: !ruby/object:Gem::Requirement
|
113
|
-
none: false
|
114
72
|
requirements:
|
115
|
-
- -
|
73
|
+
- - ">="
|
116
74
|
- !ruby/object:Gem::Version
|
117
75
|
version: '0'
|
118
76
|
type: :runtime
|
119
77
|
prerelease: false
|
120
78
|
version_requirements: !ruby/object:Gem::Requirement
|
121
|
-
none: false
|
122
79
|
requirements:
|
123
|
-
- -
|
80
|
+
- - ">="
|
124
81
|
- !ruby/object:Gem::Version
|
125
82
|
version: '0'
|
126
83
|
description: A library to upload file to netprint
|
@@ -131,8 +88,9 @@ executables:
|
|
131
88
|
extensions: []
|
132
89
|
extra_rdoc_files: []
|
133
90
|
files:
|
134
|
-
- .gitignore
|
135
|
-
- .rspec
|
91
|
+
- ".gitignore"
|
92
|
+
- ".rspec"
|
93
|
+
- ".travis.yml"
|
136
94
|
- Gemfile
|
137
95
|
- LICENSE
|
138
96
|
- README.md
|
@@ -143,55 +101,52 @@ files:
|
|
143
101
|
- lib/netprint/constants.rb
|
144
102
|
- lib/netprint/error.rb
|
145
103
|
- lib/netprint/options.rb
|
146
|
-
- lib/netprint/url.rb
|
147
104
|
- lib/netprint/version.rb
|
148
105
|
- netprint.gemspec
|
149
|
-
- spec/
|
150
|
-
- spec/
|
151
|
-
- spec/
|
106
|
+
- spec/fixtures/foo.pdf
|
107
|
+
- spec/fixtures/list_empty.html
|
108
|
+
- spec/fixtures/list_error.html
|
109
|
+
- spec/fixtures/list_processed.html
|
110
|
+
- spec/fixtures/list_processing.html
|
111
|
+
- spec/fixtures/login.html
|
112
|
+
- spec/fixtures/upload.html
|
113
|
+
- spec/fixtures/upload_error.html
|
114
|
+
- spec/fixtures/あいうえお.pdf
|
152
115
|
- spec/netprint/agent_spec.rb
|
153
116
|
- spec/netprint/options_spec.rb
|
154
|
-
- spec/netprint/url_spec.rb
|
155
117
|
- spec/spec_helper.rb
|
156
|
-
- spec/upload.html
|
157
|
-
- spec/あいうえお.pdf
|
158
118
|
homepage: ''
|
159
119
|
licenses: []
|
120
|
+
metadata: {}
|
160
121
|
post_install_message:
|
161
122
|
rdoc_options: []
|
162
123
|
require_paths:
|
163
124
|
- lib
|
164
125
|
required_ruby_version: !ruby/object:Gem::Requirement
|
165
|
-
none: false
|
166
126
|
requirements:
|
167
|
-
- -
|
127
|
+
- - ">="
|
168
128
|
- !ruby/object:Gem::Version
|
169
129
|
version: '0'
|
170
|
-
segments:
|
171
|
-
- 0
|
172
|
-
hash: -3601402640496916733
|
173
130
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
174
|
-
none: false
|
175
131
|
requirements:
|
176
|
-
- -
|
132
|
+
- - ">="
|
177
133
|
- !ruby/object:Gem::Version
|
178
134
|
version: '0'
|
179
|
-
segments:
|
180
|
-
- 0
|
181
|
-
hash: -3601402640496916733
|
182
135
|
requirements: []
|
183
|
-
|
184
|
-
rubygems_version: 1.8.25
|
136
|
+
rubygems_version: 3.1.2
|
185
137
|
signing_key:
|
186
|
-
specification_version:
|
138
|
+
specification_version: 4
|
187
139
|
summary: A library to upload file to netprint
|
188
140
|
test_files:
|
189
|
-
- spec/
|
190
|
-
- spec/
|
191
|
-
- spec/
|
141
|
+
- spec/fixtures/foo.pdf
|
142
|
+
- spec/fixtures/list_empty.html
|
143
|
+
- spec/fixtures/list_error.html
|
144
|
+
- spec/fixtures/list_processed.html
|
145
|
+
- spec/fixtures/list_processing.html
|
146
|
+
- spec/fixtures/login.html
|
147
|
+
- spec/fixtures/upload.html
|
148
|
+
- spec/fixtures/upload_error.html
|
149
|
+
- spec/fixtures/あいうえお.pdf
|
192
150
|
- spec/netprint/agent_spec.rb
|
193
151
|
- spec/netprint/options_spec.rb
|
194
|
-
- spec/netprint/url_spec.rb
|
195
152
|
- spec/spec_helper.rb
|
196
|
-
- spec/upload.html
|
197
|
-
- spec/あいうえお.pdf
|