Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#133 updated to a loose Cloudinary dependency 1.8 #149

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
49 changes: 28 additions & 21 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ PATH
remote: .
specs:
attachinary (1.3.1)
cloudinary (~> 1.1.0)
cloudinary (~> 1.8)
rails (>= 3.2)

GEM
Expand Down Expand Up @@ -44,7 +44,7 @@ GEM
thread_safe (~> 0.3, >= 0.3.4)
tzinfo (~> 1.1)
addressable (2.3.8)
arel (6.0.3)
arel (6.0.4)
aws_cf_signer (0.1.3)
bson (3.1.2)
builder (3.2.2)
Expand All @@ -57,7 +57,7 @@ GEM
capybara-webkit (1.6.0)
capybara (>= 2.3.0, < 2.5.0)
json
cloudinary (1.1.0)
cloudinary (1.8.1)
aws_cf_signer
rest-client
coderay (1.1.0)
Expand All @@ -68,10 +68,11 @@ GEM
coffee-script-source
execjs
coffee-script-source (1.9.1.1)
concurrent-ruby (1.0.5)
connection_pool (2.2.0)
database_cleaner (1.4.1)
diff-lcs (1.2.5)
domain_name (0.5.24)
domain_name (0.5.20170404)
unf (>= 0.0.5, < 1.0.0)
erubis (2.7.0)
execjs (2.5.2)
Expand All @@ -82,8 +83,8 @@ GEM
railties (>= 3.0.0)
ffi (1.9.10)
formatador (0.2.5)
globalid (0.3.6)
activesupport (>= 4.1.0)
globalid (0.4.0)
activesupport (>= 4.2.0)
guard (2.12.8)
formatador (>= 0.2.4)
listen (>= 2.7, <= 4.0)
Expand All @@ -98,7 +99,7 @@ GEM
guard (~> 2.1)
guard-compat (~> 1.1)
rspec (>= 2.99.0, < 4.0)
http-cookie (1.0.2)
http-cookie (1.0.3)
domain_name (~> 0.5)
i18n (0.7.0)
jquery-rails (4.0.4)
Expand All @@ -114,10 +115,12 @@ GEM
loofah (2.0.2)
nokogiri (>= 1.5.9)
lumberjack (1.0.9)
mail (2.6.3)
mime-types (>= 1.16, < 3)
mail (2.6.6)
mime-types (>= 1.16, < 4)
method_source (0.8.2)
mime-types (2.6.1)
mime-types (3.1)
mime-types-data (~> 3.2015)
mime-types-data (3.2016.0521)
mini_portile (0.6.2)
minitest (5.7.0)
mongoid (4.0.2)
Expand All @@ -130,7 +133,7 @@ GEM
connection_pool (~> 2.0)
optionable (~> 0.2.0)
nenv (0.2.0)
netrc (0.10.3)
netrc (0.11.0)
nokogiri (1.6.6.2)
mini_portile (~> 0.6.0)
notiffany (0.0.6)
Expand Down Expand Up @@ -173,10 +176,10 @@ GEM
rb-fsevent (0.9.5)
rb-inotify (0.9.5)
ffi (>= 0.5.0)
rest-client (1.8.0)
rest-client (2.0.2)
http-cookie (>= 1.0.2, < 2.0)
mime-types (>= 1.16, < 3.0)
netrc (~> 0.7)
mime-types (>= 1.16, < 4.0)
netrc (~> 0.8)
rspec (3.3.0)
rspec-core (~> 3.3.0)
rspec-expectations (~> 3.3.0)
Expand All @@ -203,20 +206,21 @@ GEM
actionpack (~> 4.0)
activemodel (~> 4.0)
slop (3.6.0)
sprockets (3.3.4)
rack (~> 1.0)
sprockets-rails (2.3.3)
actionpack (>= 3.0)
activesupport (>= 3.0)
sprockets (>= 2.8, < 4.0)
sprockets (3.7.1)
concurrent-ruby (~> 1.0)
rack (> 1, < 3)
sprockets-rails (3.2.0)
actionpack (>= 4.0)
activesupport (>= 4.0)
sprockets (>= 3.0.0)
sqlite3 (1.3.10)
thor (0.19.1)
thread_safe (0.3.5)
tzinfo (1.2.2)
thread_safe (~> 0.1)
unf (0.1.4)
unf_ext
unf_ext (0.0.7.1)
unf_ext (0.0.7.4)
valid_attribute (2.0.0)
xpath (2.0.0)
nokogiri (~> 1.3)
Expand All @@ -241,3 +245,6 @@ DEPENDENCIES
simple_form
sqlite3
valid_attribute

BUNDLED WITH
1.11.2
2 changes: 1 addition & 1 deletion attachinary.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Gem::Specification.new do |s|
s.test_files = Dir["test/**/*"]

s.add_dependency 'rails', '>= 3.2'
s.add_dependency 'cloudinary', '~> 1.1.0'
s.add_dependency 'cloudinary', '~> 1.8'

s.add_development_dependency 'sqlite3'
s.add_development_dependency 'rspec-rails'
Expand Down