-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshare-linuxfr.gemspec
More file actions
20 lines (19 loc) · 923 Bytes
/
share-linuxfr.gemspec
File metadata and controls
20 lines (19 loc) · 923 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require "./lib/share-linuxfr/version.rb"
Gem::Specification.new do |s|
s.name = "share-linuxfr"
s.version = ShareLinuxFr::VERSION
s.date = Time.now.utc.strftime("%Y-%m-%d")
s.homepage = "https://github.com/linuxfrorg/share-LinuxFr.org"
s.authors = "Bruno Michel"
s.email = "nono@linuxfr.org"
s.description = "Share the publication of news on social networks"
s.summary = "When a news is published on LinuxFr.org, share the link on twitter, identi.ca and google buzz"
s.extra_rdoc_files = %w(README.md)
s.files = Dir["LICENSE", "README.md", "Gemfile", "bin/*", "lib/**/*.rb", "config/*"]
s.executables = ["share-linuxfr"]
s.require_paths = ["lib"]
s.add_dependency "daemons", "~>1.1"
s.add_dependency "redis", "~>3.0"
s.add_dependency "yajl-ruby", "~>1.2"
s.add_dependency "twitter", "~>5.13"
end