-
Notifications
You must be signed in to change notification settings - Fork 5
/
school_declare.gemspec
25 lines (21 loc) · 1.06 KB
/
school_declare.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
$:.push File.expand_path("lib", __dir__)
# Maintain your gem's version:
require_relative "lib/declare/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.name = "school_declare"
spec.version = Declare::VERSION
spec.authors = ["Ben Greenberg"]
spec.email = ["[email protected]"]
spec.homepage = "https://github.com/bencgreenberg/school-health-declaration-automation"
spec.summary = "Automate the sending of health declaration forms for Israeli schools."
spec.description = "A gem to help send the daily health forms for Israeli schools."
spec.license = "MIT"
spec.executables << 'declare'
spec.files = Dir["{lib}/**/*", "LICENSE.txt", "README.md", "{bin}/**/*"]
spec.metadata = {
'homepage' => 'https://github.com/bencgreenberg/school-health-declaration-automation',
'source_code_uri' => 'https://github.com/bencgreenberg/school-health-declaration-automation',
'bug_tracker_uri' => 'https://github.com/bencgreenberg/school-health-declaration-automation/issues'
}
end