forked from alindeman/zonebie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
zonebie.gemspec
27 lines (22 loc) · 1.07 KB
/
zonebie.gemspec
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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/zonebie/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Andy Lindeman"]
gem.email = ["[email protected]"]
gem.description = %q{Runs your tests in a random timezone}
gem.summary = %q{Zonebie prevents bugs in code that deals with timezones by randomly assigning a zone on every run}
gem.homepage = "https://github.com/highgroove/zonebie"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "zonebie"
gem.require_paths = ["lib"]
gem.version = Zonebie::VERSION
gem.add_development_dependency "rake"
gem.add_development_dependency "rspec", "~>2.8"
gem.add_development_dependency "mocha", "~>0.10.0"
gem.add_development_dependency "activesupport", ">=2.3"
gem.add_development_dependency "tzinfo", ">=0.3"
gem.add_dependency "chunky_png"
gem.add_dependency "rainbow"
end