Skip to content

Commit

Permalink
1.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrii-fediuk committed Jun 16, 2017
1 parent 8d16d8b commit 09decea
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions plugin.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# name: df-core
# about: A common functionality of my Discourse plugins.
# version: 1.2.3
# version: 1.2.4
# authors: Dmitry Fedyuk
# url: https://discourse.pro
#register_asset 'javascripts/lib/sprintf.js'
Expand All @@ -26,18 +26,20 @@
=end
gem 'attr_required', '1.0.0'
# 2017-06-16
# The «rest-client», «http-cookie», and «domain_name» gems dependency
# The «rest-client», «netrc», «http-cookie», and «domain_name» gems dependency
# has been deleted from the Discourse today: https://github.com/discourse/discourse/commit/d82dbd56
# Out «dfg-paypal» gem depends on the «rest-client» gem.
# The «rest-client» gem depends on the «http-cookie» gem.
# The «rest-client» gem depends on the «http-cookie» and «netrc» gems.
# The «http-cookie» gem depends on the «domain_name» gem.
# So we are forced to add the «rest-client», «http-cookie», and «domain_name» gems dependency
# by the code below.
# https://rubygems.org/gems/rest-client
# https://rubygems.org/gems/http-cookie
# https://rubygems.org/gems/domain_name
# https://rubygems.org/gems/http-cookie
# https://rubygems.org/gems/rest-client
# https://rubygems.org/gems/netrc
gem 'domain_name', '0.5.20170404' # The latest version on today (2017-06-16)
gem 'http-cookie', '1.0.3' # The latest version on today (2017-06-16)
gem 'netrc', '0.11.0' # The latest version on today (2017-06-16)
gem 'rest-client', '2.0.2' # The latest version on today (2017-06-16)
# 2016-12-12
# Оригинальный https://github.com/nov/paypal-express перестал работать:
Expand Down

0 comments on commit 09decea

Please sign in to comment.