-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathcloudwatchlogger.gemspec
27 lines (21 loc) · 993 Bytes
/
cloudwatchlogger.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
dir = File.dirname(__FILE__)
require File.expand_path(File.join(dir, 'lib', 'cloudwatchlogger', 'version'))
Gem::Specification.new do |s|
s.name = 'cloudwatchlogger'
s.version = CloudWatchLogger::VERSION
s.date = Time.now
s.summary = 'Amazon CloudWatch Logs compatiable logger for ruby.'
s.description = 'Logger => CloudWatchLogs'
s.license = "MIT"
s.authors = ["Zane Shannon"]
s.email = '[email protected]'
s.homepage = 'http://github.com/zshannon/cloudwatchlogger'
s.files = %w{ README.md Gemfile LICENSE cloudwatchlogger.gemspec } + Dir["lib/**/*.rb"]
s.require_paths = ['lib']
s.test_files = Dir["spec/**/*.rb"]
s.required_ruby_version = '>= 1.8.6'
s.required_rubygems_version = '>= 1.3.6'
s.add_runtime_dependency 'uuid', '~> 2'
s.add_runtime_dependency 'multi_json', '~> 1'
s.add_runtime_dependency 'aws-sdk-cloudwatchlogs', '~> 1'
end