forked from paulspringett/bcx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbcx.gemspec
More file actions
25 lines (21 loc) · 948 Bytes
/
bcx.gemspec
File metadata and controls
25 lines (21 loc) · 948 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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/bcx/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Paul Springett"]
gem.email = ["paul@springett.me"]
gem.description = %q{Fully-fledged Ruby API wrapper for Basecamp Next}
gem.summary = %q{Fully-fledged Ruby API wrapper for Basecamp Next. Uses the Rapidash gem under the hood.}
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 = "bcx"
gem.require_paths = ["lib"]
gem.version = Bcx::VERSION
gem.license = 'MIT'
gem.add_runtime_dependency 'rapidash', '~> 0.4.0'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rspec'
gem.add_development_dependency 'simplecov'
gem.add_development_dependency 'vcr'
end