my_scripts 0.1.14 → 0.1.15

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/HISTORY CHANGED
@@ -62,3 +62,7 @@
62
62
  == 0.1.14 / 2010-10-28
63
63
 
64
64
  * Project updated for RSpec2
65
+
66
+ == 0.1.15 / 2010-11-07
67
+
68
+ * Dependency corrected
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.14
1
+ 0.1.15
@@ -36,14 +36,14 @@ module MyScripts
36
36
  end
37
37
 
38
38
  puts "Adding all the changes"
39
- system %Q{git add --all}
39
+ system "git add --all"
40
40
 
41
41
  puts "Committing everything with message: #{commit_message}"
42
- system %Q{git commit -a -m "#{commit_message}" --author arvicco}
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 %Q{git push}
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: 7
4
+ hash: 5
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 14
10
- version: 0.1.14
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-10-28 00:00:00 +04:00
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: 13
59
+ hash: 23
60
60
  segments:
61
61
  - 1
62
- - 2
63
- - 9
64
- version: 1.2.9
62
+ - 0
63
+ - 0
64
+ version: 1.0.0
65
65
  type: :runtime
66
66
  version_requirements: *id003
67
67
  description: Simple scripting framework