Skip to content

Commit

Permalink
[Gem] Fix ommited libraries in gemspec, causing loading error
Browse files Browse the repository at this point in the history
  • Loading branch information
meuble committed Aug 6, 2018
1 parent 907e46e commit a565567
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions ziltoid.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = 'ziltoid'
s.version = '1.0.1'
s.version = '1.0.2'
s.date = '2018-08-06'
s.summary = "Ziltoid, crontab based monitoring system"
s.description = <<EOF
Expand All @@ -17,12 +17,13 @@ EOF

s.authors = ["Stéphane Akkaoui", "Vincent Gabou"]
s.email = ['sakkaoui@gmail.com', "vincent.gabou@gmail.com>"]
s.files = ["lib/ziltoid.rb"]
s.files = Dir.glob(File.join("lib", "**", "*.rb"))
s.homepage = 'https://github.com/meuble/ziltoid'
s.license = 'WTFPL'
s.metadata = {
"bug_tracker_uri" => "https://github.com/meuble/ziltoid/issues",
"homepage_uri" => "https://github.com/meuble/ziltoid",
"source_code_uri" => "https://github.com/meuble/ziltoid"
}
s.add_runtime_dependency 'pony', "~> 1.11"
end

0 comments on commit a565567

Please sign in to comment.