synergist 0.0.2.pre → 0.0.3.pre
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 +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +43 -16
- data/lib/synergist/version.rb +1 -1
- data/pkg/synergist-0.0.2.pre.gem +0 -0
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5408c5efd94e9af0181486cb0552cc7515fed24d
|
4
|
+
data.tar.gz: ba654083d403a6304829b7481cbf0d6cc8bab0fc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8e91d029b8391595a2ae982acca49bbf62700e10e73b7c35186b9df9ed8feab25b81d988c6027228430a434de9dac9d4a19d46d342d196e0d4c8735d833c73fa
|
7
|
+
data.tar.gz: 875deee1444fb2c371721db2be442f552f4339f0b44829d2d1927ae00b09f7be6cadfaa028c0bf11e85404079bb7b557cd4cd8e96fb4606c9a2866b8857b5136
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -3,21 +3,48 @@
|
|
3
3
|
_noun_<br>
|
4
4
|
_a substance, organ, or other agent that participates in an effect of synergy._
|
5
5
|
|
6
|
-
###
|
6
|
+
### Wat?
|
7
7
|
---
|
8
|
+
Synergist is a CLI utility in the form of a Ruby Gem intended to make using Github's [gist](gist.github.com) more efficient, as well as compliment it with some useful automations.
|
8
9
|
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
-
|
15
|
-
|
16
|
-
|
17
|
-
-
|
18
|
-
|
19
|
-
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
10
|
+
|
11
|
+
### It Does Stuff
|
12
|
+
---
|
13
|
+
|
14
|
+
- Maintain a master gist repo containing all your gists in the form of their individual repos.
|
15
|
+
- Organize your gists locally.
|
16
|
+
- Pull, commit, and push to or from one or more of your gists.
|
17
|
+
- Synergist-global, directory-specific, and gist-specific configuration variables with cascading overrides, subdirectories take precedence.
|
18
|
+
- Write gists using partials.
|
19
|
+
- Compile gists from ERB (using config variables, or even calling ruby functions).
|
20
|
+
- Compile gists from Standard Markdown.
|
21
|
+
- Compile gists to HTML.
|
22
|
+
|
23
|
+
### Use Cases
|
24
|
+
---
|
25
|
+
|
26
|
+
- Keep your gists organized in subdirectories.
|
27
|
+
- Organize gists by language or topic, relevant project, or date.
|
28
|
+
- Replace text in and push one or more gists.
|
29
|
+
- Globally correct misspellings.
|
30
|
+
- Fix broken or relocated urls.
|
31
|
+
- Remove or correct obsolete email addresses.
|
32
|
+
- Grab a copy of all your gists if you are:
|
33
|
+
- Going to be without internet for an extended period.
|
34
|
+
- Migrating to a new git repo host.
|
35
|
+
- Commit, push, and pull to or from one or more gists.
|
36
|
+
- Easily maintain a series of tutorials, documentation, or any other interrelated texts.
|
37
|
+
- Grab local copies of gists belonging to a github user.
|
38
|
+
- Put your gists in the DRYer using config variable files.
|
39
|
+
- Synergist-global email, username, and social media urls.
|
40
|
+
- Greetings and Signatures.
|
41
|
+
- Compose gists with partials and compile.
|
42
|
+
- Break long tutorials into sections in separate files.
|
43
|
+
- Copy log files in as partials to easily build a single markdown file.
|
44
|
+
Compile from ERB and/or standard markdown
|
45
|
+
- Inject defined config variables into your gists.
|
46
|
+
- Use Scheduled jobs to create living gists.
|
47
|
+
- Recompile, recommit, and repush gists with up-to-date data.
|
48
|
+
- Aggregate events from failed builds, merge requests, bug reports, message threads, or any other info accessible info available on the internet or via API.
|
49
|
+
- Create living benchmarks based on the master branches of libraries you are interested in.
|
50
|
+
- Migrate all your Standard Markdown posts from another platform or service to gists.
|
data/lib/synergist/version.rb
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: synergist
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3.pre
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sean Kennedy
|
@@ -62,6 +62,7 @@ files:
|
|
62
62
|
- lib/synergist/cli.rb
|
63
63
|
- lib/synergist/version.rb
|
64
64
|
- pkg/synergist-0.0.1.pre.gem
|
65
|
+
- pkg/synergist-0.0.2.pre.gem
|
65
66
|
- synergist.gemspec
|
66
67
|
homepage: ''
|
67
68
|
licenses:
|