-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpivotal_db.gemspec
28 lines (24 loc) · 1016 Bytes
/
pivotal_db.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
28
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "pivotal_db/version"
Gem::Specification.new do |s|
s.name = "pivotal_db"
s.version = PivotalDb::VERSION
s.authors = ["Fraser Newton"]
s.email = ["[email protected]"]
s.homepage = ""
s.summary = %q{Offline Access to Pivotal Tracker projects}
s.description = %q{Pull a Pivotal Tracker project into an sqlite DB and provides basic search functionality through a CLI}
s.rubyforge_project = "pivotal_db"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_development_dependency "rspec"
s.add_dependency "pivotal-tracker", "~>0.4"
s.add_dependency "sqlite3", "~>1.3"
s.add_dependency "data_mapper"
s.add_dependency "dm-sqlite-adapter"
s.add_dependency "thor"
s.add_dependency "configliere"
end