Skip to content

Commit

Permalink
Merge branch 'update-dev-dependencies'
Browse files Browse the repository at this point in the history
  • Loading branch information
Harry Mills committed Mar 28, 2016
2 parents eb96a4a + 63a6727 commit f018e01
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ source 'https://rubygems.org'
gemspec

group :test do
gem "guard", "~> 2.6.1"
gem "guard-minitest", "~> 2.3.1"
gem "pry-byebug", "~> 1.3.3", platform: [:mri_20, :mri_21]
gem "guard", "~> 2.13.0"
gem "guard-minitest", "~> 2.4.4"
gem "pry-byebug", "~> 3.3.0", platform: [:mri_20, :mri_21]
gem "pry-debugger", "~> 0.2.3", platform: :mri_19
gem "pry-doc", "~> 0.6.0"
gem "pry-doc", "~> 0.8.0"
gem "bond", "~> 0.5.1"
end
2 changes: 1 addition & 1 deletion hermod.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Gem::Specification.new do |spec|
spec.add_runtime_dependency "activesupport", "> 3.2", "< 5"

spec.add_development_dependency "bundler", "~> 1.6"
spec.add_development_dependency "rake", "~> 10.3"
spec.add_development_dependency "rake", "~> 11.1"
spec.add_development_dependency "minitest", "~> 5.3"
spec.add_development_dependency "minitest-reporters", "~> 1.0", ">= 1.0.16"
spec.add_development_dependency "nokogiri", "~> 1.5"
Expand Down
1 change: 1 addition & 0 deletions lib/hermod.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
require 'hermod/version'
require 'hermod/xml_section'

I18n.enforce_available_locales = false
Expand Down
2 changes: 1 addition & 1 deletion lib/hermod/xml_section.rb
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class << self
#
# Returns a String
def self.xml_name
@xml_name || name.demodulize
@xml_name ||= name.demodulize
end

# Internal: provides access to the formats hash, falling back on an empty
Expand Down

0 comments on commit f018e01

Please sign in to comment.