radiant-concurrent_draft-extension 1.0.8 → 1.0.9
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/VERSION +1 -1
- data/radiant-concurrent_draft-extension.gemspec +3 -3
- data/spec/spec_helper.rb +6 -3
- metadata +53 -37
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.9
|
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = "radiant-concurrent_draft-extension"
|
|
8
|
-
s.version = "1.0.
|
|
8
|
+
s.version = "1.0.9"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Andrew vonderLuft", "Sean Cribbs"]
|
|
12
|
-
s.date = "2013-
|
|
12
|
+
s.date = "2013-02-16"
|
|
13
13
|
s.description = "Enables draft versions of pages, snippets and layouts, which can be scheduled for promotion."
|
|
14
14
|
s.email = "avonderluft@avlux.net"
|
|
15
15
|
s.extra_rdoc_files = [
|
|
@@ -69,7 +69,7 @@ Gem::Specification.new do |s|
|
|
|
69
69
|
]
|
|
70
70
|
s.homepage = "https://github.com/avonderluft/radiant-concurrent_draft-extension"
|
|
71
71
|
s.require_paths = ["lib"]
|
|
72
|
-
s.rubygems_version = "1.8.
|
|
72
|
+
s.rubygems_version = "1.8.25"
|
|
73
73
|
s.summary = "Concurrent Draft Extension for Radiant CMS"
|
|
74
74
|
|
|
75
75
|
if s.respond_to? :specification_version then
|
data/spec/spec_helper.rb
CHANGED
|
@@ -12,10 +12,13 @@ end
|
|
|
12
12
|
require "#{RADIANT_ROOT}/spec/spec_helper"
|
|
13
13
|
|
|
14
14
|
Dataset::Resolver.default << (File.dirname(__FILE__) + "/datasets")
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
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
|
|
18
20
|
end
|
|
21
|
+
|
|
19
22
|
if File.directory?(File.dirname(__FILE__) + "/matchers")
|
|
20
23
|
Dir[File.dirname(__FILE__) + "/matchers/*.rb"].each {|file| require file }
|
|
21
24
|
end
|
metadata
CHANGED
|
@@ -1,41 +1,50 @@
|
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: radiant-concurrent_draft-extension
|
|
3
|
-
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
hash: 5
|
|
5
5
|
prerelease:
|
|
6
|
+
segments:
|
|
7
|
+
- 1
|
|
8
|
+
- 0
|
|
9
|
+
- 9
|
|
10
|
+
version: 1.0.9
|
|
6
11
|
platform: ruby
|
|
7
|
-
authors:
|
|
12
|
+
authors:
|
|
8
13
|
- Andrew vonderLuft
|
|
9
14
|
- Sean Cribbs
|
|
10
15
|
autorequire:
|
|
11
16
|
bindir: bin
|
|
12
17
|
cert_chain: []
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
requirement: !ruby/object:Gem::Requirement
|
|
18
|
+
|
|
19
|
+
date: 2013-02-16 00:00:00 Z
|
|
20
|
+
dependencies:
|
|
21
|
+
- !ruby/object:Gem::Dependency
|
|
22
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
18
23
|
none: false
|
|
19
|
-
requirements:
|
|
20
|
-
- -
|
|
21
|
-
- !ruby/object:Gem::Version
|
|
24
|
+
requirements:
|
|
25
|
+
- - ">="
|
|
26
|
+
- !ruby/object:Gem::Version
|
|
27
|
+
hash: 1117362579
|
|
28
|
+
segments:
|
|
29
|
+
- 1
|
|
30
|
+
- 0
|
|
31
|
+
- 0
|
|
32
|
+
- rc
|
|
33
|
+
- 2
|
|
22
34
|
version: 1.0.0.rc2
|
|
23
|
-
|
|
35
|
+
version_requirements: *id001
|
|
36
|
+
name: radiant
|
|
24
37
|
prerelease: false
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
requirements:
|
|
28
|
-
- - ! '>='
|
|
29
|
-
- !ruby/object:Gem::Version
|
|
30
|
-
version: 1.0.0.rc2
|
|
31
|
-
description: Enables draft versions of pages, snippets and layouts, which can be scheduled
|
|
32
|
-
for promotion.
|
|
38
|
+
type: :runtime
|
|
39
|
+
description: Enables draft versions of pages, snippets and layouts, which can be scheduled for promotion.
|
|
33
40
|
email: avonderluft@avlux.net
|
|
34
41
|
executables: []
|
|
42
|
+
|
|
35
43
|
extensions: []
|
|
36
|
-
|
|
44
|
+
|
|
45
|
+
extra_rdoc_files:
|
|
37
46
|
- README.textile
|
|
38
|
-
files:
|
|
47
|
+
files:
|
|
39
48
|
- HELP.rdoc
|
|
40
49
|
- README.textile
|
|
41
50
|
- Rakefile
|
|
@@ -88,29 +97,36 @@ files:
|
|
|
88
97
|
- vendor/plugins/12_hour_time/test/test_helper.rb
|
|
89
98
|
homepage: https://github.com/avonderluft/radiant-concurrent_draft-extension
|
|
90
99
|
licenses: []
|
|
100
|
+
|
|
91
101
|
post_install_message:
|
|
92
102
|
rdoc_options: []
|
|
93
|
-
|
|
103
|
+
|
|
104
|
+
require_paths:
|
|
94
105
|
- lib
|
|
95
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
|
106
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
96
107
|
none: false
|
|
97
|
-
requirements:
|
|
98
|
-
- -
|
|
99
|
-
- !ruby/object:Gem::Version
|
|
100
|
-
|
|
101
|
-
segments:
|
|
108
|
+
requirements:
|
|
109
|
+
- - ">="
|
|
110
|
+
- !ruby/object:Gem::Version
|
|
111
|
+
hash: 3
|
|
112
|
+
segments:
|
|
102
113
|
- 0
|
|
103
|
-
|
|
104
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
114
|
+
version: "0"
|
|
115
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
105
116
|
none: false
|
|
106
|
-
requirements:
|
|
107
|
-
- -
|
|
108
|
-
- !ruby/object:Gem::Version
|
|
109
|
-
|
|
117
|
+
requirements:
|
|
118
|
+
- - ">="
|
|
119
|
+
- !ruby/object:Gem::Version
|
|
120
|
+
hash: 3
|
|
121
|
+
segments:
|
|
122
|
+
- 0
|
|
123
|
+
version: "0"
|
|
110
124
|
requirements: []
|
|
125
|
+
|
|
111
126
|
rubyforge_project:
|
|
112
|
-
rubygems_version: 1.8.
|
|
127
|
+
rubygems_version: 1.8.25
|
|
113
128
|
signing_key:
|
|
114
129
|
specification_version: 3
|
|
115
130
|
summary: Concurrent Draft Extension for Radiant CMS
|
|
116
131
|
test_files: []
|
|
132
|
+
|