-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathforte.gemspec
More file actions
23 lines (19 loc) · 863 Bytes
/
forte.gemspec
File metadata and controls
23 lines (19 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
$:.unshift File.expand_path("../lib", __FILE__)
require 'forte/version'
Gem::Specification.new do |s|
s.name = 'forte'
s.description = 'Create an authorized_keys file for a shared shell account from a repository of public key files '
s.homepage = 'https://github.com/yock/forte'
s.version = Forte::VERSION
s.summary = 'Create an authorized_keys file for a shared shell account from a repository of public key files'
s.platform = Gem::Platform::RUBY
s.authors = ['Michael Yockey', 'Ryan Cromwell']
s.email = ['[email protected]', '[email protected]']
s.license = 'MIT'
root_path = File.dirname(__FILE__)
lib_files = Dir.chdir(root_path) { Dir.glob("lib/**/{*,.*}") }
s.files = [lib_files, 'bin/forte'].flatten
s.executables = ['forte']
s.add_runtime_dependency 'thor', '~> 1.2'
s.add_runtime_dependency 'git', '~> 1.11'
end