forked from berkshelf/berkshelf-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
berkshelf-api.gemspec
41 lines (38 loc) · 2.01 KB
/
berkshelf-api.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'berkshelf/api/version'
Gem::Specification.new do |spec|
spec.name = "berkshelf-api"
spec.version = Berkshelf::API::VERSION
spec.authors = ["Jamie Winsor", "Andrew Garson"]
spec.email = ["jamie@vialstudios.com", "agarson@riotgames"]
spec.description = %q{Berkshelf dependency API server}
spec.summary = %q{A server which indexes cookbooks from various sources and hosts it over a REST API}
spec.homepage = "https://github.com/berkshelf/berkshelf-api"
spec.license = "Apache 2.0"
spec.files = Dir['CHANGELOG.md', 'README.md', 'LICENSE', 'lib/**/*']
spec.executables = Dir['bin/**/*'].map { |f| File.basename(f) }
spec.test_files = Dir['spec/**/*.rb']
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 1.9.3"
spec.add_dependency 'ridley', '~> 4.4'
spec.add_dependency 'celluloid', '~> 0.16'
spec.add_dependency 'celluloid-io', '~> 0.16'
spec.add_dependency 'reel', '~> 0.6.0'
# There is a grape 0.15 available, but it doesn't work correctly with
# grape-msgpack; It causes an error like this when you `require "grape-msgpack"`:
#
# /home/travis/build/berkshelf/berkshelf/vendor/bundle/ruby/2.0.0/gems/grape-msgpack-0.1.2/lib/grape/msgpack.rb:39:in `<top (required)>': uninitialized constant Grape::Formatter::Base (NameError)
#
spec.add_dependency 'grape', '~> 0.14.0'
spec.add_dependency 'grape-msgpack', '~> 0.1'
spec.add_dependency 'hashie', '>= 2.0.4', '< 4.0.0'
spec.add_dependency 'archive', '= 0.0.6'
spec.add_dependency 'buff-config', '~> 1.0'
spec.add_dependency 'octokit', '>= 3.0.0', '< 5.0.0'
spec.add_dependency 'semverse', '~> 1.0'
# varia_mode 0.5 depends on Ruby 2.x - we can update to that
# when we are prepared to bump our own required_ruby_version
spec.add_dependency 'varia_model', '>= 0.4.0', '< 0.5.0'
end