forked from ninjablocks/ruby-ninja-blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ninja_blocks.gemspec
27 lines (23 loc) · 955 Bytes
/
ninja_blocks.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ninja_blocks/version'
Gem::Specification.new do |gem|
gem.name = "ninja_blocks"
gem.version = NinjaBlocks::VERSION
gem.authors = ["Marcus Schappi"]
gem.email = ["marcus@schappi.com"]
gem.description = "A simple library for talking to the Ninja Blocks Platform."
gem.summary = "Ninja Blocks!"
gem.homepage = "http://ninjablocks.com"
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_dependency 'faraday'
gem.add_dependency 'rest-client'
gem.add_dependency 'json'
gem.add_dependency 'active_support', '3.0.0'
gem.add_dependency 'chronic'
gem.add_dependency 'addressable'
end