forked from acquia/logstream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogstream.gemspec
29 lines (22 loc) · 940 Bytes
/
logstream.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
libpath = File.join(File.dirname(__FILE__), 'lib')
$LOAD_PATH.unshift(libpath) unless $LOAD_PATH.include?(libpath)
Gem::Specification.new do |s|
s.name = "logstream"
s.version = "0.0.6"
s.date = Time.now.strftime("%Y-%m-%d")
s.author = "Barry Jaspan"
s.email = "[email protected]"
s.homepage = "https://github.com/acquia/logstream"
s.licenses = ['MIT']
s.summary = "Acquia Logstream tools and library"
s.description = "Logstream is an Acquia service for streaming logs from Acquia Cloud."
s.files = Dir["[A-Z]*", "{bin,etc,lib,test}/**/*"]
s.bindir = "bin"
s.executables = Dir["bin/*"].map { |f| File.basename(f) }.select { |f| f =~ /^[\w\-]+$/ }
s.test_files = Dir["test/**/*"]
s.has_rdoc = false
s.add_runtime_dependency('faye-websocket', ['~> 0.8.0'])
s.add_runtime_dependency('json', ['>= 1.7.7'])
s.add_runtime_dependency('thor', ['~> 0.19.1'])
s.required_ruby_version = '>= 1.9.3'
end