-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathboxxspring.gemspec
More file actions
27 lines (19 loc) · 915 Bytes
/
boxxspring.gemspec
File metadata and controls
27 lines (19 loc) · 915 Bytes
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
# -*- encoding: utf-8 -*-
$LOAD_PATH.unshift File.expand_path( "../lib", __FILE__ )
require 'boxxspring/version'
Gem::Specification.new do | gem |
gem.version = Boxxspring::VERSION
gem.license = 'MS-RL'
gem.name = 'boxxspring'
gem.summary = "Bedrocket Media Ventrures Boxxspring property API."
gem.description = "The boxxspring gem is implements a client to the Bedrocket Media Ventrures Boxxspring property API."
gem.homepage = "http://bedrocket.com"
gem.authors = [ "Kristoph Cichocki-Romanov" ]
gem.email = "kristoph@bedrocket.com"
gem.require_paths = [ 'lib' ]
gem.files = Dir.glob( "{lib}/**/*" )
gem.add_runtime_dependency( "activesupport", ">= 4.2" )
gem.add_runtime_dependency( "addressable" )
gem.add_runtime_dependency( "fnv", '~> 0.2' )
gem.add_development_dependency( "pry", "~> 0.10.1" )
end