public
Description: A small gem which allows posting and fetching of entries from snipplr
Homepage:
Clone URL: git://github.com/narkisr/snipplr-ruby-gem.git
snipplr-ruby-gem / snipplr-ruby-gem.gemspec
100644 19 lines (18 sloc) 0.712 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Gem::Specification.new do |s|
  s.name = "snipplr"
  s.version = "0.0.7"
  s.date = "2008-07-12"
  s.summary = "Command line interface for snipplr"
  s.email = "narkisr@gmail.com"
  s.homepage = "http://github.com/narkisr/snipplr-ruby-gem"
  s.description = "Snipplr gem is intended to be used as command line api to publish delete and view code entires in snipplr.com"
  s.has_rdoc = false
  s.authors = ["Ronen Narkis"]
  s.files = ['lib/model/snipplr_entry.rb','lib/model/server.rb','lib/snipplr.rb','lib/interface/bash_api.rb']
  s.test_files = []
  s.rdoc_options = []
  s.extra_rdoc_files = []
  s.add_dependency("optiflag", ["= 0.6.5"])
  s.executables =['snipplr']
  s.default_executable = 'snipplr'
end