-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathm9t.gemspec
30 lines (23 loc) · 1.03 KB
/
m9t.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
$LOAD_PATH.unshift(File.expand_path("../lib", __FILE__))
require "m9t/version"
gemspec = Gem::Specification.new do |s|
s.name = "m9t"
s.platform = Gem::Platform::RUBY
s.version = M9t::VERSION::STRING
s.required_ruby_version = ">= 2.4.0"
s.summary = "Measurements and conversions library for Ruby"
s.description = "Classes for handling basic measurement units: distance, direction, speed, temperature and pressure"
s.license = "MIT"
s.homepage = "https://github.com/joeyates/m9t"
s.author = "Joe Yates"
s.email = "[email protected]"
s.files = `git ls-files`.lines.map(&:chomp!)
s.test_files = `git ls-files spec`.lines.map(&:chomp!)
s.require_paths = ["lib"]
s.rubyforge_project = "nowarning"
s.add_dependency "rake"
s.add_dependency "i18n", ">= 0.3.5"
s.add_development_dependency "codeclimate-test-reporter", "~> 0.4.8"
s.add_development_dependency "rspec", ">= 3.0.0"
s.add_development_dependency "simplecov" if RUBY_PLATFORM != "java"
end