netzke-core 0.5.2 → 0.5.3

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.rdoc CHANGED
@@ -1,4 +1,7 @@
1
- = v0.5.2 - EDGE
1
+ = v0.5.3 - 2010-06-14
2
+ * Fix: Getting rid of deprecation warnings about tasks not sitting in lib.
3
+
4
+ = v0.5.2 - 2010-06-11
2
5
  * Ext 3.2.1
3
6
  * Fix: Netzke::Base.before_load is now also called for the widgets embedded directly into a view.
4
7
  * New: support for external stylesheets.
data/Rakefile CHANGED
@@ -1,7 +1,7 @@
1
1
  begin
2
2
  require 'jeweler'
3
3
  Jeweler::Tasks.new do |gemspec|
4
- gemspec.version = "0.5.2"
4
+ gemspec.version = "0.5.3"
5
5
  gemspec.name = "netzke-core"
6
6
  gemspec.summary = "Build ExtJS/Rails widgets with minimum effort"
7
7
  gemspec.description = "Allows building ExtJS/Rails reusable code in a DRY way"
@@ -11,17 +11,18 @@ begin
11
11
  gemspec.authors = ["Sergei Kozlov"]
12
12
  gemspec.post_install_message = <<-MESSAGE
13
13
 
14
- ========================================================================
14
+ ========================================================================
15
15
 
16
- Thanks for installing Netzke Core!
17
-
18
- Run "./script/generate netzke_core" to finish the installation.
16
+ Thanks for installing Netzke Core!
17
+
18
+ Don't forget to run "./script/generate netzke_core" for each Rails
19
+ app that will be using this gem.
19
20
 
20
- Netzke home page: http://netzke.org
21
- Netzke Google Groups: http://groups.google.com/group/netzke
22
- Netzke tutorials: http://blog.writelesscode.com
21
+ Netzke home page: http://netzke.org
22
+ Netzke Google Groups: http://groups.google.com/group/netzke
23
+ Netzke tutorials: http://blog.writelesscode.com
23
24
 
24
- ========================================================================
25
+ ========================================================================
25
26
 
26
27
  MESSAGE
27
28
 
File without changes
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: netzke-core
3
3
  version: !ruby/object:Gem::Version
4
- hash: 15
4
+ hash: 13
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 5
9
- - 2
10
- version: 0.5.2
9
+ - 3
10
+ version: 0.5.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - Sergei Kozlov
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-06-11 00:00:00 +02:00
18
+ date: 2010-06-14 00:00:00 +02:00
19
19
  default_executable:
20
20
  dependencies: []
21
21
 
@@ -54,8 +54,8 @@ files:
54
54
  - lib/netzke/controller_extensions.rb
55
55
  - lib/netzke/core_ext.rb
56
56
  - lib/netzke/routing.rb
57
+ - lib/tasks/netzke_core_tasks.rake
57
58
  - stylesheets/core.css
58
- - tasks/netzke_core_tasks.rake
59
59
  - test/app_root/app/controllers/application_controller.rb
60
60
  - test/app_root/app/models/role.rb
61
61
  - test/app_root/app/models/user.rb
@@ -86,17 +86,18 @@ licenses: []
86
86
 
87
87
  post_install_message: |+
88
88
 
89
- ========================================================================
89
+ ========================================================================
90
90
 
91
- Thanks for installing Netzke Core!
92
-
93
- Run "./script/generate netzke_core" to finish the installation.
91
+ Thanks for installing Netzke Core!
92
+
93
+ Don't forget to run "./script/generate netzke_core" for each Rails
94
+ app that will be using this gem.
94
95
 
95
- Netzke home page: http://netzke.org
96
- Netzke Google Groups: http://groups.google.com/group/netzke
97
- Netzke tutorials: http://blog.writelesscode.com
96
+ Netzke home page: http://netzke.org
97
+ Netzke Google Groups: http://groups.google.com/group/netzke
98
+ Netzke tutorials: http://blog.writelesscode.com
98
99
 
99
- ========================================================================
100
+ ========================================================================
100
101
 
101
102
  rdoc_options:
102
103
  - --charset=UTF-8