forked from giozom/ruby-jmeter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruby-jmeter-plus.gemspec
More file actions
27 lines (23 loc) · 1013 Bytes
/
ruby-jmeter-plus.gemspec
File metadata and controls
27 lines (23 loc) · 1013 Bytes
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 -*-
# gem build ruby-jmeter-plus.gemspec
# gem install --local ruby-jmeter-plus-3.1.08.gem
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ruby-jmeter/version'
Gem::Specification.new do |gem|
gem.name = 'ruby-jmeter-plus'
gem.version = RubyJmeter::VERSION
gem.authors = ['Tim Koopmans', 'Viktor Silakov']
gem.email = ['support@flood.io']
gem.description = %q{Ruby based DSL for writing JMeter test plans}
gem.summary = %q{Ruby based DSL for writing JMeter test plans}
gem.homepage = 'https://github.com/viktor-silakov/ruby-jmeter'
gem.add_dependency('rest-client')
gem.add_dependency('nokogiri')
gem.add_runtime_dependency('json-jruby') if RUBY_PLATFORM == 'java'
gem.files = `git ls-files`.split($/)
gem.executables << 'flood'
gem.test_files = `git ls-files -- {spec}/*`.split("\n")
gem.require_paths = ['lib']
gem.license = 'MIT'
end