synergist 0.0.2.pre → 0.0.3.pre

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
  SHA1:
3
- metadata.gz: 7022203f36582a5acfe2d9692e6087961fad5a18
4
- data.tar.gz: bfcc59bab3ab73e324af75ca17fa8e19bd268157
3
+ metadata.gz: 5408c5efd94e9af0181486cb0552cc7515fed24d
4
+ data.tar.gz: ba654083d403a6304829b7481cbf0d6cc8bab0fc
5
5
  SHA512:
6
- metadata.gz: ebac87125e6cf1be077f55020e715332351371bdcb6f35af7582b2d057267db230ab56e9e727189edb76db004cc7afa79396bc40a8839125c2e1493113c51883
7
- data.tar.gz: b36001a438c94044c6be40bf10ad4272c212c068ba1ba09f480b60b858c537c3b31eb03268fb0c8f3d2af96ca473dc2eccdabae1c8f3286b7aa0230b6f7e7401
6
+ metadata.gz: 8e91d029b8391595a2ae982acca49bbf62700e10e73b7c35186b9df9ed8feab25b81d988c6027228430a434de9dac9d4a19d46d342d196e0d4c8735d833c73fa
7
+ data.tar.gz: 875deee1444fb2c371721db2be442f552f4339f0b44829d2d1927ae00b09f7be6cadfaa028c0bf11e85404079bb7b557cd4cd8e96fb4606c9a2866b8857b5136
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- synergist (0.0.2.pre)
4
+ synergist (0.0.3.pre)
5
5
  thor (>= 0.19.1, < 2)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -3,21 +3,48 @@
3
3
  &nbsp;&nbsp;&nbsp;&nbsp;_noun_<br>
4
4
  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_a substance, organ, or other agent that participates in an effect of synergy._
5
5
 
6
- ### it does stuff
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
- - maintain a master gist repo containing all your gists in the form of their individual repos.
10
- - quickly back up all your gists before migrating to another git repository host.
11
- - make edits to a set of related gists, then commit and push to all of those gists at once.
12
- - organize your gists locally.
13
- - locally structure your synergist directory by language or topic, whereas using github.com exclusively you must view your gists in a single-level list sortable only by created/updated.
14
- - pull, commit, and push to or from one or more of your gists.
15
- - gists are really just miniature repositories, which is wonderful, but this can makes things tedious when we would like to perform the same action across multiple gists. This would really come in handy for pulling all gists to a new computer, pushing a set of changes to a set of related gists, or setting up a new github account after cloning all your gists from the old one.
16
- - clone all _public_ gists belonging to a github user other than youself.
17
- - synergist-global, directory-specific, and gist-specific configuration variables with cascading overrides, subdirectories take precedence.
18
- - DRY up info appering in multiple gists, such as greetings or links to your other profiles on the web.
19
- - write gists using partials.
20
- - put your company info and social media information to appear on all your gists.
21
- - compile gists from ERB (using config variables, or even calling ruby functions).
22
- - compile gists from Standard Markdown.
23
- - compile gists to HTML.
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.
@@ -1,3 +1,3 @@
1
1
  module Synergist
2
- VERSION = '0.0.2.pre'
2
+ VERSION = '0.0.3.pre'
3
3
  end
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.2.pre
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: