strelka-cms 0.0.1 → 0.1.0
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.
- checksums.yaml +7 -0
- checksums.yaml.gz.sig +0 -0
- data/History.rdoc +5 -0
- data/Rakefile +1 -1
- data/lib/strelka/cms/page.rb +19 -14
- data/lib/strelka/cms.rb +4 -3
- data/spec/strelka/cms/page_spec.rb +84 -37
- data.tar.gz.sig +0 -0
- metadata +37 -70
- metadata.gz.sig +0 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 5d12e9b44f5cbfad5fd5e79874893bf78848f03e
|
4
|
+
data.tar.gz: 9feaecf28b686231d5b96e19cf7469a5a8377b23
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 11debf7efa008c839020c4d0633ec232b89490bcf3722953f06d94cb16fe439e8cfe18e89d1e1b4af70c5a950c0fa3891473623f2de41878c13be3c29c3a12c4
|
7
|
+
data.tar.gz: f62579769263b488a71d4422700baf73ffee179b30c67e8d6e2b881b7af5a2d6e7f186972d523d396e5daa5c9c7e0c74bdd199ccaaa588fdd9d8bffcdc075215
|
checksums.yaml.gz.sig
ADDED
Binary file
|
data/History.rdoc
CHANGED
data/Rakefile
CHANGED
@@ -25,7 +25,7 @@ hoespec = Hoe.spec 'strelka-cms' do
|
|
25
25
|
self.dependency 'strelka', '~> 0.0'
|
26
26
|
self.dependency 'ratom', '~> 0.6'
|
27
27
|
self.dependency 'RedCloth', '~> 4.2'
|
28
|
-
self.dependency '
|
28
|
+
self.dependency 'ots', '~> 0.5'
|
29
29
|
self.dependency 'nokogiri', '~> 1.4'
|
30
30
|
self.dependency 'pluginfactory', '~> 1.0'
|
31
31
|
self.dependency 'tidy-ext', '~> 0.1'
|
data/lib/strelka/cms/page.rb
CHANGED
@@ -1,9 +1,10 @@
|
|
1
|
-
|
1
|
+
# -*- ruby -*-
|
2
|
+
#encoding: utf-8
|
2
3
|
|
3
4
|
require 'time'
|
4
5
|
require 'date'
|
5
6
|
require 'nokogiri'
|
6
|
-
require '
|
7
|
+
require 'ots'
|
7
8
|
require 'loggability'
|
8
9
|
require 'inversion'
|
9
10
|
|
@@ -120,8 +121,7 @@ class Strelka::CMS::Page
|
|
120
121
|
@options = options
|
121
122
|
@created = Time.now
|
122
123
|
|
123
|
-
@
|
124
|
-
@topics = nil
|
124
|
+
@article = nil
|
125
125
|
|
126
126
|
@path = nil
|
127
127
|
end
|
@@ -137,10 +137,6 @@ class Strelka::CMS::Page
|
|
137
137
|
# The page's catalog (if it was loaded via one)
|
138
138
|
attr_accessor :catalog
|
139
139
|
|
140
|
-
# The Array of page tags specified in the page config
|
141
|
-
attr_reader :tags
|
142
|
-
alias_method :keywords, :tags
|
143
|
-
|
144
140
|
# The page title given in the page config
|
145
141
|
attr_accessor :title
|
146
142
|
|
@@ -285,16 +281,24 @@ class Strelka::CMS::Page
|
|
285
281
|
|
286
282
|
### Return a summary of the page.
|
287
283
|
def summary
|
288
|
-
self.summarize
|
289
|
-
return
|
284
|
+
summary = self.article.summarize( sentences: 1 ).first
|
285
|
+
return summary[:sentence].strip
|
290
286
|
end
|
291
287
|
|
292
288
|
|
293
289
|
### Return an Array of topics for the page.
|
294
290
|
def summary_topics
|
295
|
-
self.
|
296
|
-
|
291
|
+
return self.article.topics
|
292
|
+
end
|
293
|
+
|
294
|
+
|
295
|
+
### Return the Array of tags/keywords set in the header, or derived from the
|
296
|
+
### content if not specified explicitly.
|
297
|
+
def tags
|
298
|
+
@tags ||= self.article.keywords
|
299
|
+
return @tags
|
297
300
|
end
|
301
|
+
alias_method :keywords, :tags
|
298
302
|
|
299
303
|
|
300
304
|
### Return a human-readable representation of the receiving object.
|
@@ -316,8 +320,9 @@ class Strelka::CMS::Page
|
|
316
320
|
|
317
321
|
### Derive a summary and topics from the stripped contents of the page. This
|
318
322
|
### populates #summary and #summary_topics.
|
319
|
-
def
|
320
|
-
@
|
323
|
+
def article
|
324
|
+
@article ||= OTS.parse( self.stripped_content )
|
325
|
+
return @article
|
321
326
|
end
|
322
327
|
|
323
328
|
end # class Strelka::CMS::Page
|
data/lib/strelka/cms.rb
CHANGED
@@ -1,4 +1,5 @@
|
|
1
|
-
|
1
|
+
# -*- ruby -*-
|
2
|
+
#encoding: utf-8
|
2
3
|
|
3
4
|
require 'loggability'
|
4
5
|
require 'configurability'
|
@@ -18,10 +19,10 @@ module Strelka::CMS
|
|
18
19
|
|
19
20
|
|
20
21
|
# Version string
|
21
|
-
VERSION = '0.0
|
22
|
+
VERSION = '0.1.0'
|
22
23
|
|
23
24
|
# Version-control revision constant
|
24
|
-
REVISION = %q$Revision:
|
25
|
+
REVISION = %q$Revision: 34ca70dbf0f8 $
|
25
26
|
|
26
27
|
|
27
28
|
require 'strelka/cms/page'
|
@@ -28,21 +28,47 @@ describe Strelka::CMS::Page do
|
|
28
28
|
|
29
29
|
TEST_DOCUMENT = (<<-END_TEST_DOCUMENT).gsub( /^\t/, '' )
|
30
30
|
---
|
31
|
-
title:
|
31
|
+
title: Fun With TextMate 2
|
32
|
+
template: blogentry.tmpl
|
33
|
+
date: 2011-12-16 19:28:45 -0700
|
34
|
+
tags:
|
35
|
+
- editors
|
36
|
+
- software
|
37
|
+
- tools
|
38
|
+
- textmate2
|
32
39
|
filters:
|
40
|
+
- example
|
33
41
|
- strip
|
34
42
|
- textile
|
35
|
-
tags:
|
36
|
-
- goals
|
37
|
-
- to do
|
38
43
|
---
|
39
44
|
|
40
|
-
|
45
|
+
I've been playing around with TextMate 2 for a few days, trying to figure out the mountain of
|
46
|
+
changes that have been made, and so far I'm pretty happy with it. Especially considering that it's
|
47
|
+
only an alpha, I'm getting a surprising amount of Real Work™ done with it.
|
48
|
+
|
49
|
+
One of the things that kept me from switching to a new and shinier editor has been my Ruby
|
50
|
+
workflow, which makes extensive use of the RSpec bundle. I wrote a little formatter for it that can
|
51
|
+
include logging with each spec that you can toggle on and off, and I find it to be a little more
|
52
|
+
compact and readable than the default TextMate formatter.
|
53
|
+
|
54
|
+
Anyway, I just got the @.tm_properties@ tweaks figured out that are necessary to make RSpec
|
55
|
+
work in the new version:
|
56
|
+
|
57
|
+
!../images/tm2-webkit-rspec.png!
|
41
58
|
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
59
|
+
If you're using the WebKit formatter, or any other formatter for that matter, add this to the
|
60
|
+
@.tm_properties@ either in your $HOME (to apply it to all RSpec bundle output), or in a specific
|
61
|
+
project's @.tm_properties@ file:
|
62
|
+
|
63
|
+
<?example { lang: text } ?>
|
64
|
+
TM_RSPEC_OPTS = '-rrspec/core/formatters/webkit'
|
65
|
+
TM_RSPEC_FORMATTER = 'RSpec::Core::Formatters::WebKit'
|
66
|
+
<?end example ?>
|
67
|
+
|
68
|
+
I'm excited about the possibilities of tweaking the editor's behavior on a directory-by-directory
|
69
|
+
basis. TM2 still has some rough edges, and some stuff that's missing or doesn't work right, but I'm
|
70
|
+
no longer worried that I'll be disappointed by the final 2.0 release. Now, hopefully Alan won't get
|
71
|
+
too frustrated with all the bikeshedders and people that won't read instructions.
|
46
72
|
|
47
73
|
END_TEST_DOCUMENT
|
48
74
|
|
@@ -62,9 +88,9 @@ describe Strelka::CMS::Page do
|
|
62
88
|
|
63
89
|
page = described_class.load( tmp.path )
|
64
90
|
|
65
|
-
page.title.should == '
|
66
|
-
page.tags.should include( '
|
67
|
-
page.content.should include( '
|
91
|
+
page.title.should == 'Fun With TextMate 2'
|
92
|
+
page.tags.should include( 'editors', 'software', 'tools', 'textmate2' )
|
93
|
+
page.content.should include( 'One of the things that kept me from switching' )
|
68
94
|
page.path.to_s.should == tmp.path
|
69
95
|
end
|
70
96
|
|
@@ -73,41 +99,56 @@ describe Strelka::CMS::Page do
|
|
73
99
|
|
74
100
|
page = described_class.read( io )
|
75
101
|
|
76
|
-
page.title.should == '
|
77
|
-
page.tags.should include( '
|
78
|
-
page.content.should include( '
|
102
|
+
page.title.should == 'Fun With TextMate 2'
|
103
|
+
page.tags.should include( 'editors', 'software', 'tools', 'textmate2' )
|
104
|
+
page.content.should include( 'One of the things that kept me from switching' )
|
79
105
|
end
|
80
106
|
|
81
107
|
it "can parse a page from source" do
|
82
108
|
page = described_class.parse( TEST_DOCUMENT )
|
83
109
|
|
84
|
-
page.title.should == '
|
85
|
-
page.tags.should include( '
|
86
|
-
page.content.should include( '
|
110
|
+
page.title.should == 'Fun With TextMate 2'
|
111
|
+
page.tags.should include( 'editors', 'software', 'tools', 'textmate2' )
|
112
|
+
page.content.should include( 'One of the things that kept me from switching' )
|
87
113
|
end
|
88
114
|
|
89
115
|
|
90
|
-
|
116
|
+
describe "loaded via some means" do
|
91
117
|
|
92
|
-
|
93
|
-
|
118
|
+
let( :page ) { described_class.parse(TEST_DOCUMENT) }
|
119
|
+
|
120
|
+
it "can generate a summary of its contents" do
|
121
|
+
page.summary.should =~ /^If you're using the WebKit formatter,/
|
94
122
|
end
|
95
123
|
|
96
|
-
|
97
|
-
|
124
|
+
it "can generate a list of topics from its content" do
|
125
|
+
page.summary_topics.should include( "formatter", "rspec" )
|
98
126
|
end
|
99
127
|
|
128
|
+
it "can generate keywords if none are set by the header" do
|
129
|
+
page.instance_variable_set( :@tags, nil )
|
130
|
+
page.keywords.should include( 'formatter', 'rspec', 'editor', 'textmate' )
|
131
|
+
end
|
132
|
+
|
133
|
+
end
|
134
|
+
|
135
|
+
|
136
|
+
context "with no options (empty header)" do
|
137
|
+
|
138
|
+
let( :content ) { "h1. Title\n\nSome content.\n<?bogus?>" }
|
139
|
+
let( :page ) { described_class.new(content) }
|
140
|
+
|
100
141
|
|
101
142
|
it "has a default set of filters" do
|
102
|
-
|
143
|
+
page.filters.should == %w[strip textile]
|
103
144
|
end
|
104
145
|
|
105
146
|
it "returns its contents after applying filters when stringified" do
|
106
|
-
|
147
|
+
page.to_s.should == %{<h1>Title</h1>\n<p>Some content.</p>}
|
107
148
|
end
|
108
149
|
|
109
150
|
it "can return its first heading" do
|
110
|
-
|
151
|
+
page.first_heading.should == 'Title'
|
111
152
|
end
|
112
153
|
|
113
154
|
end
|
@@ -115,22 +156,28 @@ describe Strelka::CMS::Page do
|
|
115
156
|
|
116
157
|
context "with a catalog" do
|
117
158
|
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
159
|
+
let( :basedir ) { Pathname(Dir.tmpdir) }
|
160
|
+
let( :subdir ) do
|
161
|
+
subdir = basedir + 'sub'
|
162
|
+
subdir.mkpath
|
163
|
+
subdir
|
164
|
+
end
|
165
|
+
let( :pagefile ) do
|
166
|
+
file = Tempfile.new( 'test.page', @subdir )
|
167
|
+
file.write( TEST_DOCUMENT )
|
168
|
+
file.close
|
169
|
+
file
|
125
170
|
end
|
126
171
|
|
127
|
-
|
128
|
-
|
129
|
-
|
172
|
+
let( :catalog ) { Strelka::CMS::PageCatalog.new(basedir) }
|
173
|
+
let( :page ) { described_class.load(pagefile.path, catalog) }
|
174
|
+
let( :relative_pagefile_pathname ) do
|
175
|
+
Pathname( pagefile.path ).relative_path_from( catalog.basedir )
|
130
176
|
end
|
131
177
|
|
178
|
+
|
132
179
|
it "knows what its path relative to its catalog's base is" do
|
133
|
-
|
180
|
+
page.relative_path.should == relative_pagefile_pathname
|
134
181
|
end
|
135
182
|
|
136
183
|
end
|
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,47 +1,40 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: strelka-cms
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
5
|
-
prerelease:
|
4
|
+
version: 0.1.0
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Michael Granger
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain:
|
12
|
-
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
RGVyQ0FhZ01WdURRClUwQkxtV0RGelBHR1dsUGVRQ3JZSENyK0FjSnorTlJu
|
36
|
-
YUhDS0xaZFNLai9SSHVUT3QrZ2JsUmV4OEZBaDhOZUEKY21saFhlNDZwWk5K
|
37
|
-
Z1dLYnhaYWg4NWpJang5NWhSOHZPSStOQU01aUg5a09xSzEzRHJ4YWNUS1Bo
|
38
|
-
cWo1UGp3RgotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==
|
39
|
-
date: 2012-10-29 00:00:00.000000000 Z
|
11
|
+
- |
|
12
|
+
-----BEGIN CERTIFICATE-----
|
13
|
+
MIIDbDCCAlSgAwIBAgIBATANBgkqhkiG9w0BAQUFADA+MQwwCgYDVQQDDANnZWQx
|
14
|
+
GTAXBgoJkiaJk/IsZAEZFglGYWVyaWVNVUQxEzARBgoJkiaJk/IsZAEZFgNvcmcw
|
15
|
+
HhcNMTMwMjI3MTY0ODU4WhcNMTQwMjI3MTY0ODU4WjA+MQwwCgYDVQQDDANnZWQx
|
16
|
+
GTAXBgoJkiaJk/IsZAEZFglGYWVyaWVNVUQxEzARBgoJkiaJk/IsZAEZFgNvcmcw
|
17
|
+
ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDb92mkyYwuGBg1oRxt2tkH
|
18
|
+
+Uo3LAsaL/APBfSLzy8o3+B3AUHKCjMUaVeBoZdWtMHB75X3VQlvXfZMyBxj59Vo
|
19
|
+
cDthr3zdao4HnyrzAIQf7BO5Y8KBwVD+yyXCD/N65TTwqsQnO3ie7U5/9ut1rnNr
|
20
|
+
OkOzAscMwkfQxBkXDzjvAWa6UF4c5c9kR/T79iA21kDx9+bUMentU59aCJtUcbxa
|
21
|
+
7kcKJhPEYsk4OdxR9q2dphNMFDQsIdRO8rywX5FRHvcb+qnXC17RvxLHtOjysPtp
|
22
|
+
EWsYoZMxyCDJpUqbwoeiM+tAHoz2ABMv3Ahie3Qeb6+MZNAtMmaWfBx3dg2u+/WN
|
23
|
+
AgMBAAGjdTBzMAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBSZ0hCV
|
24
|
+
qoHr122fGKelqffzEQBhszAcBgNVHREEFTATgRFnZWRARmFlcmllTVVELm9yZzAc
|
25
|
+
BgNVHRIEFTATgRFnZWRARmFlcmllTVVELm9yZzANBgkqhkiG9w0BAQUFAAOCAQEA
|
26
|
+
Vlcfyq6GwyE8i0QuFPCeVOwJaneSvcwx316DApjy9/tt2YD2HomLbtpXtji5QXor
|
27
|
+
ON6oln4tWBIB3Klbr3szq5oR3Rc1D02SaBTalxSndp4M6UkW9hRFu5jn98pDB4fq
|
28
|
+
5l8wMMU0Xdmqx1VYvysVAjVFVC/W4NNvlmg+2mEgSVZP5K6Tc9qDh3eMQInoYw6h
|
29
|
+
t1YA6RsUJHp5vGQyhP1x34YpLAaly8icbns/8PqOf7Osn9ztmg8bOMJCeb32eQLj
|
30
|
+
6mKCwjpegytE0oifXfF8k75A9105cBnNiMZOe1tXiqYc/exCgWvbggurzDOcRkZu
|
31
|
+
/YSusaiDXHKU2O3Akc3htA==
|
32
|
+
-----END CERTIFICATE-----
|
33
|
+
date: 2013-03-01 00:00:00.000000000 Z
|
40
34
|
dependencies:
|
41
35
|
- !ruby/object:Gem::Dependency
|
42
36
|
name: strelka
|
43
37
|
requirement: !ruby/object:Gem::Requirement
|
44
|
-
none: false
|
45
38
|
requirements:
|
46
39
|
- - ~>
|
47
40
|
- !ruby/object:Gem::Version
|
@@ -49,7 +42,6 @@ dependencies:
|
|
49
42
|
type: :runtime
|
50
43
|
prerelease: false
|
51
44
|
version_requirements: !ruby/object:Gem::Requirement
|
52
|
-
none: false
|
53
45
|
requirements:
|
54
46
|
- - ~>
|
55
47
|
- !ruby/object:Gem::Version
|
@@ -57,7 +49,6 @@ dependencies:
|
|
57
49
|
- !ruby/object:Gem::Dependency
|
58
50
|
name: ratom
|
59
51
|
requirement: !ruby/object:Gem::Requirement
|
60
|
-
none: false
|
61
52
|
requirements:
|
62
53
|
- - ~>
|
63
54
|
- !ruby/object:Gem::Version
|
@@ -65,7 +56,6 @@ dependencies:
|
|
65
56
|
type: :runtime
|
66
57
|
prerelease: false
|
67
58
|
version_requirements: !ruby/object:Gem::Requirement
|
68
|
-
none: false
|
69
59
|
requirements:
|
70
60
|
- - ~>
|
71
61
|
- !ruby/object:Gem::Version
|
@@ -73,7 +63,6 @@ dependencies:
|
|
73
63
|
- !ruby/object:Gem::Dependency
|
74
64
|
name: RedCloth
|
75
65
|
requirement: !ruby/object:Gem::Requirement
|
76
|
-
none: false
|
77
66
|
requirements:
|
78
67
|
- - ~>
|
79
68
|
- !ruby/object:Gem::Version
|
@@ -81,31 +70,27 @@ dependencies:
|
|
81
70
|
type: :runtime
|
82
71
|
prerelease: false
|
83
72
|
version_requirements: !ruby/object:Gem::Requirement
|
84
|
-
none: false
|
85
73
|
requirements:
|
86
74
|
- - ~>
|
87
75
|
- !ruby/object:Gem::Version
|
88
76
|
version: '4.2'
|
89
77
|
- !ruby/object:Gem::Dependency
|
90
|
-
name:
|
78
|
+
name: ots
|
91
79
|
requirement: !ruby/object:Gem::Requirement
|
92
|
-
none: false
|
93
80
|
requirements:
|
94
81
|
- - ~>
|
95
82
|
- !ruby/object:Gem::Version
|
96
|
-
version: '
|
83
|
+
version: '0.5'
|
97
84
|
type: :runtime
|
98
85
|
prerelease: false
|
99
86
|
version_requirements: !ruby/object:Gem::Requirement
|
100
|
-
none: false
|
101
87
|
requirements:
|
102
88
|
- - ~>
|
103
89
|
- !ruby/object:Gem::Version
|
104
|
-
version: '
|
90
|
+
version: '0.5'
|
105
91
|
- !ruby/object:Gem::Dependency
|
106
92
|
name: nokogiri
|
107
93
|
requirement: !ruby/object:Gem::Requirement
|
108
|
-
none: false
|
109
94
|
requirements:
|
110
95
|
- - ~>
|
111
96
|
- !ruby/object:Gem::Version
|
@@ -113,7 +98,6 @@ dependencies:
|
|
113
98
|
type: :runtime
|
114
99
|
prerelease: false
|
115
100
|
version_requirements: !ruby/object:Gem::Requirement
|
116
|
-
none: false
|
117
101
|
requirements:
|
118
102
|
- - ~>
|
119
103
|
- !ruby/object:Gem::Version
|
@@ -121,7 +105,6 @@ dependencies:
|
|
121
105
|
- !ruby/object:Gem::Dependency
|
122
106
|
name: pluginfactory
|
123
107
|
requirement: !ruby/object:Gem::Requirement
|
124
|
-
none: false
|
125
108
|
requirements:
|
126
109
|
- - ~>
|
127
110
|
- !ruby/object:Gem::Version
|
@@ -129,7 +112,6 @@ dependencies:
|
|
129
112
|
type: :runtime
|
130
113
|
prerelease: false
|
131
114
|
version_requirements: !ruby/object:Gem::Requirement
|
132
|
-
none: false
|
133
115
|
requirements:
|
134
116
|
- - ~>
|
135
117
|
- !ruby/object:Gem::Version
|
@@ -137,7 +119,6 @@ dependencies:
|
|
137
119
|
- !ruby/object:Gem::Dependency
|
138
120
|
name: tidy-ext
|
139
121
|
requirement: !ruby/object:Gem::Requirement
|
140
|
-
none: false
|
141
122
|
requirements:
|
142
123
|
- - ~>
|
143
124
|
- !ruby/object:Gem::Version
|
@@ -145,7 +126,6 @@ dependencies:
|
|
145
126
|
type: :runtime
|
146
127
|
prerelease: false
|
147
128
|
version_requirements: !ruby/object:Gem::Requirement
|
148
|
-
none: false
|
149
129
|
requirements:
|
150
130
|
- - ~>
|
151
131
|
- !ruby/object:Gem::Version
|
@@ -153,7 +133,6 @@ dependencies:
|
|
153
133
|
- !ruby/object:Gem::Dependency
|
154
134
|
name: rcodetools
|
155
135
|
requirement: !ruby/object:Gem::Requirement
|
156
|
-
none: false
|
157
136
|
requirements:
|
158
137
|
- - ~>
|
159
138
|
- !ruby/object:Gem::Version
|
@@ -161,7 +140,6 @@ dependencies:
|
|
161
140
|
type: :runtime
|
162
141
|
prerelease: false
|
163
142
|
version_requirements: !ruby/object:Gem::Requirement
|
164
|
-
none: false
|
165
143
|
requirements:
|
166
144
|
- - ~>
|
167
145
|
- !ruby/object:Gem::Version
|
@@ -169,7 +147,6 @@ dependencies:
|
|
169
147
|
- !ruby/object:Gem::Dependency
|
170
148
|
name: hoe-mercurial
|
171
149
|
requirement: !ruby/object:Gem::Requirement
|
172
|
-
none: false
|
173
150
|
requirements:
|
174
151
|
- - ~>
|
175
152
|
- !ruby/object:Gem::Version
|
@@ -177,7 +154,6 @@ dependencies:
|
|
177
154
|
type: :development
|
178
155
|
prerelease: false
|
179
156
|
version_requirements: !ruby/object:Gem::Requirement
|
180
|
-
none: false
|
181
157
|
requirements:
|
182
158
|
- - ~>
|
183
159
|
- !ruby/object:Gem::Version
|
@@ -185,7 +161,6 @@ dependencies:
|
|
185
161
|
- !ruby/object:Gem::Dependency
|
186
162
|
name: hoe-highline
|
187
163
|
requirement: !ruby/object:Gem::Requirement
|
188
|
-
none: false
|
189
164
|
requirements:
|
190
165
|
- - ~>
|
191
166
|
- !ruby/object:Gem::Version
|
@@ -193,7 +168,6 @@ dependencies:
|
|
193
168
|
type: :development
|
194
169
|
prerelease: false
|
195
170
|
version_requirements: !ruby/object:Gem::Requirement
|
196
|
-
none: false
|
197
171
|
requirements:
|
198
172
|
- - ~>
|
199
173
|
- !ruby/object:Gem::Version
|
@@ -201,7 +175,6 @@ dependencies:
|
|
201
175
|
- !ruby/object:Gem::Dependency
|
202
176
|
name: rdoc
|
203
177
|
requirement: !ruby/object:Gem::Requirement
|
204
|
-
none: false
|
205
178
|
requirements:
|
206
179
|
- - ~>
|
207
180
|
- !ruby/object:Gem::Version
|
@@ -209,7 +182,6 @@ dependencies:
|
|
209
182
|
type: :development
|
210
183
|
prerelease: false
|
211
184
|
version_requirements: !ruby/object:Gem::Requirement
|
212
|
-
none: false
|
213
185
|
requirements:
|
214
186
|
- - ~>
|
215
187
|
- !ruby/object:Gem::Version
|
@@ -217,7 +189,6 @@ dependencies:
|
|
217
189
|
- !ruby/object:Gem::Dependency
|
218
190
|
name: hoe-deveiate
|
219
191
|
requirement: !ruby/object:Gem::Requirement
|
220
|
-
none: false
|
221
192
|
requirements:
|
222
193
|
- - ~>
|
223
194
|
- !ruby/object:Gem::Version
|
@@ -225,7 +196,6 @@ dependencies:
|
|
225
196
|
type: :development
|
226
197
|
prerelease: false
|
227
198
|
version_requirements: !ruby/object:Gem::Requirement
|
228
|
-
none: false
|
229
199
|
requirements:
|
230
200
|
- - ~>
|
231
201
|
- !ruby/object:Gem::Version
|
@@ -233,22 +203,20 @@ dependencies:
|
|
233
203
|
- !ruby/object:Gem::Dependency
|
234
204
|
name: hoe
|
235
205
|
requirement: !ruby/object:Gem::Requirement
|
236
|
-
none: false
|
237
206
|
requirements:
|
238
207
|
- - ~>
|
239
208
|
- !ruby/object:Gem::Version
|
240
|
-
version: '3.
|
209
|
+
version: '3.5'
|
241
210
|
type: :development
|
242
211
|
prerelease: false
|
243
212
|
version_requirements: !ruby/object:Gem::Requirement
|
244
|
-
none: false
|
245
213
|
requirements:
|
246
214
|
- - ~>
|
247
215
|
- !ruby/object:Gem::Version
|
248
|
-
version: '3.
|
249
|
-
description:
|
250
|
-
|
251
|
-
web application framework.
|
216
|
+
version: '3.5'
|
217
|
+
description: |-
|
218
|
+
This is a web content-management application written for the Strelka
|
219
|
+
web application framework.
|
252
220
|
email:
|
253
221
|
- ged@FaerieMUD.org
|
254
222
|
executables: []
|
@@ -317,6 +285,7 @@ files:
|
|
317
285
|
homepage: https://bitbucket.org/ged/strelka-cms
|
318
286
|
licenses:
|
319
287
|
- BSD
|
288
|
+
metadata: {}
|
320
289
|
post_install_message:
|
321
290
|
rdoc_options:
|
322
291
|
- -f
|
@@ -326,22 +295,20 @@ rdoc_options:
|
|
326
295
|
require_paths:
|
327
296
|
- lib
|
328
297
|
required_ruby_version: !ruby/object:Gem::Requirement
|
329
|
-
none: false
|
330
298
|
requirements:
|
331
|
-
- -
|
299
|
+
- - '>='
|
332
300
|
- !ruby/object:Gem::Version
|
333
301
|
version: 1.9.3
|
334
302
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
335
|
-
none: false
|
336
303
|
requirements:
|
337
|
-
- -
|
304
|
+
- - '>='
|
338
305
|
- !ruby/object:Gem::Version
|
339
306
|
version: '0'
|
340
307
|
requirements: []
|
341
308
|
rubyforge_project: strelka-cms
|
342
|
-
rubygems_version:
|
309
|
+
rubygems_version: 2.0.0
|
343
310
|
signing_key:
|
344
|
-
specification_version:
|
311
|
+
specification_version: 4
|
345
312
|
summary: This is a web content-management application written for the Strelka web
|
346
313
|
application framework.
|
347
314
|
test_files: []
|
metadata.gz.sig
CHANGED
Binary file
|