forked from Katello/bastion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbastion.gemspec
26 lines (21 loc) · 1.01 KB
/
bastion.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
$LOAD_PATH.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "bastion/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "bastion"
s.version = Bastion::VERSION
s.authors = ["Eric D Helms", "Walden Raines"]
s.email = ["ericdhelms@gmail.com", "walden@redhat.com"]
s.homepage = "http://www.github.com/Katello/bastion"
s.summary = "UI library of AngularJS based components for Foreman"
s.description = "Bastion provides a UI library of AngularJS based components designed " \
"to integrate and work with Foreman."
s.files = Dir["{app,config,lib,vendor,grunt}/**/*"] +
["Rakefile", "README.md", "Gruntfile.js", "package.json",
"bower.json", "bastion.js", "eslint.yaml", ".eslintignore",
"LICENSE", ".jshintrc"]
s.test_files = Dir["test/**/*"]
s.add_dependency "angular-rails-templates", "0.1.2"
s.add_development_dependency "uglifier"
end