-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtm4b.gemspec
64 lines (44 loc) · 1.62 KB
/
tm4b.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# -*- encoding: utf-8 -*-
require File.expand_path("lib/tm4b/version", File.dirname(__FILE__))
Gem::Specification.new do |s|
s.name = %q{tm4b}
s.version = TM4B::Version::STRING
s.platform = Gem::Platform::RUBY
s.authors = ["William Howard"]
s.email = %q{whoward.tke@gmail.com}
s.homepage = %q{http://github.com/Leadformance/tm4b}
s.default_executable = %q{tm4b}
s.executables = ["tm4b"]
s.require_paths = ["lib"]
s.summary = %q{TM4b HTTP API implementation}
s.files = Dir.glob("lib/**/*.rb") + %w(Gemfile)
s.test_files = Dir.glob("spec/**/*.rb")
s.add_dependency "thor"
s.add_development_dependency "rake"
s.add_development_dependency "rspec", "~> 2.6.0"
s.add_development_dependency "fakeweb", ">= 1.3.0"
# to make testing more fun (if only it needed less configuration)
s.add_development_dependency "guard"
s.add_development_dependency "guard-rspec"
s.add_dependency "activesupport"
if RUBY_PLATFORM =~ /darwin/i
# filesystem event support for OSX
s.add_development_dependency "rb-fsevent"
# system notifications for OSX
s.add_development_dependency "growl_notify"
end
if RUBY_PLATFORM =~ /linux/i
# filesystem event support for Linux
s.add_development_dependency "rb-inotify"
# system notifications for Linux
s.add_development_dependency "libnotify"
end
if RUBY_PLATFORM =~ /mswin32/i
# filesystem event support for Windows
s.add_development_dependency 'rb-fchange'
# console colours for Windows
s.add_development_dependency 'win32console'
# system notifications for Windows
s.add_development_dependency 'rb-notifu'
end
end