Skip to content
This repository was archived by the owner on May 30, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 28 additions & 24 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ PATH
remote: .
specs:
mailcatcher (0.6.0)
activesupport (>= 3.0.0, < 4.1)
activesupport (>= 3.0.0, < 6.1)
eventmachine (~> 1.0.0)
haml (>= 3.1, < 4.1)
mail (~> 2.3)
Expand All @@ -14,9 +14,12 @@ PATH
GEM
remote: https://rubygems.org/
specs:
activesupport (3.2.17)
i18n (~> 0.6, >= 0.6.4)
multi_json (~> 1.0)
activesupport (6.0.3.3)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 0.7, < 2)
minitest (~> 5.1)
tzinfo (~> 1.1)
zeitwerk (~> 2.2, >= 2.2.2)
childprocess (0.5.1)
ffi (~> 1.0, >= 1.0.11)
chunky_png (1.3.0)
Expand All @@ -28,25 +31,25 @@ GEM
chunky_png (~> 1.2)
fssm (>= 0.2.7)
sass (~> 3.2.17)
daemons (1.1.9)
eventmachine (1.0.3)
concurrent-ruby (1.1.7)
daemons (1.3.1)
eventmachine (1.0.9.1)
execjs (2.0.2)
ffi (1.9.3)
fssm (0.2.10)
haml (4.0.5)
haml (4.0.7)
tilt
hike (1.2.3)
i18n (0.6.9)
i18n (1.8.5)
concurrent-ruby (~> 1.0)
json (1.8.1)
mail (2.5.4)
mime-types (~> 1.16)
treetop (~> 1.4.8)
mime-types (1.25.1)
mail (2.7.1)
mini_mime (>= 0.1.1)
mini_mime (1.0.2)
minitest (5.3.1)
multi_json (1.9.2)
polyglot (0.3.4)
multi_json (1.15.0)
rack (1.5.2)
rack-protection (1.5.2)
rack-protection (1.5.5)
rack
rake (10.1.1)
rdoc (4.1.1)
Expand All @@ -58,13 +61,13 @@ GEM
multi_json (~> 1.0)
rubyzip (~> 1.0)
websocket (~> 1.0.4)
sinatra (1.4.4)
rack (~> 1.4)
sinatra (1.4.8)
rack (~> 1.5)
rack-protection (~> 1.4)
tilt (~> 1.3, >= 1.3.4)
skinny (0.2.3)
tilt (>= 1.3, < 3)
skinny (0.2.4)
eventmachine (~> 1.0.0)
thin (~> 1.5.0)
thin (>= 1.5, < 1.7)
sprockets (2.12.0)
hike (~> 1.2)
multi_json (~> 1.0)
Expand All @@ -75,19 +78,20 @@ GEM
sprockets-sass (1.0.3)
sprockets (~> 2.0)
tilt (~> 1.1)
sqlite3 (1.3.9)
sqlite3 (1.4.2)
thin (1.5.1)
daemons (>= 1.0.9)
eventmachine (>= 0.12.6)
rack (>= 1.0.0)
thread_safe (0.3.6)
tilt (1.4.1)
treetop (1.4.15)
polyglot
polyglot (>= 0.3.1)
tzinfo (1.2.7)
thread_safe (~> 0.1)
uglifier (2.5.0)
execjs (>= 0.3.0)
json (>= 1.8.0)
websocket (1.0.7)
zeitwerk (2.4.0)

PLATFORMS
ruby
Expand Down
2 changes: 1 addition & 1 deletion mailcatcher.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Gem::Specification.new do |s|

s.required_ruby_version = '>= 1.8.7'

s.add_dependency "activesupport", ">= 3.0.0", "< 4.1"
s.add_dependency "activesupport", ">= 3.0.0", "< 6.1"
s.add_dependency "eventmachine", "~> 1.0.0"
s.add_dependency "haml", ">= 3.1", "< 4.1"
s.add_dependency "mail", "~> 2.3"
Expand Down