radiant-copy_move-extension 2.4.3 → 2.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/radiant-copy_move-extension.gemspec +8 -13
- data/spec/controllers/copy_move_controller_spec.rb +1 -1
- data/spec/models/copy_move_spec.rb +1 -1
- data/spec/spec_helper.rb +6 -0
- metadata +11 -15
data/Rakefile
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.4.
|
1
|
+
2.4.4
|
@@ -4,14 +4,14 @@
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
|
-
s.name =
|
8
|
-
s.version = "2.4.
|
7
|
+
s.name = "radiant-copy_move-extension"
|
8
|
+
s.version = "2.4.4"
|
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", "Andrew vonderLuft"]
|
12
|
-
s.date =
|
13
|
-
s.description =
|
14
|
-
s.email =
|
12
|
+
s.date = "2013-02-18"
|
13
|
+
s.description = "With this extension you can copy or move a page with or without its children."
|
14
|
+
s.email = "benny@gorilla-webdesign.be"
|
15
15
|
s.extra_rdoc_files = [
|
16
16
|
"LICENSE",
|
17
17
|
"README.textile",
|
@@ -52,15 +52,10 @@ Gem::Specification.new do |s|
|
|
52
52
|
"spec/spec.opts",
|
53
53
|
"spec/spec_helper.rb"
|
54
54
|
]
|
55
|
-
s.homepage =
|
55
|
+
s.homepage = "https://github.com/jomz/radiant-copy-move"
|
56
56
|
s.require_paths = ["lib"]
|
57
|
-
s.rubygems_version =
|
58
|
-
s.summary =
|
59
|
-
s.test_files = [
|
60
|
-
"spec/controllers/copy_move_controller_spec.rb",
|
61
|
-
"spec/models/copy_move_spec.rb",
|
62
|
-
"spec/spec_helper.rb"
|
63
|
-
]
|
57
|
+
s.rubygems_version = "1.8.25"
|
58
|
+
s.summary = "Copy/Move extension for Radiant CMS"
|
64
59
|
|
65
60
|
if s.respond_to? :specification_version then
|
66
61
|
s.specification_version = 3
|
data/spec/spec_helper.rb
CHANGED
@@ -12,6 +12,12 @@ end
|
|
12
12
|
require "#{RADIANT_ROOT}/spec/spec_helper"
|
13
13
|
|
14
14
|
Dataset::Resolver.default << (File.dirname(__FILE__) + "/datasets")
|
15
|
+
# Include any datasets from loaded extensions
|
16
|
+
Radiant::Extension.descendants.each do |extension|
|
17
|
+
if File.directory?(extension.root + "/spec/datasets")
|
18
|
+
Dataset::Resolver.default << (extension.root + "/spec/datasets")
|
19
|
+
end
|
20
|
+
end
|
15
21
|
|
16
22
|
if File.directory?(File.dirname(__FILE__) + "/matchers")
|
17
23
|
Dir[File.dirname(__FILE__) + "/matchers/*.rb"].each {|file| require file }
|
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:
|
4
|
+
hash: 23
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 2
|
8
8
|
- 4
|
9
|
-
-
|
10
|
-
version: 2.4.
|
9
|
+
- 4
|
10
|
+
version: 2.4.4
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Benny Degezelle
|
@@ -16,18 +16,15 @@ autorequire:
|
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
18
|
|
19
|
-
date:
|
20
|
-
default_executable:
|
19
|
+
date: 2013-02-18 00:00:00 Z
|
21
20
|
dependencies:
|
22
21
|
- !ruby/object:Gem::Dependency
|
23
|
-
prerelease: false
|
24
|
-
type: :runtime
|
25
22
|
requirement: &id001 !ruby/object:Gem::Requirement
|
26
23
|
none: false
|
27
24
|
requirements:
|
28
25
|
- - ">="
|
29
26
|
- !ruby/object:Gem::Version
|
30
|
-
hash:
|
27
|
+
hash: 1960424459
|
31
28
|
segments:
|
32
29
|
- 1
|
33
30
|
- 0
|
@@ -35,8 +32,10 @@ dependencies:
|
|
35
32
|
- rc
|
36
33
|
- 2
|
37
34
|
version: 1.0.0.rc2
|
38
|
-
name: radiant
|
39
35
|
version_requirements: *id001
|
36
|
+
name: radiant
|
37
|
+
prerelease: false
|
38
|
+
type: :runtime
|
40
39
|
description: With this extension you can copy or move a page with or without its children.
|
41
40
|
email: benny@gorilla-webdesign.be
|
42
41
|
executables: []
|
@@ -81,7 +80,6 @@ files:
|
|
81
80
|
- spec/models/copy_move_spec.rb
|
82
81
|
- spec/spec.opts
|
83
82
|
- spec/spec_helper.rb
|
84
|
-
has_rdoc: true
|
85
83
|
homepage: https://github.com/jomz/radiant-copy-move
|
86
84
|
licenses: []
|
87
85
|
|
@@ -111,11 +109,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
111
109
|
requirements: []
|
112
110
|
|
113
111
|
rubyforge_project:
|
114
|
-
rubygems_version: 1.
|
112
|
+
rubygems_version: 1.8.25
|
115
113
|
signing_key:
|
116
114
|
specification_version: 3
|
117
115
|
summary: Copy/Move extension for Radiant CMS
|
118
|
-
test_files:
|
119
|
-
|
120
|
-
- spec/models/copy_move_spec.rb
|
121
|
-
- spec/spec_helper.rb
|
116
|
+
test_files: []
|
117
|
+
|