Project

General

Profile

Download (1005 Bytes) Statistics
| Branch: | Tag: | Revision:

runcible / runcible.gemspec @ 4376f477

1
# -*- encoding: utf-8 -*-
2
require File.expand_path('../lib/runcible/version', __FILE__)
3

    
4
Gem::Specification.new do |gem|
5
  gem.authors       = ["Eric D Helms, Justin Sherrill"]
6
  gem.email         = ["ehelms@redhat.com, jsherril@redhat.com"]
7
  gem.description   = "Exposing Pulp's juiciest components to the Ruby world."
8
  gem.summary       = ""
9
  gem.homepage      = "https://github.com/Katello/runcible"
10

    
11
  gem.files         = Dir['lib/**/*.rb'] + ['LICENSE', 'Rakefile', 'Gemfile', 
12
                                            'README.md', 'CONTRIBUTING.md']
13
  gem.test_files    = gem.files.grep(%r{^(test)/})
14
  gem.name          = "runcible"
15
  gem.require_paths = ["lib"]
16
  gem.version       = Runcible::VERSION
17

    
18
  gem.add_dependency('json')
19
  gem.add_dependency('rest-client', '>= 1.6.1')
20
  gem.add_dependency('oauth')
21
  gem.add_dependency('activesupport', '>= 3.0.10')
22
  gem.add_dependency('i18n', '>= 0.5.0')
23

    
24
  gem.add_development_dependency('yard')
25
  gem.add_development_dependency('maruku')
26
end