neerajdotname-javascript_lab 0.0.5 → 0.0.7
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 +10 -5
- data/README.markdown +11 -8
- data/Rakefile +10 -10
- data/lib/javascript_lab.rb +1 -1
- metadata +1 -1
data/History.txt
CHANGED
|
@@ -1,19 +1,24 @@
|
|
|
1
|
-
|
|
1
|
+
|
|
2
|
+
=== 0.0.6 2009-06-15
|
|
3
|
+
|
|
4
|
+
* patched the Manifest.txt from rake check_manifest | patch -p0
|
|
5
|
+
|
|
6
|
+
=== 0.0.5 2009-06-15
|
|
2
7
|
|
|
3
8
|
* bumped up the version number for the file residing at lib
|
|
4
9
|
|
|
5
|
-
|
|
10
|
+
=== 0.0.4 2009-06-15
|
|
6
11
|
|
|
7
12
|
* removed the stylce.css from manifest
|
|
8
13
|
|
|
9
|
-
|
|
14
|
+
=== 0.0.3 2009-06-15
|
|
10
15
|
|
|
11
16
|
* enlarged the text area
|
|
12
17
|
|
|
13
|
-
|
|
18
|
+
=== 0.0.2 2009-06-15
|
|
14
19
|
|
|
15
20
|
* in development the server will start in foreground mode. ./bin/javascript_lab development
|
|
16
21
|
|
|
17
|
-
|
|
22
|
+
=== 0.0.1 2009-06-15
|
|
18
23
|
|
|
19
24
|
* Initial release
|
data/README.markdown
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
|
-
|
|
1
|
+
= javascript_lab
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
* http://github.com/neerajdotname/javascript_lab/tree/master
|
|
4
|
+
* http://neeraj.name
|
|
5
|
+
|
|
6
|
+
== Introduction
|
|
4
7
|
|
|
5
8
|
This is a gem to quickly try out javascript code without worrying about including the right javascript library.
|
|
6
9
|
|
|
7
|
-
|
|
10
|
+
== Features
|
|
8
11
|
|
|
9
12
|
* supports jQuery and Prototype javascripts libraries.
|
|
10
13
|
|
|
@@ -12,11 +15,11 @@ This is a gem to quickly try out javascript code without worrying about includin
|
|
|
12
15
|
|
|
13
16
|
* quickly test if the JSON data is valid or not.
|
|
14
17
|
|
|
15
|
-
|
|
18
|
+
== Live Demo
|
|
16
19
|
|
|
17
20
|
[http://www.neeraj.name/admin_data](http://www.neeraj.name/admin_data)
|
|
18
21
|
|
|
19
|
-
|
|
22
|
+
== How to use it
|
|
20
23
|
|
|
21
24
|
Install javascript_lab
|
|
22
25
|
|
|
@@ -37,15 +40,15 @@ On the command-line:
|
|
|
37
40
|
|
|
38
41
|
And it should launch javascript_lab in your browser.
|
|
39
42
|
|
|
40
|
-
|
|
43
|
+
== With Passenger
|
|
41
44
|
|
|
42
45
|
coming up
|
|
43
46
|
|
|
44
|
-
|
|
47
|
+
== Feedback
|
|
45
48
|
|
|
46
49
|
Email me: neerajdotname [at] gmail (dot) com
|
|
47
50
|
|
|
48
|
-
|
|
51
|
+
== License
|
|
49
52
|
|
|
50
53
|
Copyright (c) 2009 neerajdotname
|
|
51
54
|
|
data/Rakefile
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
# change p.url to point to the blog
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
#%w[rubygems rake rake/clean fileutils newgem rubigen jeweler].each {|f| require f}
|
|
4
|
+
require 'rubygems'
|
|
5
|
+
require 'hoe'
|
|
4
6
|
require File.dirname(__FILE__) + '/lib/javascript_lab'
|
|
5
7
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
p.
|
|
9
|
-
p.
|
|
8
|
+
#Hoe.spec('javascript_lab', JavascriptLab::VERSION) do |p|
|
|
9
|
+
Hoe.spec('javascript_lab') do |p|
|
|
10
|
+
p.developer('Neeraj Singh', 'neerajdotname@gmail.com')
|
|
11
|
+
p.readme_file = 'README.markdown'
|
|
12
|
+
p.summary = p.description = %q{A tool to verify javascript code without worrying about including javascript library.}
|
|
13
|
+
p.extra_rdoc_files = FileList['*.markdown']
|
|
10
14
|
p.post_install_message = 'PostInstall.txt'
|
|
11
15
|
p.rubyforge_name = 'neerajdotname'
|
|
12
|
-
p.summary = p.description = 'A tool to quickly verify javascript code without worrying about including the javascript library.'
|
|
13
|
-
p.url = ['http://github.com/neerajdotname/javascript_lab','http://neeraj.name']
|
|
14
16
|
p.extra_deps = [
|
|
15
17
|
['sinatra', '>=0.9.2'],
|
|
16
|
-
['vegas', '>=0.0.1']
|
|
18
|
+
['vegas', '>=0.0.1']
|
|
17
19
|
]
|
|
18
|
-
|
|
19
|
-
p.extra_dev_deps = []
|
|
20
20
|
end
|
data/lib/javascript_lab.rb
CHANGED