cheatset 1.3.10 → 1.4.3

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
- SHA1:
3
- metadata.gz: 36be5b114d7146f20730e58980b3c95f626964d3
4
- data.tar.gz: c668b8aefb3d14855367dcc4f7ee2a9631b4d7af
2
+ SHA256:
3
+ metadata.gz: 9c3dedf5b4f74b0a764532e30fe35be41d0899a605361d9f42aa8ad1a007cf10
4
+ data.tar.gz: 4b8fc199fcaf458d3168cecf74421a30023b09569788291a135df57d94631911
5
5
  SHA512:
6
- metadata.gz: e286c9885dd022f7b154d10ca4ff6f3ea9008807b376897100cd8681516bb3517f5dbc7f7335ed5f953b8cbbeb4830a33501a7c5729b0bdcda1b19d3508a32c0
7
- data.tar.gz: 0f751d56af8812577f92b36c69914a8db794f04880adbe0019d23438bf9f85e251faaf954f63e1fb78e3bedea4b5b61d8a84320e03f72b2072e2636a9de9f8e1
6
+ metadata.gz: 37bc4d9e3422a91adcf92ba90fcedd17baa1e9147b9ddb33557bdf147b291703145b3c3032d72ac5277d0b36010438448b3ca768ed930169687bc70aa8ca82d0
7
+ data.tar.gz: eef8ce413f0854ed65f8484d181c8d72ed3cf426fea1899dcb281b3d12676609fcef658afd217f21b60c94a14eb6dd987246761b52bdffb06868a805138c3c90
data/README.md CHANGED
@@ -8,15 +8,15 @@ language (Ruby DSL).
8
8
 
9
9
  ## Installation
10
10
 
11
- $ sudo gem install cheatset --no-ri --no-rdoc
11
+ $ sudo gem install cheatset
12
12
 
13
13
  Note: this requires the Xcode Command Line Tools to be installed. Install them using this:
14
14
 
15
15
  $ xcode-select --install
16
-
16
+
17
17
  ## Contributions
18
18
 
