This repository was archived by the owner on Dec 22, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathwcc.gemspec
More file actions
57 lines (48 loc) · 1.42 KB
/
wcc.gemspec
File metadata and controls
57 lines (48 loc) · 1.42 KB
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
47
48
49
50
51
52
53
54
55
56
57
$:.push File.expand_path("../lib", __FILE__)
require 'wcc/version'
Gem::Specification.new do |s|
s.name = "wcc"
s.version = WCC::VERSION
s.summary = "web change checker"
s.description = "wcc tracks changes of websites and notifies you by email and as of version 2.0 via XMPP/Jabber too."
s.author = "Christian Nicolai"
s.email = "chrnicolai@gmail.com"
s.license = "Apache License Version 2.0"
s.homepage = "https://github.com/cmur2/wcc"
s.rubyforge_project = "wcc"
s.files = [
"assets/conf.yml",
"assets/filter.d/and.rb",
"assets/filter.d/changes_of.rb",
"assets/filter.d/matches.rb",
"assets/filter.d/not.rb",
"assets/filter.d/or.rb",
"assets/filter.d/rel_changes_of.rb",
"assets/template.d/mail.alt.erb",
"assets/template.d/mail-body.html.erb",
"assets/template.d/mail-body.plain.erb",
"assets/template.d/mail.plain.erb",
"bin/wcc",
"bin/wcc-init",
"bin/wcc-upgrade",
"doc/Filters.md",
"lib/wcc/diff.rb",
"lib/wcc/filter.rb",
"lib/wcc/mail.rb",
"lib/wcc/site.rb",
"lib/wcc/syslog.rb",
"lib/wcc/version.rb",
"lib/wcc.rb",
"LICENSE",
"README.md"
]
s.extra_rdoc_files = [
"doc/Filters.md",
"README.md"
]
s.require_paths = ["lib"]
s.executables = ["wcc", "wcc-init", "wcc-upgrade"]
s.post_install_message = "NOTE: Remember to `wcc-upgrade` your conf.yml directory!"
s.add_runtime_dependency "htmlentities", '~> 4.3'
s.add_runtime_dependency "diff-lcs", '~> 1.1'
end