Skip to content

Commit ffa60ec

Browse files
committed
Prepare gem and release
1 parent d6f6cd6 commit ffa60ec

37 files changed

+1418
-1
lines changed

.gitignore

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,33 @@
33
.RData
44
.Ruserdata
55
/*.Rproj
6+
7+
# Vim
8+
*~
9+
*.sw[p_]
10+
11+
# Sublime Text
12+
*.sublime-project
13+
*.sublime-workspace
14+
15+
# Ruby Gem
16+
*.gem
17+
.bundle
18+
Gemfile.lock
19+
**/vendor/bundle
20+
21+
# Node.js and NPM
22+
node_modules
23+
npm-debug.log*
24+
package-lock.json
25+
codekit-config.json
26+
27+
# macOS
28+
.DS_Store
29+
30+
# Jekyll generated files
31+
.jekyll-cache
32+
.jekyll-metadata
33+
.sass-cache
34+
_asset_bundler_cache
35+
_site

chulapa-jekyll.gemspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Gem::Specification.new do |spec|
44
spec.name = "chulapa-jekyll"
5-
spec.version = "0.1.0"
5+
spec.version = "1.0.0"
66
spec.authors = ["Diego H."]
77
spec.email = ["[email protected]"]
88

@@ -21,5 +21,6 @@ Gem::Specification.new do |spec|
2121
spec.add_runtime_dependency "jekyll-include-cache", "~> 0.1"
2222
spec.add_runtime_dependency "jekyll-sitemap", "~> 1.3"
2323
spec.add_runtime_dependency "jekyll-redirect-from", "~> 0.16"
24+
spec.add_runtime_dependency "github-pages", ">= 1.0", "< 99999.0"
2425

2526
end

test/.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.Rproj.user
2+
.Rhistory
3+
.RData
4+
.Ruserdata
5+
project.Rproj

test/Gemfile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
source 'https://rubygems.org'
2+
3+
# use local theme gem for testing
4+
gem "chulapa-jekyll", path: "../"
5+
6+
gem 'github-pages', group: :jekyll_plugins
7+
group :jekyll_plugins do
8+
gem 'jekyll-algolia', '~> 1.0'
9+
end
10+
11+
gem "wdm", "~> 0.1.0" if Gem.win_platform?
12+
gem "webrick"
13+
gem 'faraday-retry'
14+

test/LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2020 dieghernan
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

test/README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Chulapa 101
2+
3+
Click [**Use this template**](https://github.com/dieghernan/chulapa-101/generate) button above for cloning this repo and get started with [Chulapa Jekyll theme](https://github.com/dieghernan/chulapa).
4+
5+
Contains basic configuration to get you a site with:
6+
7+
- [Sample posts](./_posts/) and [paginated blog index](./blog/index.html).
8+
- [Sample collection](./_cheatsheet/) with Markdown and kramdown cheatsheets and [collection index](./_pages/cheatsheet.md).
9+
- Archive pages for posts grouped by year, category, and tag.
10+
- Demo page with the different Bootstrap components and how they look with the actual skin settings.
11+
- Sample 404 page.
12+
- Site search with Lunr.
13+
- Sample [`_config`](_config.yml) with minimal configuration.
14+
- Sample [`algolia-search.yml`](algolia-search.yml) for using Algolia+GitHub Actions. More guidance in the top of the file.
15+
- Sample files for extending the theme with your [own scripts](./_includes/custom/) and [css](./assets/css/).
16+
17+
[Configure as necessary](https://dieghernan.github.io/chulapa/docs/02-config) and replace sample content with your own.

0 commit comments

Comments
 (0)