Skip to content

Commit 02fc02d

Browse files
author
Matt Binsfeld
committed
posted license in all files
1 parent 89461c7 commit 02fc02d

7 files changed

+34
-0
lines changed

ReportDocx.rb

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# "THE BEER-WARE LICENSE"
2+
# As long as you retain this notice you can do whatever you want with this
3+
# stuff. If you meet an employee from Windward some day, and you think this
4+
# stuff is worth it, you can buy them a beer in return. Windward Studios
5+
16
require_relative 'report'
27
class ReportDocx < Report
38
def initialize uri, template, report = nil

ReportHtml.rb

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# "THE BEER-WARE LICENSE"
2+
# As long as you retain this notice you can do whatever you want with this
3+
# stuff. If you meet an employee from Windward some day, and you think this
4+
# stuff is worth it, you can buy them a beer in return. Windward Studios
5+
16
require_relative 'report'
27
class ReportHtml < Report
38
def initialize uri, template, report = nil

ReportPdf.rb

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# "THE BEER-WARE LICENSE"
2+
# As long as you retain this notice you can do whatever you want with this
3+
# stuff. If you meet an employee from Windward some day, and you think this
4+
# stuff is worth it, you can buy them a beer in return. Windward Studios
5+
16
require_relative 'report'
27
class ReportPdf < Report
38
def initialize uri, template, report = nil

ReportPptx.rb

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# "THE BEER-WARE LICENSE"
2+
# As long as you retain this notice you can do whatever you want with this
3+
# stuff. If you meet an employee from Windward some day, and you think this
4+
# stuff is worth it, you can buy them a beer in return. Windward Studios
5+
16
require_relative 'report'
27
class ReportPptx < Report
38
def initialize uri, template, report = nil

ReportRtf.rb

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# "THE BEER-WARE LICENSE"
2+
# As long as you retain this notice you can do whatever you want with this
3+
# stuff. If you meet an employee from Windward some day, and you think this
4+
# stuff is worth it, you can buy them a beer in return. Windward Studios
5+
6+
17
require_relative 'report'
28
class ReportRtf < Report
39
def initialize uri, template, report = nil

TemplateVariable.rb

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# "THE BEER-WARE LICENSE"
2+
# As long as you retain this notice you can do whatever you want with this
3+
# stuff. If you meet an employee from Windward some day, and you think this
4+
# stuff is worth it, you can buy them a beer in return. Windward Studios
15

26
class TemplateVariable
37
attr_accessor :Name

Version.rb

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# "THE BEER-WARE LICENSE"
2+
# As long as you retain this notice you can do whatever you want with this
3+
# stuff. If you meet an employee from Windward some day, and you think this
4+
# stuff is worth it, you can buy them a beer in return. Windward Studios
15

26
class Version
37
attr_accessor :ServiceVersion

0 commit comments

Comments
 (0)