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 CHANGED
@@ -1,19 +1,24 @@
1
- == 0.0.5 2009-06-15
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
- == 0.0.4 2009-06-15
10
+ === 0.0.4 2009-06-15
6
11
 
7
12
  * removed the stylce.css from manifest
8
13
 
9
- == 0.0.3 2009-06-15
14
+ === 0.0.3 2009-06-15
10
15
 
11
16
  * enlarged the text area
12
17
 
13
- == 0.0.2 2009-06-15
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
- == 0.0.1 2009-06-15
22
+ === 0.0.1 2009-06-15
18
23
 
19
24
  * Initial release
data/README.markdown CHANGED
@@ -1,10 +1,13 @@
1
- # javascript_lab
1
+ = javascript_lab
2
2
 
3
- ## Introduction
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
- ## Features
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
- ## Live Demo
18
+ == Live Demo
16
19
 
17
20
  [http://www.neeraj.name/admin_data](http://www.neeraj.name/admin_data)
18
21
 
19
- ## How to use it
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
- ## With Passenger
43
+ == With Passenger
41
44
 
42
45
  coming up
43
46
 
44
- ## Feedback
47
+ == Feedback
45
48
 
46
49
  Email me: neerajdotname [at] gmail (dot) com
47
50
 
48
- ## License
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
- %w[rubygems rake rake/clean fileutils newgem rubigen jeweler].each {|f| require f}
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
- $hoe = Hoe.new('javascript_lab', JavascriptLab::VERSION) do |p|
7
- p.author = 'Neeraj Singh'
8
- p.email = 'neerajdotname@gmail.com'
9
- p.changes = p.paragraphs_of('History.txt',0..1).join("\n\n")
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
@@ -8,5 +8,5 @@ require 'javascript_lab/view_helpers'
8
8
  require 'javascript_lab/app'
9
9
 
10
10
  module JavascriptLab
11
- VERSION = '0.0.5'
11
+ VERSION = '0.0.7'
12
12
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: neerajdotname-javascript_lab
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Neeraj Singh