forked from frozon/passbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpassbook.gemspec
20 lines (17 loc) · 852 Bytes
/
passbook.gemspec
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/passbook/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Thomas Lauro"]
gem.email = ["[email protected]"]
gem.description = %q{Passbook gem let's you create pkpass for passbook iOS 6}
gem.summary = %q{Passbook gem let's you create pkpass for passbook iOS 6}
gem.homepage = "https://github.com/frozon/passbook"
# gem.files = `git ls-files`.split($\)
gem.files = Dir.glob('{app,config,lib}/**/*') + %w(Gemfile LICENSE README.md Rakefile)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "passbook"
gem.require_paths = ["lib"]
gem.version = Passbook::VERSION
gem.add_dependency 'rubyzip'
end