ripl 0.3.5 → 0.3.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,6 @@
1
+ == 0.3.6
2
+ * Add Ripl.started?
3
+
1
4
  == 0.3.5
2
5
  * Fix subclassed runner printing version
3
6
 
@@ -187,6 +187,7 @@ Shells built on top of ripl:
187
187
  * {fresh}[http://github.com/janlelis/fresh]: An interesting ruby/system hybrid shell
188
188
  * {ripl-johnson}[http://github.com/cldwalker/ripl-johnson]: A js shell based on johnson (firefox tracemonkey)
189
189
  * {ronin}[https://github.com/ronin-ruby/ronin]: An exploit development platform using ripl for its console
190
+ * {tux}[http://github.com/cldwalker/tux]: A sinatra shell
190
191
 
191
192
  == More Ripl Links
192
193
 
@@ -199,3 +200,4 @@ Some other irb alternatives to check out:
199
200
  * {ir}[http://github.com/raggi/ir]: nice and light
200
201
  * {irb2}[http://github.com/wycats/irb2]: yehuda katz's partial attempt at rewriting irb
201
202
  * {dietrb}[http://github.com/alloy/dietrb]: mac and ruby 1.9 specific
203
+ * {pry}[http://github.com/banister/pry]: featureful but heavy
@@ -4,6 +4,7 @@ module Ripl
4
4
  end
5
5
 
6
6
  def self.start(*args); Runner.start(*args); end
7
+ def self.started?; instance_variable_defined? :@shell; end
7
8
 
8
9
  def self.plugins
9
10
  file = File.symlink?(__FILE__) ? File.readlink(__FILE__) : __FILE__
@@ -1,3 +1,3 @@
1
1
  module Ripl
2
- VERSION = '0.3.5'
2
+ VERSION = '0.3.6'
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ripl
3
3
  version: !ruby/object:Gem::Version
4
- hash: 25
4
+ hash: 31
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 3
9
- - 5
10
- version: 0.3.5
9
+ - 6
10
+ version: 0.3.6
11
11
  platform: ruby
12
12
  authors:
13
13
  - Gabriel Horner
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-04-05 00:00:00 -04:00
18
+ date: 2011-04-24 00:00:00 -04:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency