File tree 6 files changed +13
-11
lines changed
6 files changed +13
-11
lines changed Original file line number Diff line number Diff line change 1
1
hpa-ruby
2
2
=====
3
3
4
- This is a Ruby wrapper for [ HTML PDF API] ( http ://htmlpdfapi.com) - [ Documentation] ( http ://htmlpdfapi.com/documentation)
4
+ This is a Ruby wrapper for [ HTML PDF API] ( https ://htmlpdfapi.com) - [ Documentation] ( https ://htmlpdfapi.com/documentation)
5
5
6
6
HTML PDF API is a service that allows you to convert HTML to PDF using standard technologies (HTML, CSS and JavaScript).
7
7
@@ -40,7 +40,7 @@ Then you have to set your API token:
40
40
41
41
Set API base (endpoint and version)
42
42
43
- Hpa.api_base = "htmlpdfapi.com/api/v1" # default
43
+ Hpa.api_base = "https:// htmlpdfapi.com/api/v1" # default
44
44
45
45
46
46
Assets
109
109
110
110
From url:
111
111
112
- response = Hpa::Pdf.create(:url => "http ://htmlpdfapi.com/examples/example.html")
112
+ response = Hpa::Pdf.create(:url => "https ://htmlpdfapi.com/examples/example.html")
113
113
114
114
From HTML string:
115
115
Original file line number Diff line number Diff line change @@ -18,9 +18,10 @@ Gem::Specification.new do |spec|
18
18
spec . test_files = spec . files . grep ( %r{^(test|spec|features)/} )
19
19
spec . require_paths = [ "lib" ]
20
20
21
- spec . add_dependency "rest-client"
21
+ spec . add_dependency "rest-client" , '~> 1.7'
22
22
23
23
spec . add_development_dependency "bundler" , "~> 1.5"
24
- spec . add_development_dependency "rake"
25
- spec . add_development_dependency "minitest"
24
+ spec . add_development_dependency "rake" , '~> 10.3'
25
+ spec . add_development_dependency "minitest" , '~> 5.4'
26
26
end
27
+
Original file line number Diff line number Diff line change 15
15
module Hpa
16
16
17
17
@@api_token = nil
18
- @@api_base = "htmlpdfapi.com/api/v1"
18
+ @@api_base = "https:// htmlpdfapi.com/api/v1"
19
19
20
20
def self . api_token
21
21
@@api_token
Original file line number Diff line number Diff line change 1
1
module Hpa
2
2
3
- VERSION = "0.0.1 "
3
+ VERSION = "0.0.2 "
4
4
5
5
end
Original file line number Diff line number Diff line change 1
1
require 'test_helper'
2
2
3
- class HpaTest < MiniTest :: Unit :: TestCase
3
+ class HpaTest < Minitest :: Test
4
4
5
5
6
6
def setup
@@ -60,7 +60,7 @@ def test_create_pdf_from_string
60
60
61
61
62
62
def test_create_pdf_from_url
63
- response = Hpa ::Pdf . create ( :url => "http ://htmlpdfapi.com/examples/example.html" )
63
+ response = Hpa ::Pdf . create ( :url => "https ://htmlpdfapi.com/examples/example.html" )
64
64
65
65
assert_equal 200 , response . code
66
66
assert_equal "%PDF" , response . body [ 0 , 4 ]
Original file line number Diff line number Diff line change 1
1
require 'hpa'
2
+ require 'minitest'
2
3
require 'minitest/unit'
3
4
require 'minitest/autorun'
4
5
require 'minitest/pride'
5
6
6
7
7
- class MiniTest :: Unit :: TestCase
8
+ class Minitest :: Test
8
9
9
10
Hpa . api_token = ENV [ 'api_token' ]
10
11
Hpa . api_base = ENV [ 'api_base' ] if ENV [ 'api_base' ]
You can’t perform that action at this time.
0 commit comments