Skip to content

Commit ad8a012

Browse files
committed
set api base_url to 'https://htmlpdfapi.com/api/v1', fixed minitest warning, bumped version to 0.0.2, updated readme, updated dependencies
1 parent 9749103 commit ad8a012

File tree

6 files changed

+13
-11
lines changed

6 files changed

+13
-11
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
hpa-ruby
22
=====
33

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)
55

66
HTML PDF API is a service that allows you to convert HTML to PDF using standard technologies (HTML, CSS and JavaScript).
77

@@ -40,7 +40,7 @@ Then you have to set your API token:
4040

4141
Set API base (endpoint and version)
4242

43-
Hpa.api_base = "htmlpdfapi.com/api/v1" # default
43+
Hpa.api_base = "https://htmlpdfapi.com/api/v1" # default
4444

4545

4646
Assets
@@ -109,7 +109,7 @@ PDFs
109109

110110
From url:
111111

112-
response = Hpa::Pdf.create(:url => "http://htmlpdfapi.com/examples/example.html")
112+
response = Hpa::Pdf.create(:url => "https://htmlpdfapi.com/examples/example.html")
113113

114114
From HTML string:
115115

hpa.gemspec

+4-3
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,10 @@ Gem::Specification.new do |spec|
1818
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
1919
spec.require_paths = ["lib"]
2020

21-
spec.add_dependency "rest-client"
21+
spec.add_dependency "rest-client", '~> 1.7'
2222

2323
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'
2626
end
27+

lib/hpa.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
module Hpa
1616

1717
@@api_token = nil
18-
@@api_base = "htmlpdfapi.com/api/v1"
18+
@@api_base = "https://htmlpdfapi.com/api/v1"
1919

2020
def self.api_token
2121
@@api_token

lib/hpa/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Hpa
22

3-
VERSION = "0.0.1"
3+
VERSION = "0.0.2"
44

55
end

test/hpa_test.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
require 'test_helper'
22

3-
class HpaTest < MiniTest::Unit::TestCase
3+
class HpaTest < Minitest::Test
44

55

66
def setup
@@ -60,7 +60,7 @@ def test_create_pdf_from_string
6060

6161

6262
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")
6464

6565
assert_equal 200, response.code
6666
assert_equal "%PDF", response.body[0, 4]

test/test_helper.rb

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
require 'hpa'
2+
require 'minitest'
23
require 'minitest/unit'
34
require 'minitest/autorun'
45
require 'minitest/pride'
56

67

7-
class MiniTest::Unit::TestCase
8+
class Minitest::Test
89

910
Hpa.api_token = ENV['api_token']
1011
Hpa.api_base = ENV['api_base'] if ENV['api_base']

0 commit comments

Comments
 (0)