balinterdi / twuckoo

Need to tweet periodically in an automated fashion? Then Twuckoo is for you!

This URL has Read+Write access

twuckoo / twuckoo.gemspec
100644 42 lines (37 sloc) 2.358 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
# -*- encoding: utf-8 -*-
 
Gem::Specification.new do |s|
  s.name = %q{twuckoo}
  s.version = "0.2.2"
 
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
  s.authors = ["B\303\241lint \303\211rdi"]
  s.date = %q{2009-08-07}
  s.default_executable = %q{twuckoo}
  s.description = %q{A simple yet elegant solution to tweet a message regularly from a file (and in the future: from a webpage, a database, etc.)}
  s.email = %q{balint@bucionrails.com}
  s.executables = ["twuckoo"]
  s.extra_rdoc_files = ["bin/twuckoo", "CHANGELOG", "lib/duration_string.rb", "lib/environments.rb", "lib/modules/one_line_from_file.rb", "lib/modules/wikipedia_tfa.rb", "lib/twuckoo.rb", "README.markdown", "tasks/spec.rake"]
  s.files = ["bin/twuckoo", "CHANGELOG", "lib/duration_string.rb", "lib/environments.rb", "lib/modules/one_line_from_file.rb", "lib/modules/wikipedia_tfa.rb", "lib/twuckoo.rb", "Manifest", "Rakefile", "README.markdown", "spec/duration_string_spec.rb", "spec/one_line_from_file_spec.rb", "spec/spec.opts", "spec/spec_helper.rb", "spec/twuckoo_spec.rb", "spec/wikipedia_tfa_spec.rb", "tasks/spec.rake", "twuckoo.gemspec"]
  s.homepage = %q{http://github.com/balinterdi/twuckoo}
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Twuckoo", "--main", "README.markdown"]
  s.require_paths = ["lib"]
  s.rubyforge_project = %q{twuckoo}
  s.rubygems_version = %q{1.3.3}
  s.summary = %q{A simple yet elegant solution to tweet a message regularly from a file (and in the future: from a webpage, a database, etc.)}
 
  if s.respond_to? :specification_version then
    current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
    s.specification_version = 3
 
    if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
      s.add_runtime_dependency(%q<twibot>, [">= 0.1.7"])
      s.add_runtime_dependency(%q<hpricot>, [">= 0", "= 0.6.164"])
      s.add_runtime_dependency(%q<mocha>, [">= 0", "= 0.9.5"])
    else
      s.add_dependency(%q<twibot>, [">= 0.1.7"])
      s.add_dependency(%q<hpricot>, [">= 0", "= 0.6.164"])
      s.add_dependency(%q<mocha>, [">= 0", "= 0.9.5"])
    end
  else
    s.add_dependency(%q<twibot>, [">= 0.1.7"])
    s.add_dependency(%q<hpricot>, [">= 0", "= 0.6.164"])
    s.add_dependency(%q<mocha>, [">= 0", "= 0.9.5"])
  end
end