-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhex_values.gemspec
More file actions
20 lines (17 loc) · 972 Bytes
/
hex_values.gemspec
File metadata and controls
20 lines (17 loc) · 972 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/hex_values/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Sergio Rafael Gianazza"]
gem.email = ["sgianazza@gmail.com"]
gem.description = %q{Add functionality to get hexadecimal values from float and float from a string hexadecimal}
gem.summary = %q{Convert any float or fixnum to the correct representation in hexadecimal, and convert any hexadecimal string in their corresponding float representation.}
gem.homepage = "http://github.com/gianu/hex_values"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "hex_values"
gem.require_paths = ["lib"]
gem.version = HexValues::VERSION
gem.add_development_dependency "minitest"
gem.add_development_dependency "minitest-reporters"
end