space2underscore 0.3.1 → 0.3.2
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/README.md +0 -1
- data/lib/space2underscore/version.rb +1 -1
- data/space2underscore.gemspec +23 -0
- metadata +10 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e602aa524c574a2823a510acee4cf0525ad558ec
|
|
4
|
+
data.tar.gz: d4121b8541989108a670838701fa6fc60d76afb4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3875d342172645977c99adb9dca7f5929280f327ef39559b7b7c5f3042a2db62200935d97f9cb178953140029ff634965475cea718fa700aa1a37306976fec36
|
|
7
|
+
data.tar.gz: 2432cd059629c2f4911503b16b8efa27a3c4cc89bcc6cc0dd895d5547c55341df35f678ad0d79ceb3f899caf7ec39742af0648564590631395e9811390992881
|
data/README.md
CHANGED
data/space2underscore.gemspec
CHANGED
|
@@ -18,6 +18,29 @@ Gem::Specification.new do |spec|
|
|
|
18
18
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
19
19
|
spec.require_paths = ['lib']
|
|
20
20
|
|
|
21
|
+
spec.post_install_message = %q{
|
|
22
|
+
__________________________________________________________
|
|
23
|
+
..........................................................
|
|
24
|
+
__________________________________________________________
|
|
25
|
+
|
|
26
|
+
Thank you for installing space2underscore.
|
|
27
|
+
|
|
28
|
+
************************* Usage **************************
|
|
29
|
+
|
|
30
|
+
From the terminal:
|
|
31
|
+
|
|
32
|
+
$ space2underscore new branch -c
|
|
33
|
+
=> Switched to the new branch 'new_branch’
|
|
34
|
+
|
|
35
|
+
Or
|
|
36
|
+
|
|
37
|
+
$ git branch -m $(space2underscore renamed branch) # Output to the standard output
|
|
38
|
+
|
|
39
|
+
----------------------------------------------------------
|
|
40
|
+
..........................................................
|
|
41
|
+
__________________________________________________________
|
|
42
|
+
}
|
|
43
|
+
|
|
21
44
|
spec.add_development_dependency 'bundler', '~> 1.3'
|
|
22
45
|
spec.add_development_dependency 'rake'
|
|
23
46
|
spec.add_development_dependency 'rspec'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: space2underscore
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- sachin21
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-09-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -91,7 +91,14 @@ homepage: http://github.com/sachin21/space2underscore
|
|
|
91
91
|
licenses:
|
|
92
92
|
- MIT
|
|
93
93
|
metadata: {}
|
|
94
|
-
post_install_message:
|
|
94
|
+
post_install_message: "\n __________________________________________________________\n
|
|
95
|
+
\ ..........................................................\n __________________________________________________________\n\n
|
|
96
|
+
\ Thank you for installing space2underscore.\n\n *************************
|
|
97
|
+
Usage **************************\n\n From the terminal:\n\n $ space2underscore
|
|
98
|
+
new branch -c\n => Switched to the new branch 'new_branch’\n\n Or\n\n $
|
|
99
|
+
git branch -m $(space2underscore renamed branch) # Output to the standard output\n\n
|
|
100
|
+
\ ----------------------------------------------------------\n ..........................................................\n
|
|
101
|
+
\ __________________________________________________________\n "
|
|
95
102
|
rdoc_options: []
|
|
96
103
|
require_paths:
|
|
97
104
|
- lib
|