cloudcannon-jekyll 0.0.1 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fc56e2c9a19c550a9cf86841c0ee2109ca0ed639f8237f31e11645c7de711939
4
- data.tar.gz: 78b5b96a3f011eb43f7883ad58d42bf67879f4eb959feaf1f154af7a83499cb9
3
+ metadata.gz: 29eeeaed3f7837ba32147794d52488d97e545c31b20bee3d30735ca4cdce8dda
4
+ data.tar.gz: 187c42471018cdb977a008c94255a5023fd874aaeabd84ae6c8d68c1d18cbf0e
5
5
  SHA512:
6
- metadata.gz: 25a982a20616ee1f35ba0ddc10f4e3f9f48f28eebdd2ec2c8fd1742aeb8d7c2478dc20e3fed73b71146cf8fddde5fc81d097abbc0ce4d5a867107f2b1f5dbc1e
7
- data.tar.gz: d0da726380464b23395d55401e058bff1e27c33b6fb137aa196a0044063a428879ac6adf3b67dfaf4097059f116262ed64b12d0ec14331b986077b3ed252350c
6
+ metadata.gz: 72903c1d96adeb5774fc5d34801c0d9818513ce2809da0077a173c72d47feaacbb4db64863e366dd4cacb98e127a83573d76d4ab655523826560b374c55b9e9b
7
+ data.tar.gz: 625814ed88607cf015665bee32481a20d4e15af46774fc22cc38bf846ff73132497409aee1ea1eadb502bbb03eb78e8b13c75b1ac87e825728f9ff7064dbd1a4
data/.gitignore CHANGED
@@ -1 +1,7 @@
1
- spec/dest/
1
+ Gemfile.lock
2
+ spec/dest/
3
+ spec/fixtures/.jekyll-cache/
4
+ spec/fixtures/_site/
5
+ gemfiles/.bundle/
6
+ gemfiles/*.gemfile.lock
7
+ cloudcannon-jekyll-*.gem
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --require spec_helper
@@ -4,7 +4,7 @@ inherit_gem:
4
4
  rubocop-jekyll: .rubocop.yml
5
5
 
6
6
  AllCops:
7
- TargetRubyVersion: 2.5
7
+ TargetRubyVersion: 2.6
8
8
  Include:
9
9
  - lib/**/*.rb
10
10
 
@@ -19,6 +19,8 @@ AllCops:
19
19
  - README.md
20
20
  - script/**/*
21
21
  - vendor/**/*
22
+ - gemfiles/**/*
23
+ - lib/cloudcannon-jekyll/safe-jsonify-filter.rb # TODO remove this and fix warnings
22
24
 
23
25
  Naming/MemoizedInstanceVariableName:
24
26
  Exclude:
@@ -0,0 +1,19 @@
1
+ language: ruby
2
+ cache: bundler
3
+ rvm:
4
+ - 2.6
5
+
6
+ before_install:
7
+ - gem update --system
8
+ - gem install bundler
9
+
10
+ script: script/cibuild
11
+
12
+ env:
13
+ global:
14
+ - NOKOGIRI_USE_SYSTEM_LIBRARIES=true
15
+ matrix:
16
+ - JEKYLL_VERSION="2.4.0"
17
+ - JEKYLL_VERSION="3.0.0"
18
+ - JEKYLL_VERSION="3.8.5"
19
+ - JEKYLL_VERSION="4.0.0"
data/Gemfile CHANGED
@@ -1,3 +1,5 @@
1
1
  source "https://rubygems.org"
2
2
 
3
3
  gemspec
4
+
5
+ gem "jekyll", ENV["JEKYLL_VERSION"] if ENV["JEKYLL_VERSION"]
data/HISTORY.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 0.0.2
2
+
3
+ * Subsequent testing version
4
+
1
5
  # 0.0.1
2
6
 
3
- * Initial version
7
+ * Initial testing version
data/README.md CHANGED
@@ -2,6 +2,7 @@
2
2
 
3
3
  A Jekyll plugin to create CloudCannon editor details.
4
4
 
5
+ [![Build Status](https://travis-ci.com/CloudCannon/cloudcannon-jekyll.svg?branch=master)](https://travis-ci.com/CloudCannon/cloudcannon-jekyll) [![Gem Version](https://badge.fury.io/rb/cloudcannon-jekyll.svg)](https://badge.fury.io/rb/cloudcannon-jekyll)
5
6
 
6
7
  ## Usage
7
8
 
@@ -29,14 +30,11 @@ plugins:
29
30
  ## Testing
30
31
 
31
32
  ```
32
- bundle exec rake test
33
+ bundle exec rspec
33
34
  ```
34
35
 
35
- Test multiple Jekyll versions with Appraisal:
36
+ To test a specific Jekyll version:
36
37
 
37
38
  ```
38
- bundle exec appraisal install
39
- bundle exec appraisal rake test
40
- bundle exec appraisal jekyll-2 rake test
41
- bundle exec appraisal jekyll-4 rake test
39
+ JEKYLL_VERSION="2.4.0" bundle update && bundle exec rspec
42
40
  ```
data/Rakefile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "bundler/gem_tasks"
2
4
  require "rspec/core/rake_task"
3
5
 
@@ -14,10 +14,13 @@ Gem::Specification.new do |spec|
14
14
  spec.email = ["support@cloudcannon.com"]
15
15
  spec.homepage = "https://github.com/cloudcannon/cloudcannon-jekyll"
16
16
  spec.licenses = ["MIT"]
17
- spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r!^(test|spec|features)/!) }
18
17
  spec.require_paths = ["lib"]
