runssh 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/README.rdoc +17 -22
  2. data/lib/runsshlib/version.rb +1 -1
  3. metadata +3 -3
data/README.rdoc CHANGED
@@ -69,9 +69,23 @@ This program is distributed under the GPL v2 license.
69
69
 
70
70
  == History
71
71
 
72
- [0.1.0] Initial release. Simple bookmarks (host and user),
73
- only _shell_ operation supported.
74
- [0.1.1] Improved docs.
72
+ === 0.1.0
73
+ * Initial release. Simple bookmarks (host and user),only _shell_ operation
74
+ supported.
75
+
76
+ === 0.1.1
77
+ * Improved docs.
78
+
79
+ === 0.2.0
80
+ * New config file structure - with config file version discovery and update.
81
+ * Some output improvements.
82
+ * Added support for remote commands.
83
+ * Rewrite of some of the elements. The next release will introduce further
84
+ rewrite.
85
+ * Added support for ruby 1.9.2.
86
+
87
+ === 0.2.1
88
+ * Fixed docs.
75
89
 
76
90
  == TODO
77
91
  * Convert to use thor as parent for RunSSHLib::CLI
@@ -85,22 +99,3 @@ This program is distributed under the GPL v2 license.
85
99
  * Rename (or move) host definition
86
100
  * Maybe replace invoking ssh from the command line with some library.
87
101
  * Automatic deletion of empty groups.
88
-
89
- === Tasks for 0.2
90
- * Add support for autotest ✓
91
- * Use Highline for questions ✓
92
- * Migrate to new ConfigFile:
93
- 1. Create a new _SshHostDef_ class ✓
94
- 2. Add version to the config file (use "VERSION" key as string and not as
95
- symbol (so it won't interfere with the paths) ✓
96
- 3. Create discovery of config version on initialization:
97
- * If config file is un-versioned abort the application and suggest
98
- running with <tt>--update-config</tt> argument. ✓
99
- 4. Create a update-config method for upgrading the configurations file:
100
- * Inform the user of backup name. ✓
101
- * Copy the original to backup. ✓
102
- * Convert all _HostDef_ instances to _SshHostDef_. ✓
103
- * Save configuration and inform the user. ✓
104
- 4. Make sure _VERSION_ is excluded form the listing of groups. ✓
105
- 5. Convert existing functionality with the new configuration. ✓
106
- * Add support for remote command. ✓
@@ -20,7 +20,7 @@ module RunSSHLib
20
20
  module Version
21
21
  MAJOR = 0
22
22
  MINOR = 2
23
- BUILD = 0
23
+ BUILD = 1
24
24
 
25
25
  STRING = [MAJOR, MINOR, BUILD].compact.join('.')
26
26
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: runssh
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
- - 0
10
- version: 0.2.0
9
+ - 1
10
+ version: 0.2.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Haim Ashkenazi