Skip to content

Commit

Permalink
remove " with '
Browse files Browse the repository at this point in the history
  • Loading branch information
schorsch committed Oct 1, 2012
1 parent 83ca238 commit cb42e32
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 27 deletions.
7 changes: 0 additions & 7 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,8 @@ require 'bundler/gem_helper'
Bundler::GemHelper.install_tasks
desc "Run specs"
RSpec::Core::RakeTask.new

task :default => :spec

RSpec::Core::RakeTask.new(:coverage) do |t|
t.rcov = true
t.rcov_opts = %q[--exclude "spec"]
t.verbose = true
end

desc 'Generate documentation'
Rake::RDocTask.new(:rdoc) do |rdoc|
rdoc.rdoc_dir = 'docs/rdoc'
Expand Down
10 changes: 4 additions & 6 deletions king_dtaus.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,21 @@ Gem::Specification.new do |s|
s.name = %q{king_dtaus}
s.version = KingDta::VERSION

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Georg Leciejewski", "Georg Ledermann", "Jan Kus"]
s.required_rubygems_version = Gem::Requirement.new('>= 0') if s.respond_to? :required_rubygems_version=
s.authors = ['Georg Leciejewski', 'Georg Ledermann', 'Jan Kus']
s.date = %q{2011-11-15}
s.summary = %q{Generate DTA/DTAUS and DTAZV bank transfer files .. the easy way}
s.description = %q{DTA/DTAUS and DTAZV are text-based formats to create bank transfers for german banks.
This gem creates DTA/DATAUS files for inner german credit and debit(Gutschrift/Lastschrift) transfers.
It is also capable of creating DTAZV credit-files for transfers from Germany to European SEPA region.}
s.email = %q{gl@salesking.eu}
s.extra_rdoc_files = [
"README.markdown"
]
s.extra_rdoc_files = ['README.markdown']
s.executables = nil
s.files = `git ls-files`.split("\n").reject{|i| i[/^docs\//] }
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")

s.homepage = %q{http://github.com/salesking/king_dtaus}
s.require_paths = ["lib"]
s.require_paths = ['lib']
s.rubygems_version = %q{1.6.2}

s.add_runtime_dependency 'i18n'
Expand Down
28 changes: 14 additions & 14 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
SimpleCov.coverage_dir 'coverage'

require 'rubygems'
require "king_dtaus"
require 'king_dtaus'
require 'rspec'
require 'ostruct'
require 'date'
Expand All @@ -21,16 +21,16 @@ def sender_opts
:bank_account_number => '1326049634',
:bank_number => '37050299',
:bank_name => 'Kreissparkasse Köln',
:bank_street => "Bank Eine Straße 2",
:bank_city => "Bank Köln",
:bank_zip => "51063",
:bank_country_code => "DE",
:owner_number => "",
:bank_street => 'Bank Eine Straße 2',
:bank_city => 'Bank Köln',
:bank_zip => '51063',
:bank_country_code => 'DE',
:owner_number => '',
:owner_name =>'Jan Kus',
:owner_street => "Meine Eine Straße 2",
:owner_city => "Meine Köln",
:owner_zip_code => "51063",
:owner_country_code => "DE"
:owner_street => 'Meine Eine Straße 2',
:owner_city => 'Meine Köln',
:owner_zip_code => '51063',
:owner_country_code => 'DE'
}
end

Expand All @@ -39,10 +39,10 @@ def receiver_opts
:bank_iban => 'PL10105013151000002308622378',
:bank_bic => 'COBADEFF366',
:owner_name =>'Dalai Lama',
:owner_street => "Bush-Avenue 55",
:owner_city => "India",
:owner_zip_code => "445555",
:owner_country_code => "DE" # actually wrong since iban is in poland
:owner_street => 'Bush-Avenue 55',
:owner_city => 'India',
:owner_zip_code => '445555',
:owner_country_code => 'DE' # actually wrong since iban is in poland
# only needed if no bic present
# :bank_name => 'Dalai Lamas Bank',
# :bank_street => "5th avenue",
Expand Down

0 comments on commit cb42e32

Please sign in to comment.