Skip to content

Commit

Permalink
updated bundler and jekyll admin
Browse files Browse the repository at this point in the history
  • Loading branch information
sujaykundu777 committed May 1, 2021
1 parent 7273f67 commit d415561
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 9 deletions.
3 changes: 2 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,10 @@ group :jekyll_plugins do
gem 'jekyll-seo-tag', '~> 2.6.1'
gem 'jekyll-sitemap', '~> 1.4.0'
gem 'jekyll-menus', '~> 0.6.1'
gem 'jekyll-admin', '~> 0.10.2'
gem 'jekyll-admin', '~> 0.11.0'
end


# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
# and associated library.
install_if -> { RUBY_PLATFORM =~ %r!mingw|mswin|java! } do
Expand Down
6 changes: 3 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ GEM
rouge (~> 3.0)
safe_yaml (~> 1.0)
terminal-table (~> 2.0)
jekyll-admin (0.10.2)
jekyll-admin (0.11.0)
jekyll (>= 3.7, < 5.0)
sinatra (~> 1.4)
sinatra-contrib (~> 1.4)
Expand Down Expand Up @@ -145,7 +145,7 @@ DEPENDENCIES
bundler
devlopr (~> 0.4.5)
jekyll (~> 4.2, >= 4.1.1)
jekyll-admin (~> 0.10.2)
jekyll-admin (~> 0.11.0)
jekyll-gist (~> 1.5.0)
jekyll-menus (~> 0.6.1)
jekyll-paginate (~> 1.1.0)
Expand All @@ -161,4 +161,4 @@ DEPENDENCIES
wdm (~> 0.1.1)

BUNDLED WITH
2.1.4
2.2.16
14 changes: 13 additions & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ description: >- # this means to ignore newlines until "baseurl:"
url: "" # the base hostname & protocol for your site, e.g. https://example.github.io
baseurl: "" # the subpath of your site, e.g. /blog

# Navigation
urls:
- text: Home
url: /
Expand Down Expand Up @@ -155,6 +156,17 @@ plugins:
- jekyll-seo-tag
- jekyll-sitemap
- jekyll-menus
- jekyll-admin

# Jekyll Admin Config
jekyll_admin:
# hidden_links:
# - posts
# - pages
# - staticfiles
# - datafiles
# - configuration
homepage: "posts"


# Exclude from processing.
Expand All @@ -164,7 +176,7 @@ plugins:
#
# Excluded items can be processed by explicitly listing the directories or
# their entries' file path in the `include:` list.
#

exclude:
- .sass-cache/
- .jekyll-cache/
Expand Down
5 changes: 3 additions & 2 deletions devlopr.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Gem::Specification.new do |spec|
spec.name = "devlopr"
spec.version = "0.4.5"
spec.version = "0.4.6"
spec.authors = ["Sujay Kundu"]
spec.email = ["[email protected]"]

Expand All @@ -22,7 +22,8 @@ Gem::Specification.new do |spec|
spec.add_runtime_dependency "jekyll-seo-tag", '~> 2.6.1'
spec.add_runtime_dependency "jekyll-paginate", '~> 1.1.0'
spec.add_runtime_dependency "jekyll-gist", '~> 1.5.0'
spec.add_runtime_dependency "jekyll-admin", '~> 0.11.0'

spec.add_development_dependency "bundler", "~> 2.1.4"
spec.add_development_dependency "bundler", "~> 2.2.6"
spec.add_development_dependency "rake", "~> 12.0"
end
4 changes: 2 additions & 2 deletions install.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ For bundler :
```bash
$ gem install bundler
$ bundler -v
Bundler version 2.1.4
Bundler version 2.2.6
```
Add jekyll :

Expand All @@ -80,7 +80,7 @@ You can check the jekyll version

```
$ bundle exec jekyll -v
jekyll 4.0.0
jekyll 4.2.0
```

> **Step 6.** Install the gem dependencies by running the following command
Expand Down

0 comments on commit d415561

Please sign in to comment.