history_commander 0.0.1 → 0.0.2

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.
@@ -1,5 +1,13 @@
1
1
  = history_commander
2
2
 
3
+ == Description
4
+
5
+ History Commander is a ruby daemon that provides bash users with a global shared command line history. All commands that history commander collects will be sent to all nodes for use with reverse history search in all bash shells. It can also be used in monitor only mode (writeonly) where the bash history is only collected, not synchronized.
6
+
7
+ == Requirements
8
+
9
+ History Commander requires the use of an AMQP server. Credentials, host, and vhost must be configured for use.
10
+
3
11
  == Quick Start
4
12
 
5
13
  'gem install history_commander'
data/Rakefile CHANGED
@@ -6,7 +6,7 @@ begin
6
6
  Jeweler::Tasks.new do |gem|
7
7
  gem.name = "history_commander"
8
8
  gem.summary = %Q{Take command of your shell history!}
9
- gem.description = %Q{History Commander is a program designed to keep your shell history in sync across all your nodes. }
9
+ gem.description = %Q{ History Commander is a ruby daemon that provides bash users with a global shared command line history. All commands that history commander collects will be sent to all nodes for use with reverse history search in all bash shells. It can also be used in monitor only mode (writeonly) where the bash history is only collected, not synchronized. }
10
10
  gem.email = "jeremy@rubyonlinux.org"
11
11
  gem.homepage = "http://github.com/jeremyd/history_commander"
12
12
  gem.authors = ["Jeremy Deininger"]
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.1
1
+ 0.0.2
data/bin/hc CHANGED
@@ -9,7 +9,7 @@ require 'history_commander'
9
9
  require 'trollop'
10
10
  require 'tmpdir'
11
11
 
12
- command = ARGV.shift
12
+ command = ARGV[0]
13
13
  unless ["start", "stop", "configure"].include?(command)
14
14
  puts "Syntax: hc <command> [args] [--help]"
15
15
  puts " command can be 'start', 'stop', or 'configure'"
@@ -5,12 +5,12 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{history_commander}
8
- s.version = "0.0.1"
8
+ s.version = "0.0.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Jeremy Deininger"]
12
- s.date = %q{2010-08-01}
13
- s.description = %q{History Commander is a program designed to keep your shell history in sync across all your nodes. }
12
+ s.date = %q{2010-08-02}
13
+ s.description = %q{ History Commander is a ruby daemon that provides bash users with a global shared command line history. All commands that history commander collects will be sent to all nodes for use with reverse history search in all bash shells. It can also be used in monitor only mode (writeonly) where the bash history is only collected, not synchronized. }
14
14
  s.email = %q{jeremy@rubyonlinux.org}
15
15
  s.executables = ["hc", "hc_setup_bashrc"]
16
16
  s.extra_rdoc_files = [
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: history_commander
3
3
  version: !ruby/object:Gem::Version
4
- hash: 29
4
+ hash: 27
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 1
10
- version: 0.0.1
9
+ - 2
10
+ version: 0.0.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jeremy Deininger
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-08-01 00:00:00 -07:00
18
+ date: 2010-08-02 00:00:00 -07:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -132,7 +132,7 @@ dependencies:
132
132
  version: 1.2.9
133
133
  type: :development
134
134
  version_requirements: *id008
135
- description: "History Commander is a program designed to keep your shell history in sync across all your nodes. "
135
+ description: " History Commander is a ruby daemon that provides bash users with a global shared command line history. All commands that history commander collects will be sent to all nodes for use with reverse history search in all bash shells. It can also be used in monitor only mode (writeonly) where the bash history is only collected, not synchronized. "
136
136
  email: jeremy@rubyonlinux.org
137
137
  executables:
138
138
  - hc