Skip to content

Commit

Permalink
Merge pull request #26 from infinitered/fixtwoseven
Browse files Browse the repository at this point in the history
Fix for Ruby 2.7. Also updates gem/bundler versions.
  • Loading branch information
wndxlori authored Feb 23, 2021
2 parents 01d4fc8 + 33fb1fc commit 0e3212d
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.1.0
2.7.2
28 changes: 14 additions & 14 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
PATH
remote: .
specs:
ruby-xcdm (0.0.11)
ruby-xcdm (1.0.0)
activesupport (~> 4.1)
builder (~> 3.2)
plist (~> 3.1)

GEM
remote: https://rubygems.org/
specs:
activesupport (4.1.8)
i18n (~> 0.6, >= 0.6.9)
json (~> 1.7, >= 1.7.7)
activesupport (4.2.11.3)
i18n (~> 0.7)
minitest (~> 5.1)
thread_safe (~> 0.1)
thread_safe (~> 0.3, >= 0.3.4)
tzinfo (~> 1.1)
builder (3.2.2)
i18n (0.7.0)
json (1.8.1)
minitest (5.5.0)
plist (3.1.0)
rake (10.4.2)
thread_safe (0.3.4)
tzinfo (1.2.2)
builder (3.2.4)
concurrent-ruby (1.1.8)
i18n (0.9.5)
concurrent-ruby (~> 1.0)
minitest (5.14.3)
plist (3.6.0)
rake (13.0.3)
thread_safe (0.3.6)
tzinfo (1.2.9)
thread_safe (~> 0.1)

PLATFORMS
Expand All @@ -37,4 +37,4 @@ DEPENDENCIES
ruby-xcdm!

BUNDLED WITH
1.16.2
2.2.11
2 changes: 1 addition & 1 deletion lib/xcdm/entity.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

require 'active_support/all'
require 'active_support/inflector'
require 'builder'

module XCDM
Expand Down
2 changes: 1 addition & 1 deletion lib/xcdm/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module XCDM
VERSION = "0.0.11"
VERSION = "1.0.0"
end
3 changes: 2 additions & 1 deletion ruby-xcdm.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,13 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.required_ruby_version = '~> 2.7'

spec.add_dependency "builder", "~> 3.2"
spec.add_dependency "activesupport", "~> 4.1"
spec.add_dependency "plist", "~> 3.1"

spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "bundler", "~> 2.2"
spec.add_development_dependency "rake"
spec.add_development_dependency "turn"
end
2 changes: 1 addition & 1 deletion test/schema_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'xcdm/entity'
require 'xcdm/schema'
require 'rexml/document'
require 'active_support/all'
require 'active_support/inflector'

module XCDM
class SchemaTest < Minitest::Test
Expand Down

0 comments on commit 0e3212d

Please sign in to comment.