Skip to content
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
58 changes: 36 additions & 22 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,35 @@ PATH
specs:
carrierwave-activerecord (0.3.0)
activerecord (~> 5.0)
carrierwave (~> 1.0.0)
carrierwave (>= 1.0, < 2.2)

GEM
remote: http://rubygems.org/
remote: https://rubygems.org/
specs:
activemodel (5.0.2)
activesupport (= 5.0.2)
activerecord (5.0.2)
activemodel (= 5.0.2)
activesupport (= 5.0.2)
arel (~> 7.0)
activesupport (5.0.2)
activemodel (5.2.4.4)
activesupport (= 5.2.4.4)
activerecord (5.2.4.4)
activemodel (= 5.2.4.4)
activesupport (= 5.2.4.4)
arel (>= 9.0)
activesupport (5.2.4.4)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (~> 0.7)
i18n (>= 0.7, < 2)
minitest (~> 5.1)
tzinfo (~> 1.1)
arel (7.1.4)
carrierwave (1.0.0)
activemodel (>= 4.0.0)
activesupport (>= 4.0.0)
mime-types (>= 1.16)
addressable (2.7.0)
public_suffix (>= 2.0.2, < 5.0)
arel (9.0.0)
carrierwave (2.1.1)
activemodel (>= 5.0.0)
activesupport (>= 5.0.0)
addressable (~> 2.6)
image_processing (~> 1.1)
mimemagic (>= 0.3.0)
mini_mime (>= 0.1.3)
ssrf_filter (~> 1.0)
coderay (1.1.1)
concurrent-ruby (1.0.5)
concurrent-ruby (1.1.8)
diff-lcs (1.1.3)
docile (1.1.5)
ffi (1.9.18)
Expand All @@ -42,18 +48,22 @@ GEM
guard-rspec (2.5.4)
guard (>= 1.1)
rspec (~> 2.11)
i18n (0.8.1)
i18n (1.8.8)
concurrent-ruby (~> 1.0)
image_processing (1.12.1)
mini_magick (>= 4.9.5, < 5)
ruby-vips (>= 2.0.17, < 3)
json (2.0.3)
listen (3.1.5)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
ruby_dep (~> 1.2)
lumberjack (1.0.11)
method_source (0.8.2)
mime-types (3.1)
mime-types-data (~> 3.2015)
mime-types-data (3.2016.0521)
minitest (5.10.1)
mimemagic (0.3.5)
mini_magick (4.11.0)
mini_mime (1.0.2)
minitest (5.14.3)
nenv (0.3.0)
notiffany (0.1.1)
nenv (~> 0.1)
Expand All @@ -62,6 +72,7 @@ GEM
coderay (~> 1.1.0)
method_source (~> 0.8.1)
slop (~> 3.4)
public_suffix (4.0.6)
rb-fchange (0.0.6)
ffi
rb-fsevent (0.9.8)
Expand All @@ -75,6 +86,8 @@ GEM
rspec-expectations (2.12.1)
diff-lcs (~> 1.1.3)
rspec-mocks (2.12.2)
ruby-vips (2.0.17)
ffi (~> 1.9)
ruby_dep (1.5.0)
shellany (0.0.1)
simplecov (0.14.1)
Expand All @@ -84,9 +97,10 @@ GEM
simplecov-html (0.10.0)
slop (3.6.0)
sqlite3 (1.3.13)
ssrf_filter (1.0.7)
thor (0.19.4)
thread_safe (0.3.6)
tzinfo (1.2.3)
tzinfo (1.2.9)
thread_safe (~> 0.1)

PLATFORMS
Expand Down
2 changes: 1 addition & 1 deletion carrierwave-activerecord.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Gem::Specification.new do |gem|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})

# CarrierWave has broken in 0.x releases.
gem.add_runtime_dependency 'carrierwave', '~> 1.0.0'
gem.add_runtime_dependency 'carrierwave', '>= 1.0', '< 2.2'

# ActiveRecord 3.3 is unlikely, but prevent it just in case.
gem.add_runtime_dependency 'activerecord', '~> 5.0'
Expand Down