forked from voormedia/ec2-snapshot
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathec2-snapshot.gemspec
More file actions
21 lines (18 loc) · 902 Bytes
/
Copy pathec2-snapshot.gemspec
File metadata and controls
21 lines (18 loc) · 902 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/ec2_snapshot/version", __FILE__)
Gem::Specification.new do |gem|
gem.name = "ec2-snapshot"
gem.authors = ["Mattijs Van Druenen"]
gem.email = ["m.vandruenen@voormedia.com"]
gem.description = %q{EC2 EBS Volume Snapshotting}
gem.summary = %q{Create consistent snapshots of EBS volumes on Amazon EC2 instances.}
gem.homepage = "https://github.com/voormedia/ec2-snapshot"
gem.add_runtime_dependency "right_aws"
gem.add_development_dependency "minitest", "~> 2.8.0"
gem.add_development_dependency "mocha"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.require_paths = ["lib"]
gem.version = Ec2Snapshot::VERSION
end