group :development do
gem ‘chef’, '11.4.4’
gem ‘guard’, '1.8.1’
end
I’ve looked over the Gemfiles of berkshelf and chef and none declare json directly, so I assume its some bundle trail…? Is there an easy solution to this that I can declare in the Gemfile?
I have done a manual gem install of json and gem list shows I have 1.8 and 1.7, but bundle still isn’t happy.
group :development do
gem 'chef', '11.4.4'
gem 'guard', '1.8.1'
end
I've looked over the Gemfiles of berkshelf and chef and none declare json directly, so I assume its some bundle trail…? Is there an easy solution to this that I can declare in the Gemfile?
I have done a manual gem install of json and gem list shows I have 1.8 and 1.7, but bundle still isn't happy.
group :development do
gem 'chef', '11.4.4'
gem 'guard', '1.8.1'
end
I've looked over the Gemfiles of berkshelf and chef and none declare json directly, so I assume its some bundle trail…? Is there an easy solution to this that I can declare in the Gemfile?
I have done a manual gem install of json and gem list shows I have 1.8 and 1.7, but bundle still isn't happy.
I'd be careful when putting Chef and Berkshelf in the same Gemfile. It's not guaranteed to work because both of these gems are "applications" and not designed to be loaded within the same Ruby VM.
It's recommended that you install Berkshelf with the gem command when possible!
--
Jamie Winsor @resetexistence
On Thursday, June 20, 2013 at 2:40 PM, Kyle Sloan wrote:
Thanks, this is now getting bundle to install without complaints.
group :development do
gem 'chef', '11.4.4'
gem 'guard', '1.8.1'
end
I've looked over the Gemfiles of berkshelf and chef and none declare json directly, so I assume its some bundle trail…? Is there an easy solution to this that I can declare in the Gemfile?
I have done a manual gem install of json and gem list shows I have 1.8 and 1.7, but bundle still isn't happy.
I'd be careful when putting Chef and Berkshelf in the same Gemfile. It's not guaranteed to work because both of these gems are "applications" and not designed to be loaded within the same Ruby VM.
It's recommended that you install Berkshelf with the gem command when possible!
I'd be careful when putting Chef and Berkshelf in the same Gemfile.
It's not guaranteed to work because both of these gems are
"applications" and not designed to be loaded within the same Ruby VM.
It's recommended that you install Berkshelf with the gem command when
possible!
Being fairly new to Ruby myself, how do you handle this when e.g. both
Berkshelf and Chef needs dependencies and both are applications?
While they don't need to be in the same VM, they preferably need to
work within the same directory structure (ie berks and knife commands)
I'd be careful when putting Chef and Berkshelf in the same Gemfile.
It's not guaranteed to work because both of these gems are
"applications" and not designed to be loaded within the same Ruby VM.
It's recommended that you install Berkshelf with the gem command when
possible!
Being fairly new to Ruby myself, how do you handle this when e.g. both
Berkshelf and Chef needs dependencies and both are applications?
While they don't need to be in the same VM, they preferably need to
work within the same directory structure (ie berks and knife commands)
I'd be careful when putting Chef and Berkshelf in the same Gemfile.
It's not guaranteed to work because both of these gems are
"applications" and not designed to be loaded within the same Ruby VM.
It's recommended that you install Berkshelf with the gem command when
possible!
Being fairly new to Ruby myself, how do you handle this when e.g. both
Berkshelf and Chef needs dependencies and both are applications?
While they don't need to be in the same VM, they preferably need to
work within the same directory structure (ie berks and knife commands)