-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrboss.gemspec
More file actions
23 lines (19 loc) · 824 Bytes
/
rboss.gemspec
File metadata and controls
23 lines (19 loc) · 824 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'rboss/version'
Gem::Specification.new do |gem|
gem.name = 'rboss'
gem.version = RBoss::VERSION
gem.authors = %w(Ataxexe)
gem.email = %w(ataxexe@gmail.com)
gem.homepage = 'https://github.com/ataxexe/rboss'
gem.summary = %q{Manage your JBoss from your command line}
gem.description = %q{Rboss gives you a set of command line tools to use
jboss-cli wrapped by an elegant interface}
gem.rubyforge_project = 'rboss'
gem.add_dependency 'yummi', '>= 0.9.3'
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.require_paths = %w(lib)
end