Skip to content

Commit

Permalink
Fix ending newlines.
Browse files Browse the repository at this point in the history
  • Loading branch information
futhr committed May 16, 2014
1 parent 339136a commit e9c1b45
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ coverage
spec/dummy
pkg/
*.gem
.bundle
.bundle
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ source 'https://rubygems.org/'

gem 'spree', github: 'spree/spree', branch: 'master'

gemspec
gemspec
2 changes: 1 addition & 1 deletion Guardfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ guard 'rspec', cmd: 'bundle exec rspec', all_on_start: true do
watch('spec/spec_helper.rb') { 'spec' }
watch(%r{^spec/(.+)_spec\.rb$}) { |m| "spec/#{m[1]}_spec.rb"}
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
end
end
2 changes: 1 addition & 1 deletion bin/rails
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ ENGINE_ROOT = File.expand_path('../..', __FILE__)
ENGINE_PATH = File.expand_path('../../lib/spree_postal_service/engine', __FILE__)

require 'rails/all'
require 'rails/engine/commands'
require 'rails/engine/commands'
2 changes: 1 addition & 1 deletion config/locales/en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ en:
handling_max: "Amount, over which handling fee won't be applied"
min_price: Minimum price
default_weight: Default weight
max_price: Maximum price
max_price: Maximum price
2 changes: 1 addition & 1 deletion config/locales/pt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ pt:
handling_max: Valor a partir do qual a taxa de tratamento não é aplicada
min_price: Preço mínimo
default_weight: Peso por omissão
max_price: Preço máximo
max_price: Preço máximo
2 changes: 1 addition & 1 deletion config/locales/sv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ sv:
handling_max: "Belopp, över vilken expeditionsavgift inte skall tillämpas"
min_price: Minsta belopp
default_weight: Förvald vikt
max_price: Största belopp
max_price: Största belopp
2 changes: 1 addition & 1 deletion lib/spree_postal_service.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
require 'spree_core'
require 'spree_postal_service/engine'
require 'spree_postal_service/version'
require 'spree_postal_service/version'
2 changes: 1 addition & 1 deletion lib/spree_postal_service/engine.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ class Engine < Rails::Engine
app.config.spree.calculators.shipping_methods << Spree::Calculator::Shipping::PostalService
end
end
end
end
2 changes: 1 addition & 1 deletion lib/spree_postal_service/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ module VERSION

STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end
end
end
2 changes: 1 addition & 1 deletion spec/lib/postal_service_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -128,4 +128,4 @@ def create_our_package(args={})
@shipment = create(:shipment, order: @order)
@package = @shipment.to_package
end
end
end
2 changes: 1 addition & 1 deletion spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@
config.use_transactional_fixtures = true

config.include FactoryGirl::Syntax::Methods
end
end

0 comments on commit e9c1b45

Please sign in to comment.