Pistos / diakonos

Diakonos is a Linux console text editor for the masses.

This URL has Read+Write access

diakonos / diakonos.gemspec
100755 51 lines (36 sloc) 1.476 kb
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env ruby
 
require 'rubygems'
 
spec = Gem::Specification.new do |s|
    s.name = 'diakonos'
    s.version = '0.8.10'
    s.summary = 'A usable console-based text editor.'
    s.description = 'Diakonos is a customizable, usable console-based text editor.'
    s.homepage = 'http://purepistos.net/diakonos'
    s.requirements << 'curses library for Ruby (not in default Ruby install on Debian or FreeBSD)'
    s.rubyforge_project = 'diakonos'
 
    s.author = 'Pistos'
    s.email = 'pistos at purepistos dot net'
 
    s.platform = Gem::Platform::RUBY
 
    s.post_install_message = %{
 
------------------------------------------------------------------------------
Dear RubyGems administrator:
 
As of version 0.8.8, Diakonos is no longer installed via RubyGems. You may
find that a Diakonos package is already available for your operating system's
package manager. There are packages for: Ubuntu, Debian, Gentoo, Arch Linux,
Slackware, and Sourcemage.
 
If there is no package for your system, you can install Diakonos manually:
 
- Uninstall any previously installed diakonos gems
- Acquire a tarball from http://purepistos.net/diakonos
- Unpack the tarball
- ruby install.rb --help
 
I apologize for the inconvenience, but the RubyGems system (at the time of this
writing) is much more tailored for libraries rather than full applications like
Diakonos.
 
 
Pistos
2009-03-08
 
}
 
    s.files = [ ]
end
 
if $PROGRAM_NAME == __FILE__
    Gem::Builder.new( spec ).build
end