Sha256: 7b7866b3e81485152a31a99f57aac7a45d823cd801d5ffbd19358e0fce15df15
Contents?: true
Size: 1.04 KB
Versions: 2
Compression:
Stored size: 1.04 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require 'fints/version' Gem::Specification.new do |s| s.name = 'ruby_fints' s.version = FinTS::VERSION s.platform = Gem::Platform::RUBY s.authors = ['Marvin Killing'] s.email = ['marvin@playtestcloud.com'] s.homepage = '' s.summary = %q{Basic FinTS 3.0 implementation in Ruby} s.description = %q{FinTS (formerly known as HBCI) is a protocol to programmatically interface with German banks. This gem is a translation of https://github.com/raphaelm/python-fints into Ruby.} s.add_runtime_dependency 'cmxl', '~> 0.2' s.add_runtime_dependency 'httparty', '~> 0.10' s.add_development_dependency 'rake' s.add_development_dependency 'minitest' s.add_development_dependency 'webmock' s.add_development_dependency 'simplecov' s.add_development_dependency 'delorean' s.add_development_dependency 'mocha' s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test}/*`.split("\n") s.require_paths = ['lib'] end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ruby_fints-0.0.3 | ruby_fints.gemspec |
ruby_fints-0.0.2 | ruby_fints.gemspec |