9 Commits

Author SHA1 Message Date
1e1e5fc72f Update 'jekyll-theme-hacker.gemspec' 2021-06-19 15:08:25 +00:00
Parker Moore
7b7303abef Merge pull request #59 from pages-themes/github-actions
Add test CI workflow on GitHub Actions
2020-08-08 14:55:10 -04:00
Parker Moore
4cc4b8f123 Merge branch 'master' into github-actions 2020-08-08 14:46:29 -04:00
Parker Moore
20f7fc192f Create .github/workflows/ci.yaml 2020-08-08 14:45:43 -04:00
Parker Moore
4c729f069e Separate build & test 2020-08-08 14:33:06 -04:00
Parker Moore
240a7c1e3f Disable Gemspec/RequiredRubyVersion 2020-08-08 14:26:40 -04:00
Parker Moore
8113e87bc0 Update ci.yaml 2020-08-08 14:11:34 -04:00
Parker Moore
6ea85f72d1 On: push 2020-08-08 14:10:57 -04:00
Parker Moore
df4e31bad2 Add test CI workflow 2020-08-08 14:08:41 -04:00
3 changed files with 22 additions and 5 deletions

14
.github/workflows/ci.yaml vendored Normal file
View File

@@ -0,0 +1,14 @@
on: push
jobs:
build:
runs-on: ubuntu-latest
name: script/cibuild
steps:
- uses: actions/checkout@v2
- uses: actions/setup-ruby@v1
with:
ruby-version: 2.7
- name: build
run: script/bootstrap
- name: test
run: script/cibuild

View File

@@ -4,3 +4,6 @@ AllCops:
Metrics/LineLength:
Enabled: false
Gemspec/RequiredRubyVersion:
Enabled: false

View File

@@ -1,13 +1,13 @@
# frozen_string_literal: true
Gem::Specification.new do |s|
s.name = 'jekyll-theme-hacker'
s.name = 'jekyll-theme-cracker'
s.version = '0.1.2'
s.license = 'CC0-1.0'
s.authors = ['Jason Costello', 'GitHub, Inc.']
s.email = ['opensource+jekyll-theme-hacker@github.com']
s.homepage = 'https://github.com/pages-themes/hacker'
s.summary = 'Hacker is a Jekyll theme for GitHub Pages'
s.authors = ['Jason Costello', 'GitHub, Inc.', 'Atlas Cove']
s.email = ['Atlas48@gmx.com','opensource+jekyll-theme-hacker@github.com']
s.homepage = 'https://git.sdf.org/Atlas48/cracker'
s.summary = 'Cracker is a Jekyll theme forcked from hacker'
s.files = `git ls-files -z`.split("\x0").select do |f|
f.match(%r{^((_includes|_layouts|_sass|assets)/|(LICENSE|README)((\.(txt|md|markdown)|$)))}i)