forked from allolex/nacre-old
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnacre.gemspec
26 lines (22 loc) · 964 Bytes
/
nacre.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/nacre/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Damon Allen Davison"]
gem.email = ["[email protected]"]
gem.description = %q{A Ruby class for working with the Brightpearl API}
gem.summary = %q{The Nacre gem provides an easy way of talking with the Brightpearl API.}
gem.homepage = ""
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.name = "nacre"
gem.require_paths = ["lib"]
gem.version = Nacre::VERSION
gem.add_dependency 'faraday'
gem.add_dependency 'json'
gem.add_dependency 'activesupport'
gem.add_development_dependency 'rspec'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'awesome_print'
gem.add_development_dependency 'pry'
end