-
Notifications
You must be signed in to change notification settings - Fork 15
/
id3tag.gemspec
26 lines (23 loc) · 1.02 KB
/
id3tag.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
require File.expand_path('../lib/id3tag/version', __FILE__)
Gem::Specification.new do |s|
s.name = "id3tag"
s.version = ID3Tag::VERSION
s.authors = ["Krists Ozols"]
s.email = "[email protected]"
s.description = "Native Ruby ID3 tag reader that aims for 100% coverage of ID3v2.x and ID3v1.x standards"
s.summary = "Native Ruby ID3 tag reader that aims for 100% coverage of ID3v2.x and ID3v1.x standards"
s.homepage = "https://github.com/krists/id3tag"
s.license = "MIT"
s.files = Dir["lib/**/*.rb"]
s.executables = []
s.extra_rdoc_files = ["LICENSE.txt", "README.md"]
s.require_paths = ["lib"]
s.required_ruby_version = Gem::Requirement.new(">= 2.2")
s.add_development_dependency "bundler"
s.add_development_dependency "rake", "~> 13.0.1"
s.add_development_dependency "rdoc", ">= 6.3.1"
s.add_development_dependency "rspec", "~> 3.10.0"
s.add_development_dependency "simplecov", "~> 0.16.1"
s.add_development_dependency 'coveralls', "~> 0.8.23"
s.add_development_dependency 'pry'
end