neptune 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.
- data/README +3 -0
- data/bin/neptune +1 -3
- data/lib/{job.rb → neptune.rb} +3 -0
- metadata +5 -5
data/README
CHANGED
|
@@ -53,6 +53,9 @@ in for a link to that as it becomes available.
|
|
|
53
53
|
|
|
54
54
|
Version History:
|
|
55
55
|
|
|
56
|
+
February 4, 2011 - 0.0.3 released, allowing users to use
|
|
57
|
+
Neptune properly as a gem within Ruby code
|
|
58
|
+
|
|
56
59
|
February 4, 2011 - 0.0.2 released, adding support for remote
|
|
57
60
|
compiling
|
|
58
61
|
|
data/bin/neptune
CHANGED
|
@@ -3,9 +3,7 @@
|
|
|
3
3
|
$VERBOSE = nil # to surpress excessive SSL cert warnings
|
|
4
4
|
|
|
5
5
|
$:.unshift File.join(File.dirname(__FILE__), "..", "lib")
|
|
6
|
-
require '
|
|
7
|
-
require 'common_functions'
|
|
8
|
-
require 'job'
|
|
6
|
+
require 'neptune'
|
|
9
7
|
|
|
10
8
|
file = ARGV[0]
|
|
11
9
|
unless File.exists?(file)
|
data/lib/{job.rb → neptune.rb}
RENAMED
metadata
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: neptune
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 25
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 0.0.
|
|
9
|
+
- 3
|
|
10
|
+
version: 0.0.3
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Chris Bunch
|
|
14
|
-
autorequire:
|
|
14
|
+
autorequire: neptune
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
@@ -104,7 +104,7 @@ files:
|
|
|
104
104
|
- doc/created.rid
|
|
105
105
|
- lib/common_functions.rb
|
|
106
106
|
- lib/app_controller_client.rb
|
|
107
|
-
- lib/
|
|
107
|
+
- lib/neptune.rb
|
|
108
108
|
- README
|
|
109
109
|
- LICENSE
|
|
110
110
|
has_rdoc: true
|