18
+
19
+ all_files = `git ls-files -z`.split("\x0")
20
+ spec.files = all_files.reject { |f| f.match(%r!^(test|spec|features)/!) }
21
+
19
22
  spec.add_dependency "jekyll", ">= 2.4.0", "< 5"
20
- spec.add_development_dependency "appraisal", "~> 2.2"
23
+
21
24
  spec.add_development_dependency "rake", "~> 13.0"
22
25
  spec.add_development_dependency "rspec", "~> 3.9"
23
26
  spec.add_development_dependency "rubocop", "~> 0.71"
@@ -1,10 +1,31 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require "cloudcannon-jekyll/generator"
4
- require "cloudcannon-jekyll/safe-jsonify-filter"
3
+ require "jekyll"
5
4
 
6
5
  module CloudCannonJekyll
7
- autoload :PageWithoutAFile, "cloudcannon-jekyll/page-without-a-file.rb"
6
+ autoload :PageWithoutAFile, "cloudcannon-jekyll/page-without-a-file"
7
+ autoload :Generator, "cloudcannon-jekyll/generator"
8
+ autoload :Configuration, "cloudcannon-jekyll/configuration"
9
+ autoload :SafeJsonifyFilter, "cloudcannon-jekyll/safe-jsonify-filter"
10
+ autoload :VERSION, "cloudcannon-jekyll/version"
11
+ end
12
+
13
+ Liquid::Template.register_filter(CloudCannonJekyll::SafeJsonifyFilter)
14
+
15
+ # Hooks didn't exist in Jekyll 2 so we monkey patch to get an :after_reset hook
16
+ if Jekyll::VERSION.start_with? "2"
17
+ module Jekyll
18
+ class Site
19
+ alias_method :jekyll_reset, :reset
8
20
 
9
- Liquid::Template.register_filter(SafeJsonifyFilter)
21
+ def reset
22
+ jekyll_reset
23
+ CloudCannonJekyll::Configuration.set(self)
24
+ end
25
+ end
26
+ end
27
+ else
28
+ Jekyll::Hooks.register :site, :after_reset do |site|
29
+ CloudCannonJekyll::Configuration.set(site)
30
+ end
10
31
  end
