public
Description: Command line interface to tracking time on Basecamp.
Homepage: http://github.com/Klondike/basecamper
Clone URL: git://github.com/klondike/basecamper.git
basecamper / basecamper.gemspec
100644 20 lines (15 sloc) 0.535 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
spec = Gem::Specification.new do |s|
  s.name = 'basecamper'
  s.version = "1.0.4"
  s.platform = Gem::Platform::RUBY
  # The summary of my gem.
  s.summary = "Command line interface to tracking time on Basecamp."
  
  s.author = "Eric Mill"
  s.email = "kprojection@gmail.com"
  s.homepage = "http://github.com/Klondike/basecamper/"
 
  s.files = ['README', 'LICENSE', 'bin/track', 'lib/basecamp.rb', 'lib/basecamper.rb']
  s.require_path = 'lib'
  
  s.bindir = "bin"
  s.executables << "track"
  
  s.add_dependency 'xml-simple'
end