Skip to content

Commit 996bf16

Browse files
authored
disable/remove jekyll related posts (--lsi) + related dependencies (#114)
* disable/remove jekyll related posts (--lsi) + related dependencies * ./bin/deploy: remove --lsi from build command
1 parent e0ebd22 commit 996bf16

File tree

3 files changed

+5
-16
lines changed

3 files changed

+5
-16
lines changed

Gemfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ gem 'jekyll','~>4.1.0'
1111
# https://github.com/0xdevalias/devalias.net/issues/83
1212
# https://github.com/jekyll/classifier-reborn/issues/192
1313
# https://github.com/SciRuby/rb-gsl/issues/63
14-
gem 'nmatrix'
15-
gem 'gsl' # Note: you need to install a compatible version (eg. 2.1) of gsl first: brew install [email protected]
16-
gem 'classifier-reborn'
14+
# gem 'nmatrix'
15+
# gem 'gsl' # Note: you need to install a compatible version (eg. 2.1) of gsl first: brew install [email protected]
16+
# gem 'classifier-reborn'
1717

1818
group :jekyll_plugins do
1919
# gem 'jekyll-admin' # using outdated 1.4.x version of sinatra, see https://github.com/jekyll/jekyll-admin/issues/601

Gemfile.lock

-12
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ GEM
33
specs:
44
addressable (2.7.0)
55
public_suffix (>= 2.0.2, < 5.0)
6-
backports (3.18.1)
7-
classifier-reborn (2.2.0)
8-
fast-stemmer (~> 1.0)
96
colorator (1.1.0)
107
commonmarker (0.21.0)
118
ruby-enum (~> 0.5)
@@ -16,10 +13,8 @@ GEM
1613
eventmachine (1.2.7)
1714
faraday (1.0.1)
1815
multipart-post (>= 1.2, < 3)
19-
fast-stemmer (1.0.2)
2016
ffi (1.13.1)
2117
forwardable-extended (2.6.0)
22-
gsl (2.1.0.3)
2318
http_parser.rb (0.6.0)
2419
i18n (1.8.4)
2520
concurrent-ruby (~> 1.0)
@@ -78,13 +73,9 @@ GEM
7873
rb-inotify (~> 0.9, >= 0.9.10)
7974
mercenary (0.4.0)
8075
multipart-post (2.1.1)
81-
nmatrix (0.2.4)
82-
packable (~> 1.3, >= 1.3.5)
8376
octokit (4.18.0)
8477
faraday (>= 0.9)
8578
sawyer (~> 0.8.0, >= 0.5.3)
86-
packable (1.3.14)
87-
backports
8879
pathutil (0.16.2)
8980
forwardable-extended (~> 2.6)
9081
public_suffix (4.0.5)
@@ -109,8 +100,6 @@ PLATFORMS
109100
ruby
110101

111102
DEPENDENCIES
112-
classifier-reborn
113-
gsl
114103
jekyll (~> 4.1.0)
115104
jekyll-commonmark
116105
jekyll-compose
@@ -126,7 +115,6 @@ DEPENDENCIES
126115
jekyll-time-to-read
127116
jekyll-twitter-plugin
128117
jekyll_version_plugin
129-
nmatrix
130118

131119
BUNDLED WITH
132120
2.1.4

bin/build

+2-1
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,5 @@ if ! check_site_setup; then
6060
fi
6161

6262
# Build the Jekyll site
63-
JEKYLL_ENV=production bundle exec jekyll build --lsi --profile $@
63+
# JEKYLL_ENV=production bundle exec jekyll build --lsi --profile $@
64+
JEKYLL_ENV=production bundle exec jekyll build --profile $@

0 commit comments

Comments
 (0)