forked from bluntelk/tidy_club
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtidy_club.gemspec
26 lines (23 loc) · 907 Bytes
/
tidy_club.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'tidy_club/version'
Gem::Specification.new do |spec|
spec.name = 'tidy_club'
spec.version = TidyClub::VERSION
spec.authors = ['Jason Playne']
spec.email = ['jason@jasonplayne.com']
spec.summary = 'Integration with TidyClub'
spec.description = 'This gem provides some active record like integration with the Tidy Club API'
spec.homepage = ''
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.add_dependency 'activeresource', '~>4'
spec.add_dependency 'logger'
spec.add_dependency 'bundler', '~> 1.5'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rspec'
end