-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcentrum_faktur.gemspec
More file actions
21 lines (18 loc) · 852 Bytes
/
centrum_faktur.gemspec
File metadata and controls
21 lines (18 loc) · 852 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/centrum_faktur/version", __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Wojciech Wnętrzak"]
gem.email = ["w.wnetrzak@gmail.com"]
gem.description = %q{Ruby client for Centrum Faktur API}
gem.summary = %q{Ruby client for Centrum Faktur API}
gem.homepage = "https://github.com/morgoth/centrum_faktur"
gem.license = "MIT"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "centrum_faktur"
gem.require_paths = ["lib"]
gem.version = CentrumFaktur::VERSION
gem.add_dependency "multi_json", "~> 1.3"
gem.add_development_dependency "fakeweb"
end