@@ -1,5 +1,9 @@
1
1
  {
2
2
  "time": {{ site.time | jsonify }},
3
+ "cloudcannon": {
4
+ "name": "cloudcannon-jekyll",
5
+ "version": {{ gem_version | jsonify }}
6
+ },
3
7
  "generator": {
4
8
  "name": "jekyll",
5
9
  "version": {{ jekyll.version | jsonify }},
@@ -1,5 +1,9 @@
1
1
  {
2
2
  "time": {{ site.time | jsonify }},
3
+ "cloudcannon": {
4
+ "name": "cloudcannon-jekyll",
5
+ "version": {{ gem_version | jsonify }}
6
+ },
3
7
  "generator": {
4
8
  "name": "jekyll",
5
9
  "version": {{ jekyll.version | jsonify }},
@@ -1,5 +1,9 @@
1
1
  {
2
2
  "time": {{ site.time | jsonify }},
3
+ "cloudcannon": {
4
+ "name": "cloudcannon-jekyll",
5
+ "version": {{ gem_version | jsonify }}
6
+ },
3
7
  "generator": {
4
8
  "name": "jekyll",
5
9
  "version": {{ jekyll.version | jsonify }},
@@ -0,0 +1,40 @@
1
+ # frozen_string_literal: true
2
+
3
+ module CloudCannonJekyll
4
+ class Configuration
5
+ class << self
6
+ def processed?(site)
7
+ site.instance_variable_get(:@_cloudcannon_jekyll_processed) == true
8
+ end
9
+
10
+ def process(site)
11
+ site.instance_variable_set :@_cloudcannon_jekyll_processed, true
12
+ end
13
+
14
+ def overridden_config(user_config)
15
+ config = Jekyll::Utils.deep_merge_hashes(Jekyll::Configuration::DEFAULTS, user_config)
16
+ config = config.add_default_collections if config.respond_to? :add_default_collections
17
+ config = config.fix_common_issues if config.respond_to? :fix_common_issues
18
+ config = config.add_default_excludes if config.respond_to? :add_default_excludes
19
+
20
+ key = Jekyll::VERSION.start_with?("2") ? "gems" : "plugins"
21
+
22
+ config[key] = Array(config[key])
23
+ config[key].push("cloudcannon-jekyll") unless config[key].include? "cloudcannon-jekyll"
24
+ config
25
+ end
26
+
27
+ def set(site)
28
+ return if processed? site
29
+
30
+ if site.respond_to? :config=
31
+ site.config = overridden_config(site.config)
32
+ else # Jekyll pre 3.5
33
+ site.instance_variable_set :@config, overridden_config(site.config)
34
+ end
35
+
36
+ process(site)
37
+ end
38
+ end
39
+ end
40
+ end
@@ -18,7 +18,7 @@ module CloudCannonJekyll
18
18
  def source_path
19
19
  path = "_cloudcannon/details.json"
20
20
  path = "_cloudcannon/details-2.x.json" if Jekyll::VERSION.start_with? "2."
21
- path = "_cloudcannon/details-3.0.x.json" if Jekyll::VERSION.start_with? "3.0."
21
+ path = "_cloudcannon/details-3.0.x.json" if Jekyll::VERSION.match? %r!3\.[0-4]\.!
22
22
 
23
23
  File.expand_path(path, File.dirname(__FILE__))
24
24
  end
@@ -35,7 +35,7 @@ module CloudCannonJekyll
35
35
  json.data["sitemap"] = false
36
36
  json.data["permalink"] = "/_cloudcannon/details.json"
37
37
 
38
- json.render({}, @site.site_payload)
38
+ json.render({}, @site.site_payload.merge("gem_version" => CloudCannonJekyll::VERSION))
39
39
  json.output
40
40
  end
41
41
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CloudCannonJekyll
4
- VERSION = "0.0.1"
4
+ VERSION = "0.0.4"
5
5
  end
@@ -0,0 +1,7 @@
1
+ #!/bin/sh
2
+
3
+ set -ex
4
+
5
+ bundle exec rspec "$@"
6
+ bundle exec rubocop -S
7
+ bundle exec gem build cloudcannon-jekyll.gemspec
@@ -0,0 +1,37 @@
1
+ #!/bin/sh
2
+
3
+ set -e
4
+
5
+ # Ensure we're in the project root
6
+
7
+ cd $(dirname "$0")/..
8
+
9
+ # Build the new gem
10
+
11
+ rm -rf cloudcannon-jekyll-*.gem
12
+ gem build -q cloudcannon-jekyll.gemspec
13
+
14
+ # Ensure we're on the master branch
15
+
16
+ (git branch | grep -q '* master') || {
17
+ echo "Only release from the master branch."
18
+ exit 1
19
+ }
20
+
21
+ # Figure out what version we're releasing
22
+
23
+ tag=v`ls cloudcannon-jekyll-*.gem | sed 's/^cloudcannon-jekyll-\(.*\)\.gem$/\1/'`
24
+
25
+ # Ensure we haven't released this version before
26
+
27
+ git fetch -t origin
28
+
29
+ (git tag -l | grep -q "$tag") && {
30
+ echo "Whoops, there's already a '${tag}' tag."
31
+ exit 1
32
+ }
33
+
34
+ # Push tag and upload new gem
35
+
36
+ gem push cloudcannon-jekyll-*.gem && git tag "$tag" &&
37
+ git push origin master && git push origin "$tag"
@@ -1,4 +1,5 @@
1
1
  #!/bin/bash
2
+
2
3
  set -ex
3
4
 
4
5
  bundle exec rspec "$@"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cloudcannon-jekyll
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - CloudCannon
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-11-04 00:00:00.000000000 Z
11
+ date: 2019-11-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -30,20 +30,6 @@ dependencies:
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: '5'
33
- - !ruby/object:Gem::Dependency
34
- name: appraisal
35
- requirement: !ruby/object:Gem::Requirement
36
- requirements:
37
- - - "~>"
38
- - !ruby/object:Gem::Version
39
- version: '2.2'
40
- type: :development
41
- prerelease: false
42
- version_requirements: !ruby/object:Gem::Requirement
43
- requirements:
44
- - - "~>"
45
- - !ruby/object:Gem::Version
46
- version: '2.2'
47
33
  - !ruby/object:Gem::Dependency
48
34
  name: rake
49
35
  requirement: !ruby/object:Gem::Requirement
@@ -108,32 +94,26 @@ extensions: []
108
94
  extra_rdoc_files: []
109
95
  files:
110
96
  - ".gitignore"
97
+ - ".rspec"
111
98
  - ".rubocop.yml"
112
- - Appraisals
99
+ - ".travis.yml"
113
100
  - Gemfile
114
- - Gemfile.lock
115
101
  - HISTORY.md
116
102
  - LICENSE.txt
117
103
  - README.md
118
104
  - Rakefile
119
105
  - cloudcannon-jekyll.gemspec
120
- - gemfiles/.bundle/config
121
- - gemfiles/jekyll_2.gemfile
122
- - gemfiles/jekyll_2.gemfile.lock
123
- - gemfiles/jekyll_3_0_0.gemfile
124
- - gemfiles/jekyll_3_0_0.gemfile.lock
125
- - gemfiles/jekyll_3_8_5.gemfile
126
- - gemfiles/jekyll_3_8_5.gemfile.lock
127
- - gemfiles/jekyll_4.gemfile
128
- - gemfiles/jekyll_4.gemfile.lock
129
106
  - lib/cloudcannon-jekyll.rb
130
107
  - lib/cloudcannon-jekyll/_cloudcannon/details-2.x.json
131
108
  - lib/cloudcannon-jekyll/_cloudcannon/details-3.0.x.json
132
109
  - lib/cloudcannon-jekyll/_cloudcannon/details.json
110
+ - lib/cloudcannon-jekyll/configuration.rb
133
111
  - lib/cloudcannon-jekyll/generator.rb
134
112
  - lib/cloudcannon-jekyll/page-without-a-file.rb
135
113
  - lib/cloudcannon-jekyll/safe-jsonify-filter.rb
136
114
  - lib/cloudcannon-jekyll/version.rb
115
+ - script/cibuild
116
+ - script/release
137
117
  - script/test
138
118
  homepage: https://github.com/cloudcannon/cloudcannon-jekyll
139
119
  licenses:
data/Appraisals DELETED
@@ -1,17 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- appraise "jekyll-2" do
4
- gem "jekyll", "2.4.0"
5
- end
6
-
7
- appraise "jekyll-3-0-0" do
8
- gem "jekyll", "3.0.0"
9
- end
10
-
11
- appraise "jekyll-3-8-5" do
12
- gem "jekyll", "3.8.5"
13
- end
14
-
15
- appraise "jekyll-4" do
16
- gem "jekyll", "4.0.0"
17
- end
@@ -1,115 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- cloudcannon-jekyll (0.0.1)
5
- jekyll (>= 2.4.0, < 5)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- addressable (2.7.0)
11
- public_suffix (>= 2.0.2, < 5.0)
12
- appraisal (2.2.0)
13
- bundler
14
- rake
15
- thor (>= 0.14.0)
16
- ast (2.4.0)
17
- colorator (1.1.0)
18
- concurrent-ruby (1.1.5)
19
- diff-lcs (1.3)
20
- em-websocket (0.5.1)
21
- eventmachine (>= 0.12.9)
22
- http_parser.rb (~> 0.6.0)
23
- eventmachine (1.2.7)
24
- ffi (1.11.1)
25
- forwardable-extended (2.6.0)
26
- http_parser.rb (0.6.0)
27
- i18n (1.7.0)
28
- concurrent-ruby (~> 1.0)
29
- jaro_winkler (1.5.4)
30
- jekyll (4.0.0)
31
- addressable (~> 2.4)
32
- colorator (~> 1.0)
33
- em-websocket (~> 0.5)
34
- i18n (>= 0.9.5, < 2)
35
- jekyll-sass-converter (~> 2.0)
36
- jekyll-watch (~> 2.0)
37
- kramdown (~> 2.1)
38
- kramdown-parser-gfm (~> 1.0)
39
- liquid (~> 4.0)
40
- mercenary (~> 0.3.3)
41
- pathutil (~> 0.9)
42
- rouge (~> 3.0)
43
- safe_yaml (~> 1.0)
44
- terminal-table (~> 1.8)
45
- jekyll-sass-converter (2.0.1)
46
- sassc (> 2.0.1, < 3.0)
47
- jekyll-watch (2.2.1)
48
- listen (~> 3.0)
49
- kramdown (2.1.0)
50
- kramdown-parser-gfm (1.1.0)
51
- kramdown (~> 2.0)
52
- liquid (4.0.3)
53
- listen (3.2.0)
54
- rb-fsevent (~> 0.10, >= 0.10.3)
55
- rb-inotify (~> 0.9, >= 0.9.10)
56
- mercenary (0.3.6)
57
- parallel (1.18.0)
58
- parser (2.6.5.0)
59
- ast (~> 2.4.0)
60
- pathutil (0.16.2)
61
- forwardable-extended (~> 2.6)
62
- public_suffix (4.0.1)
63
- rainbow (3.0.0)
64
- rake (13.0.0)
65
- rb-fsevent (0.10.3)
66
- rb-inotify (0.10.0)
67
- ffi (~> 1.0)
68
- rouge (3.12.0)
69
- rspec (3.9.0)
70
- rspec-core (~> 3.9.0)
71
- rspec-expectations (~> 3.9.0)
72
- rspec-mocks (~> 3.9.0)
73
- rspec-core (3.9.0)
74
- rspec-support (~> 3.9.0)
75
- rspec-expectations (3.9.0)
76
- diff-lcs (>= 1.2.0, < 2.0)
77
- rspec-support (~> 3.9.0)
78
- rspec-mocks (3.9.0)
79
- diff-lcs (>= 1.2.0, < 2.0)
80
- rspec-support (~> 3.9.0)
81
- rspec-support (3.9.0)
82
- rubocop (0.71.0)
83
- jaro_winkler (~> 1.5.1)
84
- parallel (~> 1.10)
85
- parser (>= 2.6)
86
- rainbow (>= 2.2.2, < 4.0)
87
- ruby-progressbar (~> 1.7)
88
- unicode-display_width (>= 1.4.0, < 1.7)
89
- rubocop-jekyll (0.10.0)
90
- rubocop (>= 0.68.0, < 0.72.0)
91
- rubocop-performance (~> 1.2)
92
- rubocop-performance (1.5.0)
93
- rubocop (>= 0.71.0)
94
- ruby-progressbar (1.10.1)
95
- safe_yaml (1.0.5)
96
- sassc (2.2.1)
97
- ffi (~> 1.9)
98
- terminal-table (1.8.0)
99
- unicode-display_width (~> 1.1, >= 1.1.1)
100
- thor (0.20.3)
101
- unicode-display_width (1.6.0)
102
-
103
- PLATFORMS
104
- ruby
105
-
106
- DEPENDENCIES
107
- appraisal (~> 2.2)
108
- cloudcannon-jekyll!
109
- rake (~> 13.0)
110
- rspec (~> 3.9)
111
- rubocop (~> 0.71)
112
- rubocop-jekyll (~> 0.10)
113
-
114
- BUNDLED WITH
115
- 2.0.2
@@ -1,2 +0,0 @@
1
- ---
2
- BUNDLE_RETRY: "1"
@@ -1,7 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "jekyll", "2.4.0"
6
-
7
- gemspec path: "../"
@@ -1,136 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- cloudcannon-jekyll (0.0.1)
5
- jekyll (>= 2.4.0, < 5)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- addressable (2.7.0)
11
- public_suffix (>= 2.0.2, < 5.0)
12
- appraisal (2.2.0)
13
- bundler
14
- rake
15
- thor (>= 0.14.0)
16
- ast (2.4.0)
17
- blankslate (2.1.2.4)
18
- classifier-reborn (2.2.0)
19
- fast-stemmer (~> 1.0)
20
- coffee-script (2.4.1)
21
- coffee-script-source
22
- execjs
23
- coffee-script-source (1.12.2)
24
- colorator (0.1)
25
- diff-lcs (1.3)
26
- execjs (2.7.0)
27
- faraday (0.17.0)
28
- multipart-post (>= 1.2, < 3)
29
- fast-stemmer (1.0.2)
30
- ffi (1.11.1)
31
- jaro_winkler (1.5.4)
32
- jekyll (2.4.0)
33
- classifier-reborn (~> 2.0)
34
- colorator (~> 0.1)
35
- jekyll-coffeescript (~> 1.0)
36
- jekyll-gist (~> 1.0)
37
- jekyll-paginate (~> 1.0)
38
- jekyll-sass-converter (~> 1.0)
39
- jekyll-watch (~> 1.1)
40
- kramdown (~> 1.3)
41
- liquid (~> 2.6.1)
42
- mercenary (~> 0.3.3)
43
- pygments.rb (~> 0.6.0)
44
- redcarpet (~> 3.1)
45
- safe_yaml (~> 1.0)
46
- toml (~> 0.1.0)
47
- jekyll-coffeescript (1.2.2)
48
- coffee-script (~> 2.2)
49
- coffee-script-source (~> 1.12)
50
- jekyll-gist (1.5.0)
51
- octokit (~> 4.2)
52
- jekyll-paginate (1.1.0)
53
- jekyll-sass-converter (1.5.2)
54
- sass (~> 3.4)
55
- jekyll-watch (1.5.1)
56
- listen (~> 3.0)
57
- kramdown (1.17.0)
58
- liquid (2.6.3)
59
- listen (3.2.0)
60
- rb-fsevent (~> 0.10, >= 0.10.3)
61
- rb-inotify (~> 0.9, >= 0.9.10)
62
- mercenary (0.3.6)
63
- multipart-post (2.1.1)
64
- octokit (4.14.0)
65
- sawyer (~> 0.8.0, >= 0.5.3)
66
- parallel (1.18.0)
67
- parser (2.6.5.0)
68
- ast (~> 2.4.0)
69
- parslet (1.5.0)
70
- blankslate (~> 2.0)
71
- posix-spawn (0.3.13)
72
- public_suffix (4.0.1)
73
- pygments.rb (0.6.3)
74
- posix-spawn (~> 0.3.6)
75
- yajl-ruby (~> 1.2.0)
76
- rainbow (3.0.0)
77
- rake (13.0.0)
78
- rb-fsevent (0.10.3)
79
- rb-inotify (0.10.0)
80
- ffi (~> 1.0)
81
- redcarpet (3.5.0)
82
- rspec (3.9.0)
83
- rspec-core (~> 3.9.0)
84
- rspec-expectations (~> 3.9.0)
85
- rspec-mocks (~> 3.9.0)
86
- rspec-core (3.9.0)
87
- rspec-support (~> 3.9.0)
88
- rspec-expectations (3.9.0)
89
- diff-lcs (>= 1.2.0, < 2.0)
90
- rspec-support (~> 3.9.0)
91
- rspec-mocks (3.9.0)
92
- diff-lcs (>= 1.2.0, < 2.0)
93
- rspec-support (~> 3.9.0)
94
- rspec-support (3.9.0)
95
- rubocop (0.71.0)
96
- jaro_winkler (~> 1.5.1)
97
- parallel (~> 1.10)
98
- parser (>= 2.6)
99
- rainbow (>= 2.2.2, < 4.0)
100
- ruby-progressbar (~> 1.7)
101
- unicode-display_width (>= 1.4.0, < 1.7)
102
- rubocop-jekyll (0.10.0)
103
- rubocop (>= 0.68.0, < 0.72.0)
104
- rubocop-performance (~> 1.2)
105
- rubocop-performance (1.5.0)
106
- rubocop (>= 0.71.0)
107
- ruby-progressbar (1.10.1)
108
- safe_yaml (1.0.5)
109
- sass (3.7.4)
110
- sass-listen (~> 4.0.0)
111
- sass-listen (4.0.0)
112
- rb-fsevent (~> 0.9, >= 0.9.4)
113
- rb-inotify (~> 0.9, >= 0.9.7)
114
- sawyer (0.8.2)
115
- addressable (>= 2.3.5)
116
- faraday (> 0.8, < 2.0)
117
- thor (0.20.3)
118
- toml (0.1.2)
119
- parslet (~> 1.5.0)
120
- unicode-display_width (1.6.0)
121
- yajl-ruby (1.2.3)
122
-
123
- PLATFORMS
124
- ruby
125
-
126
- DEPENDENCIES
127
- appraisal (~> 2.2)
128
- cloudcannon-jekyll!
129
- jekyll (= 2.4.0)
130
- rake (~> 13.0)
131
- rspec (~> 3.9)
132
- rubocop (~> 0.71)
133
- rubocop-jekyll (~> 0.10)
134
-
135
- BUNDLED WITH
136
- 2.0.2
@@ -1,7 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "jekyll", "3.0.0"
6
-
7
- gemspec path: "../"
@@ -1,95 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- cloudcannon-jekyll (0.0.1)
5
- jekyll (>= 2.4.0, < 5)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- appraisal (2.2.0)
11
- bundler
12
- rake
13
- thor (>= 0.14.0)
14
- ast (2.4.0)
15
- colorator (0.1)
16
- diff-lcs (1.3)
17
- ffi (1.11.1)
18
- jaro_winkler (1.5.4)
19
- jekyll (3.0.0)
20
- colorator (~> 0.1)
21
- jekyll-sass-converter (~> 1.0)
22
- jekyll-watch (~> 1.1)
23
- kramdown (~> 1.3)
24
- liquid (~> 3.0)
25
- mercenary (~> 0.3.3)
26
- rouge (~> 1.7)
27
- safe_yaml (~> 1.0)
28
- jekyll-sass-converter (1.5.2)
29
- sass (~> 3.4)
30
- jekyll-watch (1.5.1)
31
- listen (~> 3.0)
32
- kramdown (1.17.0)
33
- liquid (3.0.6)
34
- listen (3.2.0)
35
- rb-fsevent (~> 0.10, >= 0.10.3)
36
- rb-inotify (~> 0.9, >= 0.9.10)
37
- mercenary (0.3.6)
38
- parallel (1.18.0)
39
- parser (2.6.5.0)
40
- ast (~> 2.4.0)
41
- rainbow (3.0.0)
42
- rake (13.0.0)
43
- rb-fsevent (0.10.3)
44
- rb-inotify (0.10.0)
45
- ffi (~> 1.0)
46
- rouge (1.11.1)
47
- rspec (3.9.0)
48
- rspec-core (~> 3.9.0)
49
- rspec-expectations (~> 3.9.0)
50
- rspec-mocks (~> 3.9.0)
51
- rspec-core (3.9.0)
52
- rspec-support (~> 3.9.0)
53
- rspec-expectations (3.9.0)
54
- diff-lcs (>= 1.2.0, < 2.0)
55
- rspec-support (~> 3.9.0)
56
- rspec-mocks (3.9.0)
57
- diff-lcs (>= 1.2.0, < 2.0)
58
- rspec-support (~> 3.9.0)
59
- rspec-support (3.9.0)
60
- rubocop (0.71.0)
61
- jaro_winkler (~> 1.5.1)
62
- parallel (~> 1.10)
63
- parser (>= 2.6)
64
- rainbow (>= 2.2.2, < 4.0)
65
- ruby-progressbar (~> 1.7)
66
- unicode-display_width (>= 1.4.0, < 1.7)
67
- rubocop-jekyll (0.10.0)
68
- rubocop (>= 0.68.0, < 0.72.0)
69
- rubocop-performance (~> 1.2)
70
- rubocop-performance (1.5.0)
71
- rubocop (>= 0.71.0)
72
- ruby-progressbar (1.10.1)
73
- safe_yaml (1.0.5)
74
- sass (3.7.4)
75
- sass-listen (~> 4.0.0)
76
- sass-listen (4.0.0)
77
- rb-fsevent (~> 0.9, >= 0.9.4)
78
- rb-inotify (~> 0.9, >= 0.9.7)
79
- thor (0.20.3)
80
- unicode-display_width (1.6.0)
81
-
82
- PLATFORMS
83
- ruby
84
-
85
- DEPENDENCIES
86
- appraisal (~> 2.2)
87
- cloudcannon-jekyll!
88
- jekyll (= 3.0.0)
89
- rake (~> 13.0)
90
- rspec (~> 3.9)
91
- rubocop (~> 0.71)
92
- rubocop-jekyll (~> 0.10)
93
-
94
- BUNDLED WITH
95
- 2.0.2
@@ -1,7 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "jekyll", "3.8.5"
6
-
7
- gemspec path: "../"
@@ -1,113 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- cloudcannon-jekyll (0.0.1)
5
- jekyll (>= 2.4.0, < 5)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- addressable (2.7.0)
11
- public_suffix (>= 2.0.2, < 5.0)
12
- appraisal (2.2.0)
13
- bundler
14
- rake
15
- thor (>= 0.14.0)
16
- ast (2.4.0)
17
- colorator (1.1.0)
18
- concurrent-ruby (1.1.5)
19
- diff-lcs (1.3)
20
- em-websocket (0.5.1)
21
- eventmachine (>= 0.12.9)
22
- http_parser.rb (~> 0.6.0)
23
- eventmachine (1.2.7)
24
- ffi (1.11.1)
25
- forwardable-extended (2.6.0)
26
- http_parser.rb (0.6.0)
27
- i18n (0.9.5)
28
- concurrent-ruby (~> 1.0)
29
- jaro_winkler (1.5.4)
30
- jekyll (3.8.5)
31
- addressable (~> 2.4)
32
- colorator (~> 1.0)
33
- em-websocket (~> 0.5)
34
- i18n (~> 0.7)
35
- jekyll-sass-converter (~> 1.0)
36
- jekyll-watch (~> 2.0)
37
- kramdown (~> 1.14)
38
- liquid (~> 4.0)
39
- mercenary (~> 0.3.3)
40
- pathutil (~> 0.9)
41
- rouge (>= 1.7, < 4)
42
- safe_yaml (~> 1.0)
43
- jekyll-sass-converter (1.5.2)
44
- sass (~> 3.4)
45
- jekyll-watch (2.2.1)
46
- listen (~> 3.0)
47
- kramdown (1.17.0)
48
- liquid (4.0.3)
49
- listen (3.2.0)
50
- rb-fsevent (~> 0.10, >= 0.10.3)
51
- rb-inotify (~> 0.9, >= 0.9.10)
52
- mercenary (0.3.6)
53
- parallel (1.18.0)
54
- parser (2.6.5.0)
55
- ast (~> 2.4.0)
56
- pathutil (0.16.2)
57
- forwardable-extended (~> 2.6)
58
- public_suffix (4.0.1)
59
- rainbow (3.0.0)
60
- rake (13.0.0)
61
- rb-fsevent (0.10.3)
62
- rb-inotify (0.10.0)
63
- ffi (~> 1.0)
64
- rouge (3.12.0)
65
- rspec (3.9.0)
66
- rspec-core (~> 3.9.0)
67
- rspec-expectations (~> 3.9.0)
68
- rspec-mocks (~> 3.9.0)
69
- rspec-core (3.9.0)
70
- rspec-support (~> 3.9.0)
71
- rspec-expectations (3.9.0)
72
- diff-lcs (>= 1.2.0, < 2.0)
73
- rspec-support (~> 3.9.0)
74
- rspec-mocks (3.9.0)
75
- diff-lcs (>= 1.2.0, < 2.0)
76
- rspec-support (~> 3.9.0)
77
- rspec-support (3.9.0)
78
- rubocop (0.71.0)
79
- jaro_winkler (~> 1.5.1)
80
- parallel (~> 1.10)
81
- parser (>= 2.6)
82
- rainbow (>= 2.2.2, < 4.0)
83
- ruby-progressbar (~> 1.7)
84
- unicode-display_width (>= 1.4.0, < 1.7)
85
- rubocop-jekyll (0.10.0)
86
- rubocop (>= 0.68.0, < 0.72.0)
87
- rubocop-performance (~> 1.2)
88
- rubocop-performance (1.5.0)
89
- rubocop (>= 0.71.0)
90
- ruby-progressbar (1.10.1)
91
- safe_yaml (1.0.5)
92
- sass (3.7.4)
93
- sass-listen (~> 4.0.0)
94
- sass-listen (4.0.0)
95
- rb-fsevent (~> 0.9, >= 0.9.4)
96
- rb-inotify (~> 0.9, >= 0.9.7)
97
- thor (0.20.3)
98
- unicode-display_width (1.6.0)
99
-
100
- PLATFORMS
101
- ruby
102
-
103
- DEPENDENCIES
104
- appraisal (~> 2.2)
105
- cloudcannon-jekyll!
106
- jekyll (= 3.8.5)
107
- rake (~> 13.0)
108
- rspec (~> 3.9)
109
- rubocop (~> 0.71)
110
- rubocop-jekyll (~> 0.10)
111
-
112
- BUNDLED WITH
113
- 2.0.2
@@ -1,7 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "jekyll", "4.0.0"
6
-
7
- gemspec path: "../"
@@ -1,116 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- cloudcannon-jekyll (0.0.1)
5
- jekyll (>= 2.4.0, < 5)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- addressable (2.7.0)
11
- public_suffix (>= 2.0.2, < 5.0)
12
- appraisal (2.2.0)
13
- bundler
14
- rake
15
- thor (>= 0.14.0)
16
- ast (2.4.0)
17
- colorator (1.1.0)
18
- concurrent-ruby (1.1.5)
19
- diff-lcs (1.3)
20
- em-websocket (0.5.1)
21
- eventmachine (>= 0.12.9)
22
- http_parser.rb (~> 0.6.0)
23
- eventmachine (1.2.7)
24
- ffi (1.11.1)
25
- forwardable-extended (2.6.0)
26
- http_parser.rb (0.6.0)
27
- i18n (1.7.0)
28
- concurrent-ruby (~> 1.0)
29
- jaro_winkler (1.5.4)
30
- jekyll (4.0.0)
31
- addressable (~> 2.4)
32
- colorator (~> 1.0)
33
- em-websocket (~> 0.5)
34
- i18n (>= 0.9.5, < 2)
35
- jekyll-sass-converter (~> 2.0)
36
- jekyll-watch (~> 2.0)
37
- kramdown (~> 2.1)
38
- kramdown-parser-gfm (~> 1.0)
39
- liquid (~> 4.0)
40
- mercenary (~> 0.3.3)
41
- pathutil (~> 0.9)
42
- rouge (~> 3.0)
43
- safe_yaml (~> 1.0)
44
- terminal-table (~> 1.8)
45
- jekyll-sass-converter (2.0.1)
46
- sassc (> 2.0.1, < 3.0)
47
- jekyll-watch (2.2.1)
48
- listen (~> 3.0)
49
- kramdown (2.1.0)
50
- kramdown-parser-gfm (1.1.0)
51
- kramdown (~> 2.0)
52
- liquid (4.0.3)
53
- listen (3.2.0)
54
- rb-fsevent (~> 0.10, >= 0.10.3)
55
- rb-inotify (~> 0.9, >= 0.9.10)
56
- mercenary (0.3.6)
57
- parallel (1.18.0)
58
- parser (2.6.5.0)
59
- ast (~> 2.4.0)
60
- pathutil (0.16.2)
61
- forwardable-extended (~> 2.6)
62
- public_suffix (4.0.1)
63
- rainbow (3.0.0)
64
- rake (13.0.0)
65
- rb-fsevent (0.10.3)
66
- rb-inotify (0.10.0)
67
- ffi (~> 1.0)
68
- rouge (3.12.0)
69
- rspec (3.9.0)
70
- rspec-core (~> 3.9.0)
71
- rspec-expectations (~> 3.9.0)
72
- rspec-mocks (~> 3.9.0)
73
- rspec-core (3.9.0)
74
- rspec-support (~> 3.9.0)
75
- rspec-expectations (3.9.0)
76
- diff-lcs (>= 1.2.0, < 2.0)
77
- rspec-support (~> 3.9.0)
78
- rspec-mocks (3.9.0)
79
- diff-lcs (>= 1.2.0, < 2.0)
80
- rspec-support (~> 3.9.0)
81
- rspec-support (3.9.0)
82
- rubocop (0.71.0)
83
- jaro_winkler (~> 1.5.1)
84
- parallel (~> 1.10)
85
- parser (>= 2.6)
86
- rainbow (>= 2.2.2, < 4.0)
87
- ruby-progressbar (~> 1.7)
88
- unicode-display_width (>= 1.4.0, < 1.7)
89
- rubocop-jekyll (0.10.0)
90
- rubocop (>= 0.68.0, < 0.72.0)
91
- rubocop-performance (~> 1.2)
92
- rubocop-performance (1.5.0)
93
- rubocop (>= 0.71.0)
94
- ruby-progressbar (1.10.1)
95
- safe_yaml (1.0.5)
96
- sassc (2.2.1)
97
- ffi (~> 1.9)
98
- terminal-table (1.8.0)
99
- unicode-display_width (~> 1.1, >= 1.1.1)
100
- thor (0.20.3)
101
- unicode-display_width (1.6.0)
102
-
103
- PLATFORMS
104
- ruby
105
-
106
- DEPENDENCIES
107
- appraisal (~> 2.2)
108
- cloudcannon-jekyll!
109
- jekyll (= 4.0.0)
110
- rake (~> 13.0)
111
- rspec (~> 3.9)
112
- rubocop (~> 0.71)
113
- rubocop-jekyll (~> 0.10)
114
-
115
- BUNDLED WITH
116
- 2.0.2