public
Description: Snippits - a program that will type text for you. It uses 'snippits', small text files with a simple syntax to determine what to type.
Homepage: http://ben.kudria.net/code/snippits
Clone URL: git://github.com/bkudria/snippits.git
Click here to lend your support to: snippits and make a donation at www.pledgie.com !
snippits / snippits.gemspec
100644 39 lines (35 sloc) 2.722 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
(in /home/bkudria/projects/code/ruby/snippits)
Gem::Specification.new do |s|
  s.name = %q{snippits}
  s.version = "0.5.3"
 
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["Benjamin Kudria"]
  s.date = %q{2008-07-12}
  s.description = %q{This is a Ruby text expansion program for Linux - it will type text for you. It uses 'snippits', small text files with a simple syntax to determine what to type. However, snippits can be very powerful, since they can contain embedded Ruby, special keys (Control, Shift, Up, etc), and can contain a cursor placement instructions. == REQUIREMENTS: eRB:: <tt>sudo apt-get install ruby1.8</tt> on Debian/Ubuntu-like xte:: from the xautomation suite: <tt>sudo apt-get install xautomation</tt> on Debian/Ubuntu-like ASpell and RASpell:: Not required, but adds extra features: <tt>sudo apt-get install aspell-en</tt> and <tt>sudo gem install raspell</tt> Please consult your distribution documentation on how to install Ruby, Rubygems, eRB, and ASpell. == Getting started quickly:}
  s.email = %q{ben@kudria.net}
  s.executables = ["keyout", "ks", "snippit"]
  s.extra_rdoc_files = ["CREDITS.txt", "History.txt", "LICENSE.txt", "Manifest.txt", "README.txt", "ROADMAP.txt"]
  s.files = ["CREDITS.txt", "History.txt", "LICENSE.txt", "Manifest.txt", "README.txt", "ROADMAP.txt", "Rakefile", "bin/keyout", "bin/ks", "bin/snippit", "examples/date", "examples/email", "examples/name", "examples/ruby", "examples/shebang", "examples/text", "examples/time", "lib/key.rb", "lib/snippit_utilities.rb", "lib/snippits.rb", "lib/snippits_builtin.rb", "lib/typer.rb", "snippits.gemspec", "test/test_snippits.rb", "test/test_typing.rb", "test/testfile", "test/testfile.gpg"]
  s.has_rdoc = true
  s.homepage = %q{ http://ben.kudria.net/code/snippits}
  s.rdoc_options = ["--main", "README.txt"]
  s.require_paths = ["lib"]
  s.rubyforge_project = %q{snippits}
  s.rubygems_version = %q{1.2.0}
  s.summary = %q{This is Ruby program that will type text for you. It uses snippits, small text files with a simple syntax to determine what to type}
  s.test_files = ["test/test_snippits.rb", "test/test_typing.rb"]
 
  if s.respond_to? :specification_version then
    current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
    s.specification_version = 2
 
    if current_version >= 3 then
      s.add_runtime_dependency(%q<raspell>, [">= 1.1"])
      s.add_runtime_dependency(%q<hoe>, [">= 1.6.0"])
    else
      s.add_dependency(%q<raspell>, [">= 1.1"])
      s.add_dependency(%q<hoe>, [">= 1.6.0"])
    end
  else
    s.add_dependency(%q<raspell>, [">= 1.1"])
    s.add_dependency(%q<hoe>, [">= 1.6.0"])
  end
end