-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathprowler.gemspec
47 lines (42 loc) · 1.22 KB
/
prowler.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "prowler/version"
Gem::Specification.new do |s|
s.name = "prowler"
s.version = Prowler::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Andrew White"]
s.email = ["[email protected]"]
s.homepage = %q{http://github.com/pixeltrix/prowler/}
s.summary = %q{Provides access to the Prowl API (http://prowlapp.com).}
s.description = <<-EOF
A plugin/gem that provides access to the Prowl API (http://prowlapp.com).
Works with Rails 2 or 3 as well as any other Ruby web frameworks or in
your own scripts.
EOF
s.files = [
".gemtest",
"CHANGELOG",
"MIT-LICENSE",
"README.md",
"Rakefile",
"VERSION",
"init.rb",
"install.rb",
"lib/prowler.rb",
"lib/prowler/application.rb",
"lib/prowler/configuration.rb",
"lib/prowler/delayed_job.rb",
"lib/prowler/priority.rb",
"lib/prowler/railtie.rb",
"lib/prowler/response.rb",
"lib/prowler/tasks.rb",
"lib/prowler/version.rb",
"prowler.gemspec",
"tasks/prowler.rake",
"test/config/cacert.pem",
"test/prowler_test.rb"
]
s.test_files = ["test/prowler_test.rb"]
s.require_paths = ["lib"]
end