Skip to content

Commit

Permalink
Warn about Ruby 3 incompatibility.
Browse files Browse the repository at this point in the history
  • Loading branch information
TreyE committed Aug 1, 2023
1 parent 3431b2a commit a71daae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.6.6
2.7.5
4 changes: 2 additions & 2 deletions event_source.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ Gem::Specification.new do |spec|
spec.summary =
'Record changes to application state by storing updates as a sequence of events'
spec.description =
"This service uses Mogoid/MongoDB to create an event object to record a state change and
"This service uses Mongoid/MongoDB to create an event object to record a state change and
then processes it to update values in the underlying model. It's an implementation of
Martin Fowler's Event Sourcing design pattern and adapted from code developed by
Philippe Creux"
spec.homepage = 'https://github.com/ideacrew/event_source'
spec.license = 'MIT'
spec.required_ruby_version = Gem::Requirement.new('>= 2.5')
spec.required_ruby_version = Gem::Requirement.new('>= 2.5', "< 3")

# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
Expand Down

0 comments on commit a71daae

Please sign in to comment.