jekyll-theme-open-project 1.1.7 → 1.1.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1f9fb728dcaec1733126dd837316df368a372ed99cbf63b1e43f60f93cda9350
4
- data.tar.gz: 19c23d2ed09970e408e51eeb321369a19691b3a65a9986ce1ce8968d20001156
3
+ metadata.gz: 02cc4a622a4fd914fc625497feb31d707e1c9e7e819586fa134012422603ecbf
4
+ data.tar.gz: 5fac284ece99acc5ac8dfac306f99d6e8bee29dfc7767fafa879458d2cefa42e
5
5
  SHA512:
6
- metadata.gz: 97b5135b6bc8f9830cbdf946f59fd2971436ca1e32ac8542dd29be848971aaf9a6722c5e4ffd81b3622f3ad5d940abc1c2e4c493d4dc358b8d84a7caf3cff707
7
- data.tar.gz: '0592a659dded78dc979812cef1d730b821dddbb51595bc7c45ca4925781c1f0f1a46a2b81614ad1457bc34aab829d5ce9032d05c18bd76673a4c32bea0747bdd'
6
+ metadata.gz: ae41e0f993e045441bb2d4f108507b828b40430a87f0c92ff909a2b4419d78efd3cef5940e27b38ae87cd1e29dff486ceac54eca7e77e8f5283b64bfd6757d67
7
+ data.tar.gz: 374372877312deae3331a8e57a0f11e09ee3beb5118795205a4b6fc81d5b9961df82ce955ec060ac6a56d9b03c114abb3e8ab1c3b74ea59cfeb53e47e84f3d47
data/README.md CHANGED
@@ -14,7 +14,7 @@ to AWS S3.
14
14
 
