radiant-copy_move-extension 2.3.1 → 2.3.2

Sign up to get free protection for your applications and to get access to all the features.
data/README.textile CHANGED
@@ -1,7 +1,7 @@
1
1
  h1. CopyMove
2
2
 
3
3
  * Created by: Andrea Franz - http://gravityblast.com
4
- * Version: 2.3.0 (compatible with Radiant >= 0.9.1)
4
+ * Version: 2.3.2 (compatible with Radiant >= 0.9.1)
5
5
  * Contact: andrea AT gravityblast DOT com
6
6
 
7
7
  * This fork merged from others, refactored and extended by: Andrew vonderLuft - http://avlux.net
data/VERSION CHANGED
@@ -1 +1 @@
1
- 2.3.1
1
+ 2.3.2
@@ -1,5 +1,5 @@
1
1
  .popup
2
- %h3.title
2
+ .popup_title
3
3
  = image('page_white_copy')
4
4
  = t('copy_move.copy_with_first_level_children')
5
5
  %h4= t('copy_move.copy_children_description')
@@ -1,5 +1,5 @@
1
1
  .popup
2
- %h3.title
2
+ .popup_title
3
3
  = image('page_white')
4
4
  = t('copy_move.copy_page_only')
5
5
  %h4= t('copy_move.copy_page_description')
@@ -1,5 +1,5 @@
1
1
  .popup
2
- %h3.title
2
+ .popup_title
3
3
  = image('page_white_stack')
4
4
  = t('copy_move.copy_whole_subtree')
5
5
  %h4= t('copy_move.copy_tree_description')
@@ -1,5 +1,5 @@
1
1
  .popup
2
- %h3.title
2
+ .popup_title
3
3
  = image('page_white_go')
4
4
  - if @page.children.any?
5
5
  = t('copy_move.move_entire_subtree')
@@ -1,7 +1,7 @@
1
1
  require_dependency 'application_controller'
2
2
 
3
3
  class CopyMoveExtension < Radiant::Extension
4
- version "2.3.0"
4
+ version "2.3.2"
5
5
  description "Adds the ability to copy or move a page with or without its children"
6
6
  url "https://github.com/avonderluft/radiant-copy-move"
7
7
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{radiant-copy_move-extension}
8
- s.version = "2.3.0"
8
+ s.version = "2.3.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Benny Degezelle"]
@@ -15,15 +15,18 @@ Gem::Specification.new do |s|
15
15
  s.files = [
16
16
  "HELP.rdoc",
17
17
  "LICENSE",
18
- "README",
18
+ "README.textile",
19
19
  "Rakefile",
20
20
  "TODO",
21
21
  "VERSION",
22
22
  "app/helpers/copy_move_helper.rb",
23
- "app/views/admin/pages/_copy_move_extra_td.haml",
24
- "app/views/admin/pages/_copy_move_extra_th.haml",
25
- "app/views/admin/pages/_copy_move_popup.haml",
26
- "app/views/copy_move/index.html.haml",
23
+ "app/views/admin/pages/_copy_move_extra_td.html.haml",
24
+ "app/views/admin/pages/_copy_move_extra_th.html.haml",
25
+ "app/views/admin/pages/_copy_move_form.html.haml",
26
+ "app/views/admin/pages/copy_children.html.haml",
27
+ "app/views/admin/pages/copy_page.html.haml",
28
+ "app/views/admin/pages/copy_tree.html.haml",
29
+ "app/views/admin/pages/move_page.html.haml",
27
30
  "config/locales/de.yml",
28
31
  "config/locales/en.yml",
29
32
  "config/locales/nl.yml",
@@ -33,13 +36,11 @@ Gem::Specification.new do |s|
33
36
  "lib/copy_move/controller.rb",
34
37
  "lib/copy_move/model.rb",
35
38
  "lib/tasks/copy_move_extension_tasks.rake",
36
- "pkg/radiant-copy_move-extension-2.1.0.gem",
37
39
  "public/images/admin/copy-move.png",
38
40
  "public/images/admin/page_white.png",
39
41
  "public/images/admin/page_white_copy.png",
40
42
  "public/images/admin/page_white_go.png",
41
43
  "public/images/admin/page_white_stack.png",
42
- "public/stylesheets/admin/copy_move.css",
43
44
  "radiant-copy_move-extension.gemspec",
44
45
  "spec/controllers/copy_move_controller_spec.rb",
45
46
  "spec/models/copy_move_spec.rb",
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: radiant-copy_move-extension
3
3
  version: !ruby/object:Gem::Version
4
- hash: 1
4
+ hash: 7
5
5
  prerelease: false
6
6
  segments:
7
7
  - 2
8
8
  - 3
9
- - 1
10
- version: 2.3.1
9
+ - 2
10
+ version: 2.3.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Benny Degezelle
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-03-16 00:00:00 +01:00
18
+ date: 2011-03-15 00:00:00 +01:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -42,7 +42,6 @@ extensions: []
42
42
 
43
43
  extra_rdoc_files:
44
44
  - LICENSE
45
- - README.textile
46
45
  - TODO
47
46
  files:
48
47
  - HELP.rdoc
@@ -68,8 +67,6 @@ files:
68
67
  - lib/copy_move/controller.rb
69
68
  - lib/copy_move/model.rb
70
69
  - lib/tasks/copy_move_extension_tasks.rake
71
- - pkg/radiant-copy_move-extension-2.1.0.gem
72
- - pkg/radiant-copy_move-extension-2.3.0.gem
73
70
  - public/images/admin/copy-move.png
74
71
  - public/images/admin/page_white.png
75
72
  - public/images/admin/page_white_copy.png
@@ -81,12 +78,12 @@ files:
81
78
  - spec/spec.opts
82
79
  - spec/spec_helper.rb
83
80
  has_rdoc: true
84
- homepage: http://github.com/jomz/radiant-copy-move
81
+ homepage: https://github.com/jomz/radiant-copy-move
85
82
  licenses: []
86
83
 
87
84
  post_install_message:
88
- rdoc_options: []
89
-
85
+ rdoc_options:
86
+ - --charset=UTF-8
90
87
  require_paths:
91
88
  - lib
92
89
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -114,7 +111,5 @@ rubygems_version: 1.3.7
114
111
  signing_key:
115
112
  specification_version: 3
116
113
  summary: Copy/Move extension for Radiant CMS
117
- test_files:
118
- - spec/controllers/copy_move_controller_spec.rb
119
- - spec/models/copy_move_spec.rb
120
- - spec/spec_helper.rb
114
+ test_files: []
115
+