Project

General

Profile

Download (1.02 KB) Statistics
| Branch: | Tag: | Revision:

foreman_pipeline / foreman_pipeline.gemspec @ 937eb715

1
$:.push File.expand_path("../lib", __FILE__)
2

    
3
# Maintain your gem's version:
4
require "foreman_pipeline/version"
5

    
6
# Describe your gem and declare its dependencies:
7
Gem::Specification.new do |s|
8
  s.name        = "foreman_pipeline"
9
  s.version     = ForemanPipeline::VERSION
10
  s.authors     = ["Ondřej Pražák"]
11
  s.email       = ["oprazak@redhat.com"]
12
  s.homepage    = "https://github.com/xprazak2/foreman-pipeline"
13
  s.summary     = ""
14
  s.description = "Makes Foreman talk to Jenkins CI server."
15

    
16
  s.files = Dir["{app,config,db,lib}/**/*"] + ["LICENSE.txt", "Rakefile", "README.md"]
17
  s.test_files = Dir["test/**/*"]
18

    
19
  s.add_dependency "rails"
20
  s.add_development_dependency "sass", "3.2.13" # only to avoid sass/sprockets known bug: https://github.com/sass/sass/issues/1162  
21
  s.add_dependency "katello"
22
  s.add_dependency "staypuft" 
23
  s.add_dependency "bastion", "< 1.0.0"
24
  s.add_dependency "net-scp"  
25
  # s.add_dependency "nokogiri", "1.6.0" needed for jenkins_api_client > 1.0
26
  s.add_dependency "jenkins_api_client", "~> 0.14.1"
27

    
28
end