jekyll-sass-converter | A Sass converter for Jekyll | Theme library
kandi X-RAY | jekyll-sass-converter Summary
kandi X-RAY | jekyll-sass-converter Summary
Let Jekyll build your Sass and SCSS!.
Support
Quality
Security
License
Reuse
Top functions reviewed by kandi - BETA
- Sets a content source to the source .
- Create a new extension .
jekyll-sass-converter Key Features
jekyll-sass-converter Examples and Code Snippets
Community Discussions
Trending Discussions on jekyll-sass-converter
QUESTION
I am trying to contribute to a Github Page/Jekyll site and want to be able to visualise changes locally but when I run bundle exec jekyll serve
but I get this output:
ANSWER
Answered 2021-Feb-02 at 16:29I had the same problem and I found a workaround here at https://github.com/jekyll/jekyll/issues/8523
Add gem "webrick"
to the Gemfile in your website. Than run bundle install
At this point you can run bundle exec jekyll serve
For me it works!
QUESTION
I have updated my mac to use Catalina and now I am having all sorts of issues when I try and install Jekyll.
This is what I get when I run my usual grunt setup:
...ANSWER
Answered 2020-Oct-16 at 11:56The root problem is that you cannot install one of jekyl's dependancies - specifically the ffi gem. Knowing that will better help you workout a fix.
You can see that this is the error by reading your bundle output. Learn how to read these so you can better help yourself in the future; If you were searching for "install ffi on macOS" you might have found more information available to you.
Give that you've just installed Catalina, it's likely that GCC isn't on your machine, or is outdated, or is unlinked.
Try running xcode-select --install
to (re)install the Xcode command line tools.
At the very top of your bundle output is a warning that you shouldn't use sudo
when installing gems. It's good advice to follow!
Even better advice would be to use rbenv or rvm to create gem sets or environments for each ruby application you're working with. But, if you don't go all the way down that path, ** at least, stop using sudo**
QUESTION
I tried to add the "Jekyll" workflow to my repository in Github, but every time it runs it is marked as failure.
Here is an error message, I tried to remove Gemfile.lock from exclude (_config.yml
) but it didn't help... Here is a repository to which I'm trying to add a workflow: https://github.com/igorkowalczyk/blog
ANSWER
Answered 2020-Aug-17 at 13:23After a so many attempts to fix the tests, i finnaly find a solution, thanks you @fredrik*
Here is my workflow file:
QUESTION
Ok, so, I somehow managed to break my jekyll website and I don't understand why. When I try to serve the site with jekyll I am prompted the following error:
...ANSWER
Answered 2020-Jul-24 at 08:06Your project directory structure looks a little odd, since you use the unconventional organisation within the src
folder.
I see 2 simple solutions:
1. Move the contents out of thesrc
folder into the root
That is the expected structure and you don't run into further configuration issues. It will just work because everything is where it is supposed to be.
2. Configure sass in_config.yml
In your _config.yml
add the following sections:
QUESTION
I tried to create a website using Jekyll.
I used git clone
to copy jekyll-theme-hackcss,
and then followed instructions from the arch-wiki rubygems page to get the right gem packages.
From inside the cloned folder I used:
...ANSWER
Answered 2020-Jun-23 at 05:04There may be one culprit gem here but you will run into this problem again and again unless you fix your underlying approach.
Look at your gems environment; all gems are installed into one folder, regardless of the project you’re working on. So, if you have two projects with conflicting dependencies you will get this problem again.
There are tools, like RVM, which let you create environments for each project. So, each project has its own separate collection of gems and even distinct versions of Ruby if you need 2.7 in one project and 2.5 for another.
See "Easy way to setting Ruby Version Manager (RVM) on projects" for how to use RVM and create a gemset for each project.
QUESTION
First of all, I'm aware that I'm running the risk that this question is already answered somewhere else, but because I don't know the origin of this issue I'm not sure what to search for to find the answer.
The Problem
I'm running bundle and Jekyll locally, which works perfectly fine. But when I install on Travis-CI, it presents me with the error Could not find public_suffix-4.0.4 in any of the sources
. However, public_suffix-4.0.4
is clearly in my Gemfile.lock.
My Question
What might be causing the problem and what hints should I look for to find an answer?
Error message
...ANSWER
Answered 2020-Apr-15 at 15:43If another bundle install
didn't work, delete Gemfile.lock
then try specifying the version for public_suffix
in Gemfile
like so:
QUESTION
I'm trying to set up a GitHub Pages repo. Steps I've followed:
Install bundler ...ANSWER
Answered 2019-Nov-14 at 05:48An alternative would be to "use Jekyll in Windows with Docker" (from James Sturtevant)
That would take advantage of the Docker image jekyll/jekyll
(see its README).
QUESTION
After installing jekyll (v4.0.0 on Ruby v2.6.5 on macOS Mojave 10.14.6 with Xcode installed) when running any jekyll commands, like jekyll --version
for instance, I receive an error: Symbol not found: _ffi_type_double (LoadError)
.
Found some ffi-related stuff on StackOverflow which did not help me. Therefore, I can’t use jekyll currently…any ideas on this?
Here’s the traceback:
...ANSWER
Answered 2019-Oct-30 at 14:30Installing Mac OS X again was the only solution. Now Jekyll is running again...
QUESTION
To have a repository with the jekyll site configuration files (but not the _site), and each time I push to the repository, a gitlab pipeline runs. With that pipeline, the site is build with Jekyll (I'm using this theme https://github.com/mmistakes/jekyll-theme-basically-basic)
A quick view on the essential files which I'm troubling withGemfile
...ANSWER
Answered 2019-Oct-16 at 06:23In your Gemfile
, uncomment #gem "jekyll-theme-basically-basic"
to read gem "jekyll-theme-basically-basic"
.
For some reasons, in your .gitlab-ci.yml
, all the gem install ...
are useless, and it's the bundle install
that does the required job.
QUESTION
I postes this question because I didn't find any related answer on stackoverflow. I did everything. I will explain what I have tried.
When I start the Rails server using rails s
, I get the following output:
ANSWER
Answered 2019-Jul-03 at 12:33The root of the problem seems to be bundler. What operating system and Ruby version are you using? It may be a problem with old OpenSSL library, so you can not install bundler and everything after it.
If you are using jRuby (your gem list
output tells so), your problem seems to be the same as described in link. And there is a solution as well.
Maybe you forgot to set 2.1.2
version of ruby as global? (rbenv set global 2.1.2
)
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install jekyll-sass-converter
Support
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page