-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfeed2email.gemspec
More file actions
53 lines (42 loc) · 2.01 KB
/
feed2email.gemspec
File metadata and controls
53 lines (42 loc) · 2.01 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
require File.expand_path('../lib/feed2email/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = 'feed2email'
gem.version = Feed2Email::VERSION
gem.author = 'Aggelos Orfanakos'
gem.email = 'me@agorf.gr'
gem.homepage = 'https://github.com/agorf/feed2email'
gem.summary = 'RSS/Atom feed updates in your email'
gem.license = 'MIT'
gem.files = Dir['lib/**/*.rb', 'bin/*', '*.md', 'LICENSE.txt']
gem.executables = Dir['bin/*'].map {|f| File.basename(f) }
gem.require_paths = ['lib']
gem.add_dependency 'feedzirra', '~> 0.7.0'
gem.add_dependency 'mail', '~> 2.5.4'
gem.add_dependency 'sanitize', '~> 2.1.0'
gem.add_dependency 'reverse_markdown', '~> 0.6.0'
gem.add_dependency 'thor', '~> 0.19.1'
gem.add_dependency 'nokogiri', '~> 1.6.5'
gem.add_dependency 'sequel', '~> 4.18.0'
gem.add_dependency 'sqlite3', '~> 1.3.10'
gem.add_development_dependency 'rspec', '~> 2.14.1'
gem.add_development_dependency 'fuubar'
gem.add_development_dependency 'pry'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'travis-lint'
gem.add_development_dependency 'aruba', '~> 0.6.2'
gem.post_install_message = %{\
* Since version 0.9.0, the default send method is `file` which writes emails to
a file under `~/Mail/`. To change it, edit your config file (`feed2email
config`) and set `send_method` to `sendmail` or `smtp`.
* Since version 0.9.0, SQLite (instead of YAML) is used to store the feed list
and the entry history. Please issue `feed2email-migrate` to migrate your data
before running feed2email.
* Since version 0.8.0, a command-line interface is available. Running feed2email
without any arguments will display some help text. To have feed2email process
your feed list, issue `feed2email process`
Don't forget to update any cron jobs too!
* Since version 0.6.0, `sender` is a required config option. Please update your
config file (`feed2email config`) to set it to an email address to send email
from.
}
end