public
Description: This JavaScript project provides an ActiveRecord-esque API for the Google Gears SQLite database.
Homepage: http://code.google.com/p/mechanizations/
Clone URL: git://github.com/drnic/google-gears-mechanizations.git
Search Repo:
updated README
drnic (author)
Tue May 06 22:43:15 -0700 2008
commit  afe6f515ba0ccc92d59755c371e74736aa3ae951
tree    ede2752f9c89aea930575d44d829f26c4dacd662
parent  1b56388d89d0d4c518bfbb4234f64225976b271b
...
1
 
2
3
4
 
 
 
 
 
 
...
 
1
2
 
 
3
4
5
6
7
8
0
@@ -1,4 +1,8 @@
0
-== 0.0.1 2008-05-07
0
+== 0.2.0 2008-05-07
0
 
0
-* 1 major enhancement:
0
- * Initial release
0
+* Converted project to newjs format
0
+* Converted tests to jsunittest
0
+
0
+== 0.1.0 2008-05-07
0
+
0
+* Initial import from http://code.google.com/p/mechanizations/ (svn revision 3)
...
12
13
14
15
 
16
17
18
...
12
13
14
 
15
16
17
18
0
@@ -12,7 +12,7 @@ require 'rake/packagetask'
0
 
0
 $:.unshift File.dirname(__FILE__) + "/lib"
0
 
0
-APP_VERSION = '0.0.1'
0
+APP_VERSION = File.open('History.txt').read.split("\n").first.match(/\b[\d\.]+\b/)[0]
0
 APP_NAME = 'mechanizations'
0
 RUBYFORGE_PROJECT = APP_NAME
0
 APP_FILE_NAME= "#{APP_NAME}.js"
...
4
5
6
7
 
...
4
5
6
 
7
0
@@ -4,4 +4,4 @@ var Mechanizations = {
0
   Version: '<%= APP_VERSION %>',
0
 };
0
 
0
-<%= include 'gears_connector.js' %>
0
+<%= include 'jquery.mechanizations.util.js', 'gears_connector.js' %>

Comments

    No one has commented yet.