-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathhumanize-bytes.gemspec
More file actions
23 lines (19 loc) · 882 Bytes
/
humanize-bytes.gemspec
File metadata and controls
23 lines (19 loc) · 882 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'humanize/bytes'
Gem::Specification.new do |gem|
gem.name = 'humanize-bytes'
gem.version = Humanize::Bytes::VERSION
gem.authors = %q{Paulo Henrique Lopes Ribeiro}
gem.email = %q{plribeiro3000@gmail.com}
gem.summary = %q{Convert Byte, KByte, MByte, GByte, TByte, PByte, EByte, ZByte and YByte into each other}
gem.files = `git ls-files`.split($\)
gem.test_files = `git ls-files -- {test,spec,features,examples,gemfiles}/*`.split("\n")
gem.executables = `git ls-files -- bin/*`.split('\n').map{ |f| File.basename(f) }
gem.require_paths = %w(lib)
gem.license = 'MIT'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rspec'
gem.add_development_dependency 'pry'
end