19
- If you make an useful cheat sheet, please [contribute it](https://github.com/Kapeli/cheatsheets#readme) to Dash.
19
+ If you make a useful cheat sheet, please [contribute it](https://github.com/Kapeli/cheatsheets#readme) to Dash.
20
20
 
21
21
  ## Usage
22
22
 
@@ -28,7 +28,7 @@ cheatsheet do
28
28
  docset_file_name 'Sample' # Used for the filename of the docset
29
29
  keyword 'sample' # Used as the initial search keyword (listed in Preferences > Docsets)
30
30
  # resources 'resources_dir' # An optional resources folder which can contain images or anything else
31
-
31
+
32
32
  introduction 'My *awesome* cheat sheet' # Optional, can contain Markdown or HTML
33
33
 
34
34
  # A cheat sheet must consist of categories
@@ -78,6 +78,15 @@ Syntax highlighting is supported (see Ruby code in the sample). For a list of su
78
78
  For more complete examples look at some of
79
79
  [the actual cheat sheets](https://github.com/Kapeli/cheatsheets/tree/master/cheatsheets).
80
80
 
81
+ If you do not use Ruby or lack a working Ruby toolchain and still want to generate cheatsheets.
82
+
83
+ You can use the `cheatset` Docker image.
84
+
85
+ $ docker pull jonasbn/cheatset:lastest
86
+ $ docker run --rm -it --volume $PWD:/tmp --name cheatset jonasbn/cheatset:latest generate samble.rb
87
+
88
+ For more details on the Docker image please visit the repositories on [DockerHub](https://hub.docker.com/repository/docker/jonasbn/cheatset) or [GitHub](https://github.com/jonasbn/docker-cheatset)
89
+
81
90
  ## Advanced Usage
82
91
 
83
92
  Apart from the attributes listed in the sample cheat sheet above, you can also use these:
@@ -3,7 +3,7 @@ require 'sqlite3'
3
3
  require 'fileutils'
4
4
  require 'haml'
5
5
  require 'ostruct'
6
- require 'uri'
6
+ require 'cgi'
7
7
  require 'pathname'
8
8
 
9
9
  class Cheatset::Creator
@@ -84,9 +84,9 @@ class Cheatset::Creator
84
84
  sql = 'INSERT INTO searchIndex(name, type, path) VALUES (?, ?, ?)'
85
85
  db.execute(sql, @cheatsheet.title, 'Category',
86
86
  "index.html")
87
-
87
+
88
88
  @cheatsheet.categories.each do |category|
89
- category_strip = URI.escape(category.id.strip).gsub(/\//, '%252F');
89
+ category_strip = CGI.escape(category.id.strip).gsub(/\//, '%252F');
90
90
  if @cheatsheet.title != category.id
91
91
  db.execute(sql, category.id, 'Category',
92
92
  "index.html\#//dash_ref/Category/#{category_strip}/1")
@@ -96,17 +96,17 @@ class Cheatset::Creator
96
96
  if entry.command && entry.command.length > 0
97
97
  first_command = entry.command.first
98
98
  end
99
- href = (entry.name || entry.index_name) ? "index.html\#//dash_ref_#{category_strip}/Entry/#{URI.escape((entry.index_name) ? entry.index_name.strip : entry.tags_stripped_name.strip).gsub(/\//, '%252F')}/0" : (first_command) ? "index.html\#//dash_ref_#{category_strip}/Command/#{URI.escape(first_command).gsub(/\//, '%252F')}/0" : ""
99
+ href = (entry.name || entry.index_name) ? "index.html\#//dash_ref_#{category_strip}/Entry/#{CGI.escape((entry.index_name) ? entry.index_name.strip : entry.tags_stripped_name.strip).gsub(/\//, '%252F')}/0" : (first_command) ? "index.html\#//dash_ref_#{category_strip}/Command/#{URI.escape(first_command).gsub(/\//, '%252F')}/0" : ""
100
100
  if entry.command
101
101
  entry.command.each do |command|
102
- if(!command.strip.empty?)
102
+ if(!command.strip.empty? && !entry.not_in_main_index)
103
103
  db.execute(sql, command.strip, 'Command', href)
104
104
  end
105
105
  end
106
106
  end
107
107
  if entry.td_command
108
108
  entry.td_command.each do |command|
109
- if(!command.strip.empty?)
109
+ if(!command.strip.empty? && !entry.not_in_main_index)
110
110
  db.execute(sql, command.strip, 'Command', href)
111
111
  end
112
112
  end
@@ -124,4 +124,4 @@ class Cheatset::Creator
124
124
  end
125
125
  end
126
126
  end
127
- end
127
+ end
@@ -44,14 +44,14 @@ h1, h2, h3, p, blockquote {
44
44
  src: local("Open Sans Extrabold Italic"), local("OpenSans-ExtraboldItalic"), url(cheatset_resources/Open_Sans_Extrabold_Italic.woff) format("woff"); }
45
45
  body {
46
46
  font-family: 'Open Sans', sans-serif;
47
- font-size: 14px;
47
+ font-size: 16px;
48
48
  color: #000;
49
49
  background-color: #fff;
50
50
  margin: 0; }
51
51
 
52
52
  code, pre {
53
53
  font-family: Menlo, Consolas, "Liberation Mono", Courier, monospace;
54
- font-size: 13px; }
54
+ font-size: 15px; }
55
55
 
56
56
  code {
57
57
  margin: 0;
@@ -1,3 +1,3 @@
1
1
  module Cheatset
2
- VERSION = '1.3.10'
2
+ VERSION = '1.4.3'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cheatset
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.10
4
+ version: 1.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bogdan Popescu
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-09-18 00:00:00.000000000 Z
11
+ date: 2021-09-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -204,8 +204,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
204
204
  - !ruby/object:Gem::Version
205
205
  version: '0'
206
206
  requirements: []
207
- rubyforge_project:
208
- rubygems_version: 2.2.5
207
+ rubygems_version: 3.0.3
209
208
  signing_key:
210
209
  specification_version: 4
211
210
  summary: Generate cheat sheets for Dash