Skip to content

Commit

Permalink
Merge pull request #9333 from spark-solutions/fix/use-eval-gemfile-gl…
Browse files Browse the repository at this point in the history
…obally

Fixes #9327 #9326 #9325 #9324 #9323
  • Loading branch information
damianlegawiec committed Mar 26, 2019
2 parents 6ae3305 + 7e15b19 commit 7115bd7
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion api/Gemfile
@@ -1,4 +1,4 @@
eval(File.read(File.dirname(__FILE__) + '/../common_spree_dependencies.rb'))
eval_gemfile('../common_spree_dependencies.rb')

gem 'spree_core', path: '../core'

Expand Down
2 changes: 1 addition & 1 deletion backend/Gemfile
@@ -1,4 +1,4 @@
eval(File.read(File.dirname(__FILE__) + '/../common_spree_dependencies.rb'))
eval_gemfile('../common_spree_dependencies.rb')

gem 'spree_core', path: '../core'
gem 'spree_api', path: '../api'
Expand Down
2 changes: 1 addition & 1 deletion core/Gemfile
@@ -1,3 +1,3 @@
eval(File.read(File.dirname(__FILE__) + '/../common_spree_dependencies.rb'))
eval_gemfile('../common_spree_dependencies.rb')

gemspec
2 changes: 1 addition & 1 deletion frontend/Gemfile
@@ -1,4 +1,4 @@
eval(File.read(File.dirname(__FILE__) + '/../common_spree_dependencies.rb'))
eval_gemfile('../common_spree_dependencies.rb')

gem 'spree_core', path: '../core'
gem 'spree_api', path: '../api'
Expand Down
2 changes: 1 addition & 1 deletion sample/Gemfile
@@ -1,4 +1,4 @@
eval(File.read(File.dirname(__FILE__) + '/../common_spree_dependencies.rb'))
eval_gemfile('../common_spree_dependencies.rb')

gem 'spree_core', path: '../core'

Expand Down

0 comments on commit 7115bd7

Please sign in to comment.