excalibur 0.0.2

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.
metadata ADDED
@@ -0,0 +1,219 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: excalibur
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Joost Elfering
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-10-10 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '3'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: draper
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: '1.3'
34
+ - - '>='
35
+ - !ruby/object:Gem::Version
36
+ version: 1.3.0
37
+ type: :runtime
38
+ prerelease: false
39
+ version_requirements: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ~>
42
+ - !ruby/object:Gem::Version
43
+ version: '1.3'
44
+ - - '>='
45
+ - !ruby/object:Gem::Version
46
+ version: 1.3.0
47
+ - !ruby/object:Gem::Dependency
48
+ name: bundler
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ~>
52
+ - !ruby/object:Gem::Version
53
+ version: '1.6'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - ~>
59
+ - !ruby/object:Gem::Version
60
+ version: '1.6'
61
+ - !ruby/object:Gem::Dependency
62
+ name: rake
63
+ requirement: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - ~>
66
+ - !ruby/object:Gem::Version
67
+ version: '10.3'
68
+ type: :development
69
+ prerelease: false
70
+ version_requirements: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - ~>
73
+ - !ruby/object:Gem::Version
74
+ version: '10.3'
75
+ - !ruby/object:Gem::Dependency
76
+ name: rspec
77
+ requirement: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - ~>
80
+ - !ruby/object:Gem::Version
81
+ version: '3.0'
82
+ type: :development
83
+ prerelease: false
84
+ version_requirements: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - ~>
87
+ - !ruby/object:Gem::Version
88
+ version: '3.0'
89
+ - !ruby/object:Gem::Dependency
90
+ name: generator_spec
91
+ requirement: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - ~>
94
+ - !ruby/object:Gem::Version
95
+ version: '0.9'
96
+ - - '>='
97
+ - !ruby/object:Gem::Version
98
+ version: 0.9.2
99
+ type: :development
100
+ prerelease: false
101
+ version_requirements: !ruby/object:Gem::Requirement
102
+ requirements:
103
+ - - ~>
104
+ - !ruby/object:Gem::Version
105
+ version: '0.9'
106
+ - - '>='
107
+ - !ruby/object:Gem::Version
108
+ version: 0.9.2
109
+ - !ruby/object:Gem::Dependency
110
+ name: simplecov
111
+ requirement: !ruby/object:Gem::Requirement
112
+ requirements:
113
+ - - ~>
114
+ - !ruby/object:Gem::Version
115
+ version: '0.8'
116
+ - - '>='
117
+ - !ruby/object:Gem::Version
118
+ version: 0.8.0
119
+ type: :development
120
+ prerelease: false
121
+ version_requirements: !ruby/object:Gem::Requirement
122
+ requirements:
123
+ - - ~>
124
+ - !ruby/object:Gem::Version
125
+ version: '0.8'
126
+ - - '>='
127
+ - !ruby/object:Gem::Version
128
+ version: 0.8.0
129
+ - !ruby/object:Gem::Dependency
130
+ name: pry
131
+ requirement: !ruby/object:Gem::Requirement
132
+ requirements:
133
+ - - ~>
134
+ - !ruby/object:Gem::Version
135
+ version: '0.10'
136
+ - - '>='
137
+ - !ruby/object:Gem::Version
138
+ version: 0.10.1
139
+ type: :development
140
+ prerelease: false
141
+ version_requirements: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - ~>
144
+ - !ruby/object:Gem::Version
145
+ version: '0.10'
146
+ - - '>='
147
+ - !ruby/object:Gem::Version
148
+ version: 0.10.1
149
+ description: helper gem for rails apps to set the title and meta tags for a page.
150
+ The helper can take custom input per page, objects that use decorator to determine
151
+ the tags or an application wide configurable default.
152
+ email:
153
+ - yopefonic@gmail.com
154
+ executables: []
155
+ extensions: []
156
+ extra_rdoc_files: []
157
+ files:
158
+ - .gitignore
159
+ - .rspec
160
+ - Gemfile
161
+ - LICENSE.txt
162
+ - README.md
163
+ - Rakefile
164
+ - excalibur.gemspec
165
+ - lib/excalibur.rb
166
+ - lib/excalibur/configuration.rb
167
+ - lib/excalibur/decorator.rb
168
+ - lib/excalibur/duplicator.rb
169
+ - lib/excalibur/railtie.rb
170
+ - lib/excalibur/truncatable_content.rb
171
+ - lib/excalibur/version.rb
172
+ - lib/excalibur/view_helpers.rb
173
+ - lib/generators/excalibur/decorator_generator.rb
174
+ - lib/generators/excalibur/install_generator.rb
175
+ - lib/generators/templates/decorator.rb
176
+ - lib/generators/templates/excalibur.rb
177
+ - spec/lib/excalibur/configuration_spec.rb
178
+ - spec/lib/excalibur/decorator_spec.rb
179
+ - spec/lib/excalibur/duplicator_spec.rb
180
+ - spec/lib/excalibur/truncatable_content_spec.rb
181
+ - spec/lib/excalibur/view_helper_spec.rb
182
+ - spec/lib/excalibur_spec.rb
183
+ - spec/lib/generators/excalibur/decorator_generator_spec.rb
184
+ - spec/lib/generators/excalibur/install_generator_spec.rb
185
+ - spec/spec_helper.rb
186
+ homepage: https://github.com/yopefonic/excalibur
187
+ licenses:
188
+ - MIT
189
+ metadata: {}
190
+ post_install_message:
191
+ rdoc_options: []
192
+ require_paths:
193
+ - lib
194
+ required_ruby_version: !ruby/object:Gem::Requirement
195
+ requirements:
196
+ - - '>='
197
+ - !ruby/object:Gem::Version
198
+ version: 1.9.3
199
+ required_rubygems_version: !ruby/object:Gem::Requirement
200
+ requirements:
201
+ - - '>='
202
+ - !ruby/object:Gem::Version
203
+ version: '0'
204
+ requirements: []
205
+ rubyforge_project:
206
+ rubygems_version: 2.2.2
207
+ signing_key:
208
+ specification_version: 4
209
+ summary: helper gem to set page title and meta tags in a rails app
210
+ test_files:
211
+ - spec/lib/excalibur/configuration_spec.rb
212
+ - spec/lib/excalibur/decorator_spec.rb
213
+ - spec/lib/excalibur/duplicator_spec.rb
214
+ - spec/lib/excalibur/truncatable_content_spec.rb
215
+ - spec/lib/excalibur/view_helper_spec.rb
216
+ - spec/lib/excalibur_spec.rb
217
+ - spec/lib/generators/excalibur/decorator_generator_spec.rb
218
+ - spec/lib/generators/excalibur/install_generator_spec.rb
219
+ - spec/spec_helper.rb