goblin_lackey 0.0.0
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 +7 -0
- data/.document +5 -0
- data/bin/lky +2 -0
- data/goblin_lackey.gemspec +18 -0
- data/lib/goblin_lackey.rb +15 -0
- metadata +48 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: e6043927954488c1416ff6b1ec6368ee6bd6a232
|
|
4
|
+
data.tar.gz: 2d8ffa3980a8c34101da9e27c3439c3a840d62e1
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 92bd9a67a3e8571b405700a65d29b46a2c06a1ddbef7c5210d79cb668623162a6a0a52d097b6eba499666ff44ef5440e3c1f268c9936b911cb5acfbd070b8640
|
|
7
|
+
data.tar.gz: c7f60ae12ae76442bb2c0aa9043991648fd038ac9fd001121741c5f41666a22452a99615c2e9aee4f9feeee42328ea985142668a5ffc4e30750396d7d420eff5
|
data/.document
ADDED
data/bin/lky
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
lib = File.expand_path("../lib/", __FILE__)
|
|
3
|
+
$LOAD_PATH.unshift lib unless $LOAD_PATH.include?(lib)
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |spec|
|
|
6
|
+
spec.authors = ['Cody Johnston']
|
|
7
|
+
spec.bindir = 'bin'
|
|
8
|
+
spec.date = '2015-04-08'
|
|
9
|
+
spec.description = 'Goblin Lackey does whatever the f*%@ I tell him to'
|
|
10
|
+
spec.email = 'cody@codegobl.in'
|
|
11
|
+
spec.executables = %w[lky]
|
|
12
|
+
spec.files = %w[.document goblin_lackey.gemspec] + Dir['*.md', 'bin/*', 'lib/**/*.rb']
|
|
13
|
+
spec.homepage = 'http://rubygems.org/gems/goblin_lackey'
|
|
14
|
+
spec.license = 'The Unlicense'
|
|
15
|
+
spec.name = 'goblin_lackey'
|
|
16
|
+
spec.summary = 'My personal ruby script for unix'
|
|
17
|
+
spec.version = '0.0.0'
|
|
18
|
+
end
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
require 'thor'
|
|
2
|
+
|
|
3
|
+
class GoblinLackey < Thor
|
|
4
|
+
|
|
5
|
+
desc "here", "make current project"
|
|
6
|
+
def here
|
|
7
|
+
puts "Current project bookmarked, access using `lky go`"
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
desc "go", "go to current project"
|
|
11
|
+
def go
|
|
12
|
+
puts "Going to bookmarked project!"
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: goblin_lackey
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Cody Johnston
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2015-04-08 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: Goblin Lackey does whatever the f*%@ I tell him to
|
|
14
|
+
email: cody@codegobl.in
|
|
15
|
+
executables:
|
|
16
|
+
- lky
|
|
17
|
+
extensions: []
|
|
18
|
+
extra_rdoc_files: []
|
|
19
|
+
files:
|
|
20
|
+
- ".document"
|
|
21
|
+
- bin/lky
|
|
22
|
+
- goblin_lackey.gemspec
|
|
23
|
+
- lib/goblin_lackey.rb
|
|
24
|
+
homepage: http://rubygems.org/gems/goblin_lackey
|
|
25
|
+
licenses:
|
|
26
|
+
- The Unlicense
|
|
27
|
+
metadata: {}
|
|
28
|
+
post_install_message:
|
|
29
|
+
rdoc_options: []
|
|
30
|
+
require_paths:
|
|
31
|
+
- lib
|
|
32
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
33
|
+
requirements:
|
|
34
|
+
- - ">="
|
|
35
|
+
- !ruby/object:Gem::Version
|
|
36
|
+
version: '0'
|
|
37
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
38
|
+
requirements:
|
|
39
|
+
- - ">="
|
|
40
|
+
- !ruby/object:Gem::Version
|
|
41
|
+
version: '0'
|
|
42
|
+
requirements: []
|
|
43
|
+
rubyforge_project:
|
|
44
|
+
rubygems_version: 2.4.6
|
|
45
|
+
signing_key:
|
|
46
|
+
specification_version: 4
|
|
47
|
+
summary: My personal ruby script for unix
|
|
48
|
+
test_files: []
|