update 0.0.8 → 0.0.9

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/README.md CHANGED
@@ -1,16 +1,13 @@
1
- ### Update
2
-
1
+ # Update: a gem to run a list of updates
3
2
  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`
3
+ ##Installation and usage
4
+ ```ruby
5
+ gem install update
6
+ update
7
+ ```
8
+ Running `update` processes the list of updates found in the commands.rb file and then reports back whether the updates were run sucessfully.
9
+ ##Edit list of updates
10
+ Modify the Hash of update commands in commands.rb to customize update scripts. TODO: Sane and usable way to do this. >.>
11
+ ##License
12
+ Copyright (c) Shannon Skipper.
13
+ MIT License.
@@ -1,3 +1,3 @@
1
1
  module Update
2
- VERSION = "0.0.8"
2
+ VERSION = "0.0.9"
3
3
  end
data/update.gemspec CHANGED
@@ -7,7 +7,7 @@ Gem::Specification.new do |s|
7
7
  s.version = Update::VERSION
8
8
  s.authors = ["shan"]
9
9
  s.email = ["shannonskipper@gmail.com"]
10
- s.homepage = ""
10
+ s.homepage = "https://github.com/havenwood/update"
11
11
  s.summary = %q{simple command line updater script in Ruby}
12
12
  s.description = %q{update script for updating yer things}
13
13
 
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.8
4
+ version: 0.0.9
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-01-22 00:00:00.000000000 Z
12
+ date: 2012-01-23 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: slop
16
- requirement: &70100733209740 !ruby/object:Gem::Requirement
16
+ requirement: &70220249360280 !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: *70100733209740
24
+ version_requirements: *70220249360280
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: slop
27
- requirement: &70100733209220 !ruby/object:Gem::Requirement
27
+ requirement: &70220249359780 !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: *70100733209220
35
+ version_requirements: *70220249359780
36
36
  description: update script for updating yer things
37
37
  email:
38
38
  - shannonskipper@gmail.com
@@ -44,14 +44,13 @@ files:
44
44
  - .gitignore
45
45
  - Gemfile
46
46
  - README.md
47
- - Rakefile
48
47
  - bin/update
49
48
  - lib/update.rb
50
49
  - lib/update/commands.rb
51
50
  - lib/update/red-green.rb
52
51
  - lib/update/version.rb
53
52
  - update.gemspec
54
- homepage: ''
53
+ homepage: https://github.com/havenwood/update
55
54
  licenses: []
56
55
  post_install_message:
57
56
  rdoc_options: []
data/Rakefile DELETED
@@ -1 +0,0 @@
1
- require "bundler/gem_tasks"