Sha256: f1c87d05b608cf7be27281b854c446b6b2dd87c498342c5a097d95f145028e86

Contents?: true

Size: 1.25 KB

Versions: 9

Compression:

Stored size: 1.25 KB

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require File.expand_path("lib/testbot")

Gem::Specification.new do |s|
  s.name        = "testbot"
  s.version     = Testbot::VERSION
  s.authors     = ["Joakim Kolsjö"]
  s.email       = ["joakim.kolsjo@gmail.com"]
  s.homepage    = "http://github.com/joakimk/testbot"
  s.summary     = %q{A test distribution tool.}
  s.description = %q{Testbot is a test distribution tool that works with Rails, RSpec, Test::Unit and Cucumber.}
  s.bindir      = "bin"
  s.executables = [ "testbot" ]
  s.files       = Dir.glob("lib/**/*") + %w(Gemfile testbot.gemspec CHANGELOG README.markdown bin/testbot)
  s.add_dependency('sinatra', '=1.0.0') # To be able to use rack 1.0.1 which is compatible with rails 2.
  s.add_dependency('httparty', '>= 0.6.1')
  s.add_dependency('macaddr', '>= 1.0.0')
  s.add_dependency('net-ssh', '>= 2.0.23')
  s.add_dependency('sequel', '>= 3.16.0')
  s.add_dependency('json', '>= 1.4.6')

  # Could work with older versions, but not newer (when deploying on debian)
  s.add_dependency('sqlite3-ruby', '= 1.2.5')

  # Because sinatra's "disable :logging" does not work with WEBrick.
  # Also, using a version that builds on ruby 1.9.2.
  s.add_dependency('mongrel', '1.2.0.pre2')  
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
testbot-0.3.5 testbot.gemspec
testbot-0.3.4 testbot.gemspec
testbot-0.3.3 testbot.gemspec
testbot-0.3.2 testbot.gemspec
testbot-0.3.1 testbot.gemspec
testbot-0.3.0 testbot.gemspec
testbot-0.2.9 testbot.gemspec
testbot-0.2.8 testbot.gemspec
testbot-0.2.7 testbot.gemspec