Sha256: 936cd023f638f7faf788b39557372a6392f5170c71ba597c0a1549dba09d39c6

Contents?: true

Size: 1.28 KB

Versions: 1

Compression:

Stored size: 1.28 KB

Contents

Gem::Specification.new do |s|
  s.name    = 'love'

  # Do not change the version and date fields by hand. This will be done
  # automatically by the gem release script.
  s.version = "0.0.4"
  s.date    = "2010-11-29"

  s.summary     = "Ruby library to access the Tender REST API."
  s.description = <<-EOT
    A simple API wrapper for Tender, that handles paged results, uses yajl-ruby for
    JSON parsing, and manually handles UTF-8 encoding to circumvent the invalid UTF-8
    character problem in Ruby 1.9.
  EOT

  s.authors  = ['Willem van Bergen']
  s.email    = ['willem@railsdoctors.com']
  s.homepage = 'http://github.com/wvanbergen/love'

  s.add_runtime_dependency('activesupport')
  s.add_runtime_dependency('yajl-ruby')

  s.add_development_dependency('rake')
  s.add_development_dependency('rspec', '~> 2')

  s.rdoc_options << '--title' << s.name << '--main' << 'README.rdoc' << '--line-numbers' << '--inline-source'
  s.extra_rdoc_files = ['README.rdoc']

  # Do not change the files and test_files fields by hand. This will be done
  # automatically by the gem release script.
  s.files      = %w(.gitignore Gemfile Gemfile.lock LICENSE README.rdoc Rakefile lib/love.rb love.gemspec spec/love_spec.rb spec/spec_helper.rb tasks/github-gem.rb)
  s.test_files = %w(spec/love_spec.rb)
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
love-0.0.4 love.gemspec