synergist 0.0.2.pre

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 7022203f36582a5acfe2d9692e6087961fad5a18
4
+ data.tar.gz: bfcc59bab3ab73e324af75ca17fa8e19bd268157
5
+ SHA512:
6
+ metadata.gz: ebac87125e6cf1be077f55020e715332351371bdcb6f35af7582b2d057267db230ab56e9e727189edb76db004cc7afa79396bc40a8839125c2e1493113c51883
7
+ data.tar.gz: b36001a438c94044c6be40bf10ad4272c212c068ba1ba09f480b60b858c537c3b31eb03268fb0c8f3d2af96ca473dc2eccdabae1c8f3286b7aa0230b6f7e7401
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,17 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ synergist (0.0.2.pre)
5
+ thor (>= 0.19.1, < 2)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ thor (0.19.1)
11
+
12
+ PLATFORMS
13
+ ruby
14
+
15
+ DEPENDENCIES
16
+ bundler (~> 1.6)
17
+ synergist!
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2015 Sean Kennedy
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,23 @@
1
+ # syner*gist*<br>
2
+ &nbsp;&nbsp;&nbsp;&nbsp;**/ˈsinərjist/**<br>
3
+ &nbsp;&nbsp;&nbsp;&nbsp;_noun_<br>
4
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_a substance, organ, or other agent that participates in an effect of synergy._
5
+
6
+ ### it does stuff
7
+ ---
8
+
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.
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ begin
2
+ require 'bundler/setup'
3
+ rescue LoadError
4
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
+ end
6
+
7
+ Bundler::GemHelper.install_tasks
8
+ task default: %w[build]
data/bin/gist ADDED
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env ruby
2
+ Signal.trap('INT') { abort }
3
+
4
+ require 'initiative'
5
+
6
+ begin
7
+ Initiative::CLI.run
8
+ rescue Interrupt
9
+ pute 'Quitting...'
10
+ end
@@ -0,0 +1,8 @@
1
+ # encoding: utf-8
2
+
3
+ require 'thor'
4
+
5
+ module Synergist
6
+ class CLI < Thor
7
+ end
8
+ end
@@ -0,0 +1,3 @@
1
+ module Synergist
2
+ VERSION = '0.0.2.pre'
3
+ end
data/lib/synergist.rb ADDED
@@ -0,0 +1,5 @@
1
+ require "synergist/cli"
2
+ require "synergist/version"
3
+
4
+ module Synergist
5
+ end
Binary file
data/synergist.gemspec ADDED
@@ -0,0 +1,24 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'synergist/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'synergist'
8
+ spec.version = Synergist::VERSION
9
+ spec.authors = ['Sean Kennedy']
10
+ spec.email = ['cspheregreen@gmail.com']
11
+ spec.summary = %q{Todo Summary}
12
+ spec.description = %q{Todo Long Summary}
13
+ spec.homepage = ''
14
+ spec.license = 'MIT'
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ['lib']
20
+
21
+ spec.add_dependency 'thor', ['>= 0.19.1', '< 2']
22
+ spec.add_development_dependency 'bundler', '~> 1.6'
23
+ end
24
+
metadata ADDED
@@ -0,0 +1,90 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: synergist
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2.pre
5
+ platform: ruby
6
+ authors:
7
+ - Sean Kennedy
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-10-30 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: thor
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 0.19.1
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '2'
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: 0.19.1
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '2'
33
+ - !ruby/object:Gem::Dependency
34
+ name: bundler
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '1.6'
40
+ type: :development
41
+ prerelease: false
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: '1.6'
47
+ description: Todo Long Summary
48
+ email:
49
+ - cspheregreen@gmail.com
50
+ executables:
51
+ - gist
52
+ extensions: []
53
+ extra_rdoc_files: []
54
+ files:
55
+ - Gemfile
56
+ - Gemfile.lock
57
+ - LICENSE.txt
58
+ - README.md
59
+ - Rakefile
60
+ - bin/gist
61
+ - lib/synergist.rb
62
+ - lib/synergist/cli.rb
63
+ - lib/synergist/version.rb
64
+ - pkg/synergist-0.0.1.pre.gem
65
+ - synergist.gemspec
66
+ homepage: ''
67
+ licenses:
68
+ - MIT
69
+ metadata: {}
70
+ post_install_message:
71
+ rdoc_options: []
72
+ require_paths:
73
+ - lib
74
+ required_ruby_version: !ruby/object:Gem::Requirement
75
+ requirements:
76
+ - - ">="
77
+ - !ruby/object:Gem::Version
78
+ version: '0'
79
+ required_rubygems_version: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ">"
82
+ - !ruby/object:Gem::Version
83
+ version: 1.3.1
84
+ requirements: []
85
+ rubyforge_project:
86
+ rubygems_version: 2.4.1
87
+ signing_key:
88
+ specification_version: 4
89
+ summary: Todo Summary
90
+ test_files: []