my_scripts 0.1.14 → 0.1.15
Sign up to get free protection for your applications and to get access to all the features.
- data/HISTORY +4 -0
- data/VERSION +1 -1
- data/lib/my_scripts/scripts/gitto.rb +3 -3
- metadata +8 -8
data/HISTORY
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.15
|
@@ -36,14 +36,14 @@ module MyScripts
|
|
36
36
|
end
|
37
37
|
|
38
38
|
puts "Adding all the changes"
|
39
|
-
system
|
39
|
+
system "git add --all"
|
40
40
|
|
41
41
|
puts "Committing everything with message: #{commit_message}"
|
42
|
-
system %Q
|
42
|
+
system %Q[git commit -a -m "#{commit_message}" --author arvicco]
|
43
43
|
|
44
44
|
current_branch = `git branch`.strip
|
45
45
|
puts "Pushing to (default) remote for branch: #{current_branch}"
|
46
|
-
system
|
46
|
+
system "git push"
|
47
47
|
end
|
48
48
|
end
|
49
49
|
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: my_scripts
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 5
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
9
|
+
- 15
|
10
|
+
version: 0.1.15
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- arvicco
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-
|
18
|
+
date: 2010-11-07 00:00:00 +03:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -56,12 +56,12 @@ dependencies:
|
|
56
56
|
requirements:
|
57
57
|
- - ">="
|
58
58
|
- !ruby/object:Gem::Version
|
59
|
-
hash:
|
59
|
+
hash: 23
|
60
60
|
segments:
|
61
61
|
- 1
|
62
|
-
-
|
63
|
-
-
|
64
|
-
version: 1.
|
62
|
+
- 0
|
63
|
+
- 0
|
64
|
+
version: 1.0.0
|
65
65
|
type: :runtime
|
66
66
|
version_requirements: *id003
|
67
67
|
description: Simple scripting framework
|