update 0.0.2 → 0.0.3

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.
Files changed (4) hide show
  1. data/README.md +16 -0
  2. data/lib/update/version.rb +1 -1
  3. metadata +6 -6
  4. data/README +0 -7
data/README.md ADDED
@@ -0,0 +1,16 @@
1
+ ### Update
2
+
3
+ Update is a simple Ruby script for running sets of updates from your command line.
4
+
5
+ Edit the lists of commands in commands.rb by modifying the Hash of commands and explanations:
6
+
7
+ `COMMANDS = { "locate toasters", "finds all the toasters }`
8
+
9
+ Run your updates with one command:
10
+
11
+ `update`
12
+
13
+ Basic options:
14
+
15
+ `update -v`
16
+ `update -h`
@@ -1,3 +1,3 @@
1
1
  module Update
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: update
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -13,7 +13,7 @@ date: 2012-01-22 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: slop
16
- requirement: &70305767192260 !ruby/object:Gem::Requirement
16
+ requirement: &70348511056900 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: '0'
22
22
  type: :development
23
23
  prerelease: false
24
- version_requirements: *70305767192260
24
+ version_requirements: *70348511056900
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: slop
27
- requirement: &70305767191740 !ruby/object:Gem::Requirement
27
+ requirement: &70348511056420 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ! '>='
@@ -32,7 +32,7 @@ dependencies:
32
32
  version: '0'
33
33
  type: :runtime
34
34
  prerelease: false
35
- version_requirements: *70305767191740
35
+ version_requirements: *70348511056420
36
36
  description: update script for updating yer things
37
37
  email:
38
38
  - shannonskipper@gmail.com
@@ -43,7 +43,7 @@ extra_rdoc_files: []
43
43
  files:
44
44
  - .gitignore
45
45
  - Gemfile
46
- - README
46
+ - README.md
47
47
  - Rakefile
48
48
  - bin/update
49
49
  - lib/update.rb
data/README DELETED
@@ -1,7 +0,0 @@
1
- # Update
2
-
3
- Update is a script for running command line updates.
4
-
5
- RedGreen is just a light module for pretty red and green in your console.
6
-
7
- Add commands to commands.rb and run your script with './update'.