-
Notifications
You must be signed in to change notification settings - Fork 2
/
bvm.gemspec
28 lines (22 loc) · 879 Bytes
/
bvm.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
Gem::Specification.new do |s|
s.name = "bvm"
s.version = '0.3.3'
s.platform = Gem::Platform::RUBY
s.authors = ['Guy Royse', 'Alyssa Diaz', 'Jacob Dingus']
s.email = ['guy@guyroyse.com']
s.homepage = "http://github.com/guyroyse/big-visible-metrics"
s.license = "MIT"
s.summary = "Generates CSV files from SONAR metrics"
s.description = "Generates CSV files that can be consumed by Microsoft Treemapper from the Sonar API. Reads stdin and stdout."
s.required_rubygems_version = ">=1.3.6"
s.add_runtime_dependency 'xml-simple', '~> 1.0.12'
s.add_development_dependency 'rspec', '>= 2.3.0'
s.add_development_dependency 'rspec-core', '>= 2.3.1'
s.add_development_dependency 'rspec-expectations', '>= 2.3.0'
s.files = Dir["lib/**/*"]
s.files += Dir["bin/*"]
s.files << "LICENSE"
s.files << "README.md"
s.executables << 'bvm'
s.require_path = 'lib'
end