-
Notifications
You must be signed in to change notification settings - Fork 2
/
livejournaller.gemspec
36 lines (30 loc) · 1.09 KB
/
livejournaller.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
29
30
31
32
33
34
35
36
require 'rubygems'
spec = Gem::Specification.new do |s|
# Basic information.
s.name = 'livejournaller'
s.version = File.open("VERSION").read.strip
s.summary = <<-EOF
A LiveJournal access library.
EOF
s.description = <<-EOF
This is a library to access the LiveJournal API from Ruby, and a
script or two to let you write and submit LiveJournal entries from
the command line.
EOF
s.author = "Dave Brown"
s.email = "[email protected]"
# s.homepage = "http://www.rubyforge.org/projects/gurgitate-mail/"
# s.rubyforge_project = "gurgitate-mail"
s.files = Dir.glob("lib/*.rb")
s.files += Dir.glob("bin/*")
s.files += Dir.glob("share/*")
# Load-time details: library and application
s.require_path = 'lib' # Use these for libraries.
s.autorequire = 'livejournaller'
s.bindir = "bin" # Use these for applications.
s.executables = %w{ljpost ljsend}
s.default_executable = "ljpost"
# Documentation and testing.
# s.has_rdoc = true
# s.test_suite_file = "test.rb"
end