forked from mjc-gh/batsd-dash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
batsd-dash.gemspec
38 lines (28 loc) · 1.13 KB
/
batsd-dash.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require 'batsd-dash/version'
Gem::Specification.new do |s|
s.name = "batsd-dash"
s.version = BatsdDash::VERSION
s.authors = ["mikeycgto", "btoconnor"]
s.email = ["mikeycgto@gmail.com", "gatzby3jr@gmail.com"]
s.homepage = "https://github.com/mikeycgto/batsd-dash"
s.summary = %q{batsd-dash}
s.description = %q{batsd-dash - graphs and stuff from batds. yay.}
s.rubyforge_project = "batsd-dash"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
# specify any dependencies here; for example:
s.add_dependency "sinatra"
s.add_dependency "sinatra-contrib"
s.add_dependency "sinatra-synchrony"
s.add_dependency "haml"
s.add_dependency "yajl-ruby"
s.add_development_dependency "rake"
s.add_development_dependency "minitest"
s.add_development_dependency "mocha"
s.add_development_dependency "turn"
s.add_development_dependency "thin"
end