-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathrise-cli.gemspec
26 lines (24 loc) · 923 Bytes
/
rise-cli.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
# Put all our core library files in the require path
$LOAD_PATH.unshift(File.expand_path(File.join(File.dirname(__FILE__), 'lib')))
require 'core'
Gem::Specification.new do |s|
s.name = Rise::Constants::NAME
s.version = Rise::Constants::VERSION
s.executables = %w[rise]
s.date = Time.now.strftime('%Y-%m-%d')
s.summary = 'Simple serverless website deployment'
s.authors = Rise::Constants::AUTHORS
s.email = Rise::Constants::EMAIL
s.files = `git ls-files`.split($/).reject { |file|
file =~ /^server|^spec|^pkg/
}
s.homepage = 'http://rubygems.org/gems/rise-cli'
s.license = 'MIT'
s.add_runtime_dependency 'clipboard'
s.add_runtime_dependency 'http'
s.add_runtime_dependency 'paint'
s.add_runtime_dependency 'rex-text'
s.add_runtime_dependency 'whirly'
s.add_runtime_dependency 'os'
s.add_runtime_dependency 'credit_card_validations'
end