jelly 0.5.8 → 0.5.9
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION.yml +1 -1
- data/generators/jelly/templates/javascripts/jelly.js +1 -1
- data/jelly.gemspec +11 -12
- metadata +2 -3
- data/VERSION +0 -1
data/VERSION.yml
CHANGED
@@ -31,9 +31,9 @@ Jelly.activatePage = function(controllerName, actionName) {
|
|
31
31
|
};
|
32
32
|
|
33
33
|
Jelly._activatePage = function(actionName){
|
34
|
+
Jelly.initComponents();
|
34
35
|
if(page.all) page.all();
|
35
36
|
if(page[actionName]) page[actionName].call(page);
|
36
|
-
Jelly.initComponents();
|
37
37
|
page.loaded = true;
|
38
38
|
};
|
39
39
|
|
data/jelly.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{jelly}
|
8
|
-
s.version = "0.5.
|
8
|
+
s.version = "0.5.9"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Pivotal Labs, Inc"]
|
12
|
-
s.date = %q{2009-10-
|
12
|
+
s.date = %q{2009-10-30}
|
13
13
|
s.description = %q{Jelly provides a set of tools and conventions for creating rich ajax/javascript web applications with jQuery and Ruby on Rails.}
|
14
14
|
s.email = %q{opensource@pivotallabs.com}
|
15
15
|
s.extra_rdoc_files = [
|
@@ -20,7 +20,6 @@ Gem::Specification.new do |s|
|
|
20
20
|
"MIT-LICENSE",
|
21
21
|
"README.markdown",
|
22
22
|
"Rakefile",
|
23
|
-
"VERSION",
|
24
23
|
"VERSION.yml",
|
25
24
|
"generators/jelly/USAGE",
|
26
25
|
"generators/jelly/jelly_generator.rb",
|
@@ -43,23 +42,23 @@ Gem::Specification.new do |s|
|
|
43
42
|
s.summary = %q{a sweet unobtrusive javascript framework for jQuery and Rails}
|
44
43
|
s.test_files = [
|
45
44
|
"spec/controllers/jelly_controller_spec.rb",
|
46
|
-
"spec/
|
45
|
+
"spec/spec_helper.rb",
|
46
|
+
"spec/rails_root/test/performance/browsing_test.rb",
|
47
|
+
"spec/rails_root/test/test_helper.rb",
|
47
48
|
"spec/rails_root/app/controllers/application_controller.rb",
|
48
49
|
"spec/rails_root/app/helpers/application_helper.rb",
|
49
|
-
"spec/rails_root/config/boot.rb",
|
50
50
|
"spec/rails_root/config/environment.rb",
|
51
|
-
"spec/rails_root/config/environments/development.rb",
|
52
51
|
"spec/rails_root/config/environments/production.rb",
|
52
|
+
"spec/rails_root/config/environments/development.rb",
|
53
53
|
"spec/rails_root/config/environments/test.rb",
|
54
|
+
"spec/rails_root/config/routes.rb",
|
55
|
+
"spec/rails_root/config/boot.rb",
|
54
56
|
"spec/rails_root/config/initializers/backtrace_silencers.rb",
|
55
|
-
"spec/rails_root/config/initializers/inflections.rb",
|
56
|
-
"spec/rails_root/config/initializers/mime_types.rb",
|
57
57
|
"spec/rails_root/config/initializers/new_rails_defaults.rb",
|
58
|
+
"spec/rails_root/config/initializers/mime_types.rb",
|
59
|
+
"spec/rails_root/config/initializers/inflections.rb",
|
58
60
|
"spec/rails_root/config/initializers/session_store.rb",
|
59
|
-
"spec/
|
60
|
-
"spec/rails_root/test/performance/browsing_test.rb",
|
61
|
-
"spec/rails_root/test/test_helper.rb",
|
62
|
-
"spec/spec_helper.rb"
|
61
|
+
"spec/helpers/jelly_helper_spec.rb"
|
63
62
|
]
|
64
63
|
|
65
64
|
if s.respond_to? :specification_version then
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jelly
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pivotal Labs, Inc
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-11-03 00:00:00 -08:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -35,7 +35,6 @@ files:
|
|
35
35
|
- MIT-LICENSE
|
36
36
|
- README.markdown
|
37
37
|
- Rakefile
|
38
|
-
- VERSION
|
39
38
|
- VERSION.yml
|
40
39
|
- generators/jelly/USAGE
|
41
40
|
- generators/jelly/jelly_generator.rb
|
data/VERSION
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
0.3.0
|