my_scripts 0.0.11 → 0.0.12
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.
- data/VERSION +1 -1
- data/lib/my_scripts/gitto.rb +1 -1
- data/my_scripts.gemspec +2 -2
- metadata +2 -2
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.12
|
data/lib/my_scripts/gitto.rb
CHANGED
|
@@ -17,7 +17,6 @@ module MyScripts
|
|
|
17
17
|
|
|
18
18
|
puts "Committing (versionup =#{bump}) with message: #{message}"
|
|
19
19
|
|
|
20
|
-
system %Q[git add --all]
|
|
21
20
|
case bump
|
|
22
21
|
when 1..9
|
|
23
22
|
system %Q[rake version:bump:patch]
|
|
@@ -26,6 +25,7 @@ module MyScripts
|
|
|
26
25
|
when 10..99
|
|
27
26
|
system %Q[rake version:bump:major]
|
|
28
27
|
end
|
|
28
|
+
system %Q[git add --all]
|
|
29
29
|
system %Q[git commit -a -m "#{message}" --author arvicco]
|
|
30
30
|
system %Q[git push]
|
|
31
31
|
end
|
data/my_scripts.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{my_scripts}
|
|
8
|
-
s.version = "0.0.
|
|
8
|
+
s.version = "0.0.12"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["arvicco"]
|
|
12
|
-
s.date = %q{2010-02-
|
|
12
|
+
s.date = %q{2010-02-15}
|
|
13
13
|
s.description = %q{Simple framework for writing command-line scripts and collection of my own scripts (mostly dev-related)}
|
|
14
14
|
s.email = %q{arvitallian@gmail.com}
|
|
15
15
|
s.executables = ["citi", "dummy", "gitto", "jew", "mybones", "rabbit"]
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: my_scripts
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.12
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- arvicco
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2010-02-
|
|
12
|
+
date: 2010-02-15 00:00:00 +03:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|