sobriquet 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +50 -0
- data/.rspec +2 -0
- data/.rubocop.yml +9 -0
- data/Gemfile +2 -0
- data/Gemfile.lock +84 -0
- data/README.rdoc +0 -0
- data/Rakefile +43 -0
- data/bin/sobriquet +85 -0
- data/features/alias.feature +24 -0
- data/features/generate.feature +35 -0
- data/features/init.feature +24 -0
- data/features/sobriquet.feature +6 -0
- data/features/step_definitions/sobriquet_steps.rb +6 -0
- data/features/support/env.rb +15 -0
- data/features/variable.feature +25 -0
- data/html/Object.html +116 -0
- data/html/README_rdoc.html +82 -0
- data/html/Sobriquet.html +112 -0
- data/html/created.rid +5 -0
- data/html/css/fonts.css +167 -0
- data/html/css/rdoc.css +590 -0
- data/html/fonts.css +167 -0
- data/html/fonts/Lato-Light.ttf +0 -0
- data/html/fonts/Lato-LightItalic.ttf +0 -0
- data/html/fonts/Lato-Regular.ttf +0 -0
- data/html/fonts/Lato-RegularItalic.ttf +0 -0
- data/html/fonts/SourceCodePro-Bold.ttf +0 -0
- data/html/fonts/SourceCodePro-Regular.ttf +0 -0
- data/html/images/add.png +0 -0
- data/html/images/arrow_up.png +0 -0
- data/html/images/brick.png +0 -0
- data/html/images/brick_link.png +0 -0
- data/html/images/bug.png +0 -0
- data/html/images/bullet_black.png +0 -0
- data/html/images/bullet_toggle_minus.png +0 -0
- data/html/images/bullet_toggle_plus.png +0 -0
- data/html/images/date.png +0 -0
- data/html/images/delete.png +0 -0
- data/html/images/find.png +0 -0
- data/html/images/loadingAnimation.gif +0 -0
- data/html/images/macFFBgHack.png +0 -0
- data/html/images/package.png +0 -0
- data/html/images/page_green.png +0 -0
- data/html/images/page_white_text.png +0 -0
- data/html/images/page_white_width.png +0 -0
- data/html/images/plugin.png +0 -0
- data/html/images/ruby.png +0 -0
- data/html/images/tag_blue.png +0 -0
- data/html/images/tag_green.png +0 -0
- data/html/images/transparent.png +0 -0
- data/html/images/wrench.png +0 -0
- data/html/images/wrench_orange.png +0 -0
- data/html/images/zoom.png +0 -0
- data/html/index.html +92 -0
- data/html/js/darkfish.js +140 -0
- data/html/js/jquery.js +18 -0
- data/html/js/navigation.js +142 -0
- data/html/js/navigation.js.gz +0 -0
- data/html/js/search.js +109 -0
- data/html/js/search_index.js +1 -0
- data/html/js/search_index.js.gz +0 -0
- data/html/js/searcher.js +228 -0
- data/html/js/searcher.js.gz +0 -0
- data/html/rdoc.css +580 -0
- data/html/table_of_contents.html +54 -0
- data/lib/sobriquet.rb +4 -0
- data/lib/sobriquet/command.rb +12 -0
- data/lib/sobriquet/command_collection.rb +36 -0
- data/lib/sobriquet/persistance.rb +27 -0
- data/lib/sobriquet/version.rb +3 -0
- data/readme.md +77 -0
- data/readme.rdoc +0 -0
- data/sobriquet.gemspec +28 -0
- data/sobriquet.rdoc +5 -0
- data/spec/command_collection_spec.rb +37 -0
- data/spec/persistance_spec.rb +60 -0
- data/spec/sobriquet_spec.rb +0 -0
- data/spec/spec_helper.rb +78 -0
- data/templates/sobriquet.csv +1 -0
- data/workspace.csv +1 -0
- metadata +245 -0
@@ -0,0 +1 @@
|
|
1
|
+
command | alias | description
|
data/workspace.csv
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
"git status" | gs | "get the status of the git directory"
|
metadata
ADDED
@@ -0,0 +1,245 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: sobriquet
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Denis Laliberté
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-07-10 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rake
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rdoc
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: aruba
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rubocop
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rspec
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rubocop-rspec
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: gli
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - '='
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: 2.14.0
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - '='
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 2.14.0
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: mustache
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - "~>"
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '1.0'
|
118
|
+
type: :runtime
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - "~>"
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '1.0'
|
125
|
+
description: sobiquet is a command line tool that help you to save quickly new shell
|
126
|
+
alias variables
|
127
|
+
email: denis@laliberte.io
|
128
|
+
executables:
|
129
|
+
- sobriquet
|
130
|
+
extensions: []
|
131
|
+
extra_rdoc_files:
|
132
|
+
- README.rdoc
|
133
|
+
- sobriquet.rdoc
|
134
|
+
files:
|
135
|
+
- ".gitignore"
|
136
|
+
- ".rspec"
|
137
|
+
- ".rubocop.yml"
|
138
|
+
- Gemfile
|
139
|
+
- Gemfile.lock
|
140
|
+
- README.rdoc
|
141
|
+
- Rakefile
|
142
|
+
- bin/sobriquet
|
143
|
+
- features/alias.feature
|
144
|
+
- features/generate.feature
|
145
|
+
- features/init.feature
|
146
|
+
- features/sobriquet.feature
|
147
|
+
- features/step_definitions/sobriquet_steps.rb
|
148
|
+
- features/support/env.rb
|
149
|
+
- features/variable.feature
|
150
|
+
- html/Object.html
|
151
|
+
- html/README_rdoc.html
|
152
|
+
- html/Sobriquet.html
|
153
|
+
- html/created.rid
|
154
|
+
- html/css/fonts.css
|
155
|
+
- html/css/rdoc.css
|
156
|
+
- html/fonts.css
|
157
|
+
- html/fonts/Lato-Light.ttf
|
158
|
+
- html/fonts/Lato-LightItalic.ttf
|
159
|
+
- html/fonts/Lato-Regular.ttf
|
160
|
+
- html/fonts/Lato-RegularItalic.ttf
|
161
|
+
- html/fonts/SourceCodePro-Bold.ttf
|
162
|
+
- html/fonts/SourceCodePro-Regular.ttf
|
163
|
+
- html/images/add.png
|
164
|
+
- html/images/arrow_up.png
|
165
|
+
- html/images/brick.png
|
166
|
+
- html/images/brick_link.png
|
167
|
+
- html/images/bug.png
|
168
|
+
- html/images/bullet_black.png
|
169
|
+
- html/images/bullet_toggle_minus.png
|
170
|
+
- html/images/bullet_toggle_plus.png
|
171
|
+
- html/images/date.png
|
172
|
+
- html/images/delete.png
|
173
|
+
- html/images/find.png
|
174
|
+
- html/images/loadingAnimation.gif
|
175
|
+
- html/images/macFFBgHack.png
|
176
|
+
- html/images/package.png
|
177
|
+
- html/images/page_green.png
|
178
|
+
- html/images/page_white_text.png
|
179
|
+
- html/images/page_white_width.png
|
180
|
+
- html/images/plugin.png
|
181
|
+
- html/images/ruby.png
|
182
|
+
- html/images/tag_blue.png
|
183
|
+
- html/images/tag_green.png
|
184
|
+
- html/images/transparent.png
|
185
|
+
- html/images/wrench.png
|
186
|
+
- html/images/wrench_orange.png
|
187
|
+
- html/images/zoom.png
|
188
|
+
- html/index.html
|
189
|
+
- html/js/darkfish.js
|
190
|
+
- html/js/jquery.js
|
191
|
+
- html/js/navigation.js
|
192
|
+
- html/js/navigation.js.gz
|
193
|
+
- html/js/search.js
|
194
|
+
- html/js/search_index.js
|
195
|
+
- html/js/search_index.js.gz
|
196
|
+
- html/js/searcher.js
|
197
|
+
- html/js/searcher.js.gz
|
198
|
+
- html/rdoc.css
|
199
|
+
- html/table_of_contents.html
|
200
|
+
- lib/sobriquet.rb
|
201
|
+
- lib/sobriquet/command.rb
|
202
|
+
- lib/sobriquet/command_collection.rb
|
203
|
+
- lib/sobriquet/persistance.rb
|
204
|
+
- lib/sobriquet/version.rb
|
205
|
+
- readme.md
|
206
|
+
- readme.rdoc
|
207
|
+
- sobriquet.gemspec
|
208
|
+
- sobriquet.rdoc
|
209
|
+
- spec/command_collection_spec.rb
|
210
|
+
- spec/persistance_spec.rb
|
211
|
+
- spec/sobriquet_spec.rb
|
212
|
+
- spec/spec_helper.rb
|
213
|
+
- templates/sobriquet.csv
|
214
|
+
- workspace.csv
|
215
|
+
homepage: http://laliberte.io
|
216
|
+
licenses:
|
217
|
+
- mit
|
218
|
+
metadata: {}
|
219
|
+
post_install_message:
|
220
|
+
rdoc_options:
|
221
|
+
- "--title"
|
222
|
+
- sobriquet
|
223
|
+
- "--main"
|
224
|
+
- README.rdoc
|
225
|
+
- "-ri"
|
226
|
+
require_paths:
|
227
|
+
- lib
|
228
|
+
- lib
|
229
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
230
|
+
requirements:
|
231
|
+
- - ">="
|
232
|
+
- !ruby/object:Gem::Version
|
233
|
+
version: '0'
|
234
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
235
|
+
requirements:
|
236
|
+
- - ">="
|
237
|
+
- !ruby/object:Gem::Version
|
238
|
+
version: '0'
|
239
|
+
requirements: []
|
240
|
+
rubyforge_project:
|
241
|
+
rubygems_version: 2.2.0
|
242
|
+
signing_key:
|
243
|
+
specification_version: 4
|
244
|
+
summary: Sobriquet manage your alias
|
245
|
+
test_files: []
|