Files
baclight/app/services/sample_card/jasper_pdf_generator.rb
T

17 lines
286 B
Ruby
Raw Normal View History

module SampleCard
class JasperPdfGenerator
def initialize(jasper_url)
@jasper_url = jasper_url
end
def call
response = HTTParty.get(@jasper_url)
CombinePDF.parse(response.body)
end
end
end