excalibur 0.0.2 → 0.0.3
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 +4 -4
- data/.travis.yml +4 -0
- data/README.md +3 -0
- data/Rakefile +4 -1
- data/excalibur.gemspec +2 -2
- data/lib/excalibur/version.rb +1 -1
- metadata +11 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b949e8ce1e9848ef126f58c9250c16ed82f862f8
|
|
4
|
+
data.tar.gz: 221b7b12fafb7bc6c74edc91315630b0a3891944
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e41843c3cb31b43956310993bb536692b56f1002bef3b43a1731b4708b7018da08187d7f3ca562ab87802cd15599bed8e82332fa81d803c1e2e3fc58d834a1eb
|
|
7
|
+
data.tar.gz: f3c106e9a5ea7a1828b0c4229d25967cfd52d485052ff93c021ca20dd860a2577bd9fb42fc6b0aeffdef95c7283804e3bb425e5330105f5ba8127c128ba1f89e
|
data/.travis.yml
ADDED
data/README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# Excalibur
|
|
2
2
|
|
|
3
|
+
[](https://travis-ci.org/yopefonic/excalibur)
|
|
4
|
+
[](https://codeclimate.com/github/yopefonic/excalibur)
|
|
5
|
+
|
|
3
6
|
Excalibur is a SEO gem for [Ruby on Rails](rubyonrails.org) and helps you to
|
|
4
7
|
set the title and meta tags for you site overall and per page. Unlike other
|
|
5
8
|
options like [meta-tags](https://github.com/kpumuk/meta-tags) and
|
data/Rakefile
CHANGED
data/excalibur.gemspec
CHANGED
|
@@ -18,9 +18,9 @@ Gem::Specification.new do |spec|
|
|
|
18
18
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
19
19
|
spec.require_paths = ['lib']
|
|
20
20
|
|
|
21
|
-
spec.required_ruby_version = '>=
|
|
21
|
+
spec.required_ruby_version = '>= 2.0.0'
|
|
22
22
|
|
|
23
|
-
spec.add_dependency 'rails', '~> 3'
|
|
23
|
+
spec.add_dependency 'rails', '~> 3.0', '>= 3.0.0'
|
|
24
24
|
spec.add_dependency 'draper', '~> 1.3', '>= 1.3.0'
|
|
25
25
|
|
|
26
26
|
spec.add_development_dependency 'bundler', '~> 1.6'
|
data/lib/excalibur/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: excalibur
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Joost Elfering
|
|
@@ -16,14 +16,20 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ~>
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '3'
|
|
19
|
+
version: '3.0'
|
|
20
|
+
- - '>='
|
|
21
|
+
- !ruby/object:Gem::Version
|
|
22
|
+
version: 3.0.0
|
|
20
23
|
type: :runtime
|
|
21
24
|
prerelease: false
|
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
26
|
requirements:
|
|
24
27
|
- - ~>
|
|
25
28
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '3'
|
|
29
|
+
version: '3.0'
|
|
30
|
+
- - '>='
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: 3.0.0
|
|
27
33
|
- !ruby/object:Gem::Dependency
|
|
28
34
|
name: draper
|
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -157,6 +163,7 @@ extra_rdoc_files: []
|
|
|
157
163
|
files:
|
|
158
164
|
- .gitignore
|
|
159
165
|
- .rspec
|
|
166
|
+
- .travis.yml
|
|
160
167
|
- Gemfile
|
|
161
168
|
- LICENSE.txt
|
|
162
169
|
- README.md
|
|
@@ -195,7 +202,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
195
202
|
requirements:
|
|
196
203
|
- - '>='
|
|
197
204
|
- !ruby/object:Gem::Version
|
|
198
|
-
version:
|
|
205
|
+
version: 2.0.0
|
|
199
206
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
200
207
|
requirements:
|
|
201
208
|
- - '>='
|