forked from celesteking/cpanel-backup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cpanelbackup.gemspec
27 lines (22 loc) · 984 Bytes
/
cpanelbackup.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "cpanelbackup/version"
Gem::Specification.new do |s|
s.name = "cpanel-backup"
s.version = CPanelBackup::Version.string
s.authors = CPanelBackup::Version.authors
s.email = %w([email protected])
s.homepage = "http://dev.fused.net"
s.summary = %q{CPanel Backup helper}
s.description = %q{CPanel Backup helper that helps you backup & restore CPanel accounts}
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- {sbin,bin}/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.bindir = %w{sbin}
s.add_development_dependency 'ruby-debug'
s.add_development_dependency 'shoulda-context'
s.add_development_dependency 'yard'
s.add_runtime_dependency 'cpanel-helper', '~> 0.1.0'
s.add_runtime_dependency 'activesupport', '>= 3.0.8'
end