Sha256: d0b643658eed9b34a6239cad78b166256c6d98add2aea87260986cb6ff4662d8
Contents?: true
Size: 1.11 KB
Versions: 4
Compression:
Stored size: 1.11 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) version = File.read(File.expand_path('./VERSION')).strip Gem::Specification.new do |s| s.name = "battlenet" s.version = version s.platform = Gem::Platform::RUBY s.authors = ["Brandon Tilley"] s.email = ["brandon@brandontilley.com"] s.homepage = "" s.summary = %q{Easily consume Blizzard's Community Platform API.} s.description = %q{Easily consume Blizzard's Community Platform API.} if s.respond_to?(:add_development_dependency) s.add_development_dependency "rake" s.add_development_dependency "rspec" s.add_development_dependency "timecop" s.add_development_dependency "vcr" s.add_development_dependency "webmock" end if s.respond_to?(:add_runtime_dependency) s.add_runtime_dependency "httparty" else s.add_dependency "httparty" end s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
battlenet-1.2.0 | battlenet.gemspec |
battlenet-1.1.1 | battlenet.gemspec |
battlenet-1.1.0 | battlenet.gemspec |
battlenet-1.0.0 | battlenet.gemspec |