futuresinc-jrails 0.5.1 → 0.5.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/lib/jrails.rb +1 -1
  2. metadata +2 -4
  3. data/CHANGELOG +0 -43
data/lib/jrails.rb CHANGED
@@ -33,7 +33,7 @@ module ActionView
33
33
  USE_PROTECTION = const_defined?(:DISABLE_JQUERY_FORGERY_PROTECTION) ? !DISABLE_JQUERY_FORGERY_PROTECTION : true
34
34
 
35
35
  unless const_defined? :JQUERY_VAR
36
- JQUERY_VAR = 'jQuery'
36
+ JQUERY_VAR = '$'
37
37
  end
38
38
 
39
39
  unless const_defined? :JQCALLBACKS
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: futuresinc-jrails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aaron Eisenberger
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2009-08-07 00:00:00 -07:00
13
+ date: 2009-09-18 00:00:00 -07:00
14
14
  default_executable: jrails
15
15
  dependencies: []
16
16
 
@@ -21,7 +21,6 @@ executables:
21
21
  extensions: []
22
22
 
23
23
  extra_rdoc_files:
24
- - CHANGELOG
25
24
  - LICENSE
26
25
  - README.rdoc
27
26
  files:
@@ -35,7 +34,6 @@ files:
35
34
  - lib/jrails.rb
36
35
  - rails/init.rb
37
36
  - tasks/jrails.rake
38
- - CHANGELOG
39
37
  - LICENSE
40
38
  - README.rdoc
41
39
  has_rdoc: false
data/CHANGELOG DELETED
@@ -1,43 +0,0 @@
1
- 0.5.0 (31 July 2009)
2
- * Gemification
3
- * Support for Ruby 1.9.X
4
- * Updated to jQuery 1.3.2
5
- * Updated to jQuery UI 1.7.2
6
- * Created a jrails binary (runs rake tasks) because rails does not (yet?) pickup
7
- tasks from gem plugins
8
- * Changed default to use jQuery compatibility name (not $)
9
- * Created a scrub task that will remove the prototype / script.aculo.us
10
- javascript files
11
- * better approximate scriptaculous effect names
12
- * add support for page[:element_id].visual_effect(:effect) as well as page.visual_effect(:effect, :element_id)
13
- * added a reset form function to jrails.js (stolen from jquery form)
14
- * can now use jquery selectors in all functions
15
- * added javascript_function helper to render inline rjs helpers
16
- * better support for sortable_element
17
-
18
- 0.4.0 (16 June 2008)
19
- * updated to jquery-ui 1.5 & merged js into single file
20
- * Added jQuery.noConflict support
21
- * support for value/val
22
- * additional support for update/delete methods
23
- * support for success/failure hash
24
- * setRequestHeader now gets called globally
25
- * Better support for droppables, sortables
26
- * Add support for prototype AJAX callbacks
27
- * better support for AJAX form calls
28
-
29
- 0.3.0 (22 Feb 2008)
30
- * updated to jquery-fx 1.0b and jquery-ui 1.5b
31
- * Add text/javascript request header to fix format.js
32
- * Added Tasks (thanks ggarside)
33
- * Improve visual_effects methods
34
- * Fixed some RJS calls
35
- * Fixed observer code for ie
36
-
37
- 0.2.0 (26 Nov 2007)
38
- * Vastly Improved FX
39
- * Improved Form Observers
40
- * Fixed Rails <= 1.2.6 Compatibility
41
-
42
- 0.1.0 (15 Nov 2007)
43
- * Initial release