-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathlolapi.gemspec
More file actions
22 lines (19 loc) · 942 Bytes
/
lolapi.gemspec
File metadata and controls
22 lines (19 loc) · 942 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'LoLAPI/version'
Gem::Specification.new do |spec|
spec.name = 'lolapi'
spec.version = LoLAPI::VERSION
spec.authors = ["Ian Mitchell", "Andy Tsao"]
spec.email = ["ian.mitchel1@live.com", "tsao2@hotmail.com"]
spec.summary = "A wrapper for the League of Legends API"
spec.description = "A wrapper for the League of Legends API desc"
spec.homepage = 'http://github.com/ianmitchell/lolapi'
spec.license = "MIT"
spec.files = ['lib/lolapi.rb', 'lib/configuration.rb', 'lib/LoLAPI/version.rb']
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "rake"
end