vigetlabs / unfuzzle

A simple wrapper around the Unfuddle XML API

This URL has Read+Write access

unfuzzle / unfuzzle.gemspec
100644 33 lines (28 sloc) 1.695 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
# -*- encoding: utf-8 -*-
 
Gem::Specification.new do |s|
  s.name = %q{unfuzzle}
  s.version = "0.1.0"
 
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["Patrick Reagan"]
  s.date = %q{2009-06-24}
  s.email = %q{patrick.reagan@viget.com}
  s.extra_rdoc_files = ["README.rdoc"]
  s.files = ["README.rdoc", "Rakefile", "lib/unfuzzle", "lib/unfuzzle/milestone.rb", "lib/unfuzzle/model.rb", "lib/unfuzzle/project.rb", "lib/unfuzzle/request.rb", "lib/unfuzzle/response.rb", "lib/unfuzzle/ticket.rb", "lib/unfuzzle/version.rb", "lib/unfuzzle.rb", "test/fixtures", "test/fixtures/milestones.json", "test/fixtures/project.json", "test/fixtures/projects.json", "test/fixtures/tickets.json", "test/test_helper.rb", "test/unit", "test/unit/unfuzzle", "test/unit/unfuzzle/milestone_test.rb", "test/unit/unfuzzle/project_test.rb", "test/unit/unfuzzle/request_test.rb", "test/unit/unfuzzle/response_test.rb", "test/unit/unfuzzle/ticket_test.rb", "test/unit/unfuzzle_test.rb"]
  s.has_rdoc = true
  s.homepage = %q{http://www.viget.com/extend}
  s.rdoc_options = ["--main", "README.rdoc"]
  s.require_paths = ["lib"]
  s.rubygems_version = %q{1.3.1}
  s.summary = %q{This gem provides an interface to the Unfuddle JSON API}
 
  if s.respond_to? :specification_version then
    current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
    s.specification_version = 2
 
    if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
      s.add_runtime_dependency(%q<json>, [">= 1.1.6"])
    else
      s.add_dependency(%q<json>, [">= 1.1.6"])
    end
  else
    s.add_dependency(%q<json>, [">= 1.1.6"])
  end
end