15
15
  * Creating a site: [how to](#starting-a-site-with-this-theme)
16
16
 
17
- * [Universal site setup](#universal-setup)
17
+ * [General site setup](#general-setup)
18
18
  * [Hub site setup](#hub-site)
19
19
  * [Project site setup](#project-site)
20
20
 
@@ -91,7 +91,7 @@ This assumes you have mysite.local mapped in your hosts file,
91
91
  otherwise omit --host and it’ll use “localhost” as domain name.
92
92
 
93
93
 
94
- ## Universal setup
94
+ ## General setup
95
95
 
96
96
  These settings apply to both site types (hub and project).
97
97
 
@@ -358,7 +358,7 @@ whether on hub home site or each individual project site:
358
358
 
359
359
  ### Blog
360
360
 
361
- Author project site blog posts as described in the universal setup section.
361
+ Author project site blog posts as described in the general site setup section.
362
362
 
363
363
  ### Software and specs
364
364
 
@@ -647,32 +647,49 @@ need to be included in the gem, edit regexp in the gemspec.
647
647
 
648
648
  #### Manual test during development
649
649
 
650
- While working on a site using this Jekyll theme, you can use local theme copy,
651
- and thus test the theme before release. The sequence would be as follows:
650
+ When you’re working on visual aspects of the theme, it’s useful
651
+ to see how it would affect the end result (a site *built with* this theme).
652
652
 
653
- 1. Change Gemfile to point to local theme copy.
653
+ Here’s how to develop the theme while simultaneously previewing the changes
654
+ on a site. The sequence would be as follows, assuming you have a local copy
655
+ of this repo and have a Jekyll site using this theme:
654
656
 
655
- For example, change from `gem "jekyll-theme-open-project", "~> 1.0.6"`
656
- to `gem "jekyll-theme-open-project", :path => "../jekyll-theme-open-project"`
657
+ 1. For the Jekyll site, change Gemfile to point to local copy
658
+ of the theme (the root of this repo) and run `bundle`.
657
659
 
658
- 2. Run `bundle exec jekyll serve`.
660
+ For example, you’d change `gem "jekyll-theme-open-project", "~> 1.0.6"`
661
+ to `gem "jekyll-theme-open-project", :path => "../jekyll-theme-open-project"`.
662
+ The relative path assumes your site root and theme root are sibling directories.
659
663
 
660
- 3. Make changes to theme and reload site (it may not reload automatically).
664
+ 2. Run `bundle exec jekyll serve` to start Jekyll’s development server.
661
665
 
662
- 4. Release theme see below.
666
+ 3. Make changes to both theme and site directory contents.
663
667
 
664
- 5. (To bump the site to this latest version, change Gemfile back,
665
- bump theme dependency version to the one just released,
668
+ 4. If needed, kill with Ctrl+C then relaunch the serve command
669
+ to apply the changes you made to the theme
670
+ (it may not reload automatically if changes only affect the theme and not the site
671
+ you’re serving).
672
+
673
+ 4. Once you’re satisfied, release a new version of the theme — see below.
674
+
675
+ 5. (To later bump the site to this latest version: revert the Gemfile change,
676
+ update theme dependency version to the one you’ve just released,
666
677
  run `bundle --full-index` to update lockfile properly,
667
678
  and your site is ready to go.)
668
679
 
669
680
  #### Releasing
670
681
 
671
- Update .gemspec file with the new version and commit the change.
682
+ Make sure theme works: build script is under construction,
683
+ so use good judgement and thorough manual testing.
684
+
685
+ 1. First, update version number in .gemspec within this repo’s root.
672
686
 
673
- Build new gem version and push it to rubygems.org with:
687
+ 2. Then, execute `./develop/release`. This does the following:
674
688
 
675
- ./develop/release
689
+ * Builds new gem version
690
+ * Pushes gem to rubygems.org
691
+ * Creates new version tag in this repository
692
+ * Pushes changes to GitHub
676
693
 
677
694
  #### Testing with build script (TBD)
678
695
 
@@ -6,6 +6,7 @@ permalink: /blog/:month-:day-:year/:title/
6
6
 
7
7
  exclude:
8
8
  - /**/.git/*
9
+ - /**/_*_repo/*
9
10
  - /_projects/*/assets/css/*
10
11
 
11
12
  collections:
@@ -11,7 +11,7 @@
11
11
  {% assign num_specs = specs | size %}
12
12
  {% assign num_featured_specs = featured_specs | size %}
13
13
  {% if num_featured_specs > 0 %}
14
- [% assign specs = featured_specs %}
14
+ {% assign specs = featured_specs %}
15
15
  {% endif %}
16
16
 
17
17
  {% assign posts = site.posts %}
@@ -5,10 +5,10 @@
5
5
  {% include nav-page-link.html url="/projects/" title="Open Projects" %}
6
6
 
7
7
  {% if site.num_all_software > 0 %}
8
- {% include nav-page-link.html url="/software/" title="Software" active_for_nested=true %}
8
+ {% include nav-page-link.html url="/software/" title="All software" active_for_nested=true %}
9
9
  {% endif %}
10
10
  {% if site.num_all_specs > 0 %}
11
- {% include nav-page-link.html url="/specs/" title="Specifications" active_for_nested=true %}
11
+ {% include nav-page-link.html url="/specs/" title="All specifications" active_for_nested=true %}
12
12
  {% endif %}
13
13
  {% if site.num_posts_combined > 0 %}
14
14
  {% include nav-page-link.html url="/blog/" title="Blog" active_for_nested=true %}
@@ -16,7 +16,7 @@
16
16
 
17
17
  {% else %}
18
18
  {% if site.num_all_software > 0 %}
19
- {% include nav-page-link.html url="/software/" title="Software" active_for_nested=true %}
19
+ {% include nav-page-link.html url="/software/" title="Software ecosystem" active_for_nested=true %}
20
20
  {% endif %}
21
21
  {% if site.num_all_specs > 0 %}
22
22
  {% include nav-page-link.html url="/specs/" title="Specifications" active_for_nested=true %}
@@ -1,6 +1,6 @@
1
1
  ---
2
- title: Software
3
- description: Open-source software developed with Ribose’s cooperation.
2
+ title: Software ecosystem
3
+ description: Open-source tools conforming to our specifications.
4
4
  layout: software-index
5
5
  hero_include: index-page-hero.html
6
6
  ---
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  title: Specifications
3
- description: Because specifications are cool!
3
+ description: Standards at the foundation of this project.
4
4
  layout: spec-index
5
5
  hero_include: index-page-hero.html
6
6
  ---
@@ -114,21 +114,20 @@ body > .underlay > footer {
114
114
  font-size: 120%;
115
115
  }
116
116
 
117
- &:first-child {
118
- margin-right: 10px;
117
+ margin-right: 10px;
119
118
 
119
+ &, &:link, &:visited {
120
+ color: white;
121
+ background-color: rgba(white, 0.32);
122
+ }
123
+ &:first-child {
120
124
  &, &:link, &:visited {
121
- color: white;
122
- background-color: rgba(white, 0.32);
125
+ color: $primary-dark-color !important;
126
+ background-color: white !important;
123
127
  }
124
128
  }
125
129
  &:last-child {
126
130
  margin-right: 0;
127
-
128
- &, &:link, &:visited {
129
- color: $primary-dark-color;
130
- background-color: white;
131
- }
132
131
  }
133
132
 
134
133
  transition: box-shadow .2s ease-out;
@@ -69,6 +69,7 @@
69
69
  text-align: right;
70
70
  width: 32px;
71
71
  padding-left: 10px;
72
+ padding-right: 10px;
72
73
  }
73
74
  }
74
75
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-open-project
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.7
4
+ version: 1.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-09-10 00:00:00.000000000 Z
11
+ date: 2018-09-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -72,14 +72,14 @@ dependencies:
72
72
  requirements:
73
73
  - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: 1.0.2
75
+ version: 1.0.6
76
76
  type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
- version: 1.0.2
82
+ version: 1.0.6
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: bundler
85
85
  requirement: !ruby/object:Gem::Requirement