zeus 0.2.2 → 0.2.3

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -4,7 +4,9 @@
4
4
 
5
5
  Zeus preloads your app so that your normal development tasks such as `console`, `server`, `generate`, and tests take **ONE second**.
6
6
 
7
- ### [Watch the screencast!](http://vimeo.com/burkelibbey/zeus)
7
+ This screencast gives a quick overview of how to use zeus:
8
+
9
+ [![Watch the screencast!](http://s3.amazonaws.com/burkelibbey/vimeo-zeus.png)](http://vimeo.com/burkelibbey/zeus)
8
10
 
9
11
  ## Requirements
10
12
 
@@ -12,6 +14,7 @@ Pretty specific:
12
14
 
13
15
  * OS X 10.7+
14
16
  * Ruby 1.9+
17
+ * Rails 3.0+ (Support for other versions is not difficult and is planned.)
15
18
  * Backported GC from Ruby 2.0.
16
19
 
17
20
  You can install the GC-patched ruby from [this gist](https://gist.github.com/1688857) or from RVM.
data/TODO.md CHANGED
@@ -1,5 +1,6 @@
1
1
  ## TODO (roughly prioritized)
2
2
 
3
+ * After an acceptor is killed, attempting to request that command while it is reloading causes a server error.
3
4
  * Make sure that when a command process's connection is dropped, it is killed
4
5
  * less leaky handling of at_exit pid killing
5
6
  * Instead of exiting when requesting an as-yet-unbooted acceptor, wait until it's available then run.
@@ -6,7 +6,7 @@ module Zeus
6
6
  autoload :DSL, 'zeus/dsl'
7
7
  autoload :Server, 'zeus/server'
8
8
  autoload :Client, 'zeus/client'
9
- autoload :Version, 'zeus/version'
9
+ autoload :VERSION, 'zeus/version'
10
10
 
11
11
  class ZeusError < StandardError
12
12
  def self.status_code(code)
@@ -57,7 +57,7 @@ module Zeus
57
57
  if !File.exists?('.zeus.rb') && File.exists?('script/rails')
58
58
  File.expand_path("../templates/rails.rb", __FILE__)
59
59
  else
60
- '.zeus.rb'
60
+ './.zeus.rb'
61
61
  end
62
62
  end
63
63
 
@@ -1,3 +1,3 @@
1
1
  module Zeus
2
- VERSION = "0.2.2"
2
+ VERSION = "0.2.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zeus
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: