Skip to content

Commit 0022a91

Browse files
Locking Rubby Gems versions for use in a variety of environments.
In my development environment I have several projects each one works with a different version of gems which sometimes leaves me in doubt if it is the version that is causing a certain bug, to avoid this, I fixed the versions of the gems where I identified that it would be important In rich versions environments.
1 parent ad544d8 commit 0022a91

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

Gemfile

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
source "https://rubygems.org"
22

3-
# Run `bundle install` to update gems.
4-
5-
gem 'jekyll'
3+
gem 'jekyll', '=3.2.1', :platforms => [:ruby, :x64_mingw, :mswin]
64
gem 'wdm', '>= 0.1.0' if Gem.win_platform?
75

86
group :jekyll_plugins do
97
gem 'jekyll-watch'
10-
gem 'jekyll-last-modified-at'
11-
# gem 'jekyll-multiple-languages'
12-
gem 'jekyll-mentions'
138
gem 'jemoji'
14-
gem 'jekyll-redirect-from'
15-
gem 'jekyll-sitemap'
169
gem 'jekyll-paginate'
10+
gem 'jekyll-last-modified-at', '>=1.0.0', :platforms => [:ruby, :x64_mingw, :mswin]
11+
gem 'jekyll-mentions', '=1.1.3', :platforms => [:ruby, :x64_mingw, :mswin]
12+
gem 'jekyll-redirect-from', '=0.11.0', :platforms => [:ruby, :x64_mingw, :mswin]
13+
gem 'jekyll-sitemap', '=0.11.0', :platforms => [:ruby, :x64_mingw, :mswin]
14+
# gem 'jekyll-multiple-languages'
1715
end

0 commit comments

Comments
 (0)