neerajdotname-javascript_lab 0.0.8 → 0.0.9
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/History.txt +4 -0
- data/README.markdown +11 -6
- data/lib/javascript_lab.rb +1 -1
- metadata +1 -1
data/History.txt
CHANGED
data/README.markdown
CHANGED
|
@@ -15,17 +15,13 @@ This is a gem to quickly try out javascript code without worrying about includin
|
|
|
15
15
|
|
|
16
16
|
* quickly test if the JSON data is valid or not.
|
|
17
17
|
|
|
18
|
-
== Live Demo
|
|
19
|
-
|
|
20
|
-
[http://www.neeraj.name/admin_data](http://www.neeraj.name/admin_data)
|
|
21
|
-
|
|
22
18
|
== How to use it
|
|
23
19
|
|
|
24
20
|
Install javascript_lab
|
|
25
21
|
|
|
26
22
|
<pre>
|
|
27
23
|
<code>
|
|
28
|
-
sudo gem install javascript_lab
|
|
24
|
+
sudo gem install neerajdotname-javascript_lab -s http://gems.github.com
|
|
29
25
|
</code>
|
|
30
26
|
</pre>
|
|
31
27
|
|
|
@@ -42,7 +38,16 @@ And it should launch javascript_lab in your browser.
|
|
|
42
38
|
|
|
43
39
|
== With Passenger
|
|
44
40
|
|
|
45
|
-
|
|
41
|
+
To use Gembox with Passenger Pane there are a few simple steps you need to do:
|
|
42
|
+
|
|
43
|
+
<pre>
|
|
44
|
+
<code>
|
|
45
|
+
$ git clone git://github.com/neerajdotname/javascript_lab.git
|
|
46
|
+
$ open ./javascript_lab/
|
|
47
|
+
</code>
|
|
48
|
+
</pre>
|
|
49
|
+
|
|
50
|
+
Then open up Passenger Pane and drag the open javascript_lab folder into the list on the left (You’ll have to be authenticated). Now browse to javascript_lab.local/ and you’ll see it.
|
|
46
51
|
|
|
47
52
|
== Feedback
|
|
48
53
|
|
data/lib/javascript_lab.rb
CHANGED