middleman-xmlvalidator 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- data/.travis.yml +4 -0
- data/Rakefile +2 -1
- data/lib/{middleman/xmlvalidator.rb → middleman-xmlvalidator/extension.rb} +2 -2
- data/lib/{middleman/xmlvalidator → middleman-xmlvalidator}/version.rb +1 -1
- data/lib/middleman-xmlvalidator.rb +8 -0
- data/lib/middleman_extension.rb +1 -0
- data/middleman-xmlvalidator.gemspec +1 -1
- metadata +6 -5
- data/LICENSE.txt +0 -22
- data/lib/middleman/.DS_Store +0 -0
data/.travis.yml
ADDED
data/Rakefile
CHANGED
@@ -1 +1,2 @@
|
|
1
|
-
require
|
1
|
+
require 'bundler'
|
2
|
+
Bundler::GemHelper.install_tasks
|
@@ -0,0 +1 @@
|
|
1
|
+
require 'middleman-xmlvalidator'
|
@@ -5,7 +5,7 @@ require 'middleman/xmlvalidator/version'
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |gem|
|
7
7
|
gem.name = Middleman::Xmlvalidator::PACKAGE
|
8
|
-
gem.version =
|
8
|
+
gem.version = "0.0.4"
|
9
9
|
gem.authors = ["briananders"]
|
10
10
|
gem.email = ["anders.brian@icloud.com"]
|
11
11
|
gem.description = %q{This Gem is a middleman extension that is used for validating xml and rss files in your build folder.}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: middleman-xmlvalidator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -84,14 +84,15 @@ extensions: []
|
|
84
84
|
extra_rdoc_files: []
|
85
85
|
files:
|
86
86
|
- .gitignore
|
87
|
+
- .travis.yml
|
87
88
|
- Gemfile
|
88
|
-
- LICENSE.txt
|
89
89
|
- README.md
|
90
90
|
- Rakefile
|
91
91
|
- lib/.DS_Store
|
92
|
-
- lib/middleman
|
93
|
-
- lib/middleman/
|
94
|
-
- lib/middleman
|
92
|
+
- lib/middleman-xmlvalidator.rb
|
93
|
+
- lib/middleman-xmlvalidator/extension.rb
|
94
|
+
- lib/middleman-xmlvalidator/version.rb
|
95
|
+
- lib/middleman_extension.rb
|
95
96
|
- lib/schema/.DS_Store
|
96
97
|
- lib/schema/BingSiteAuth.xsd
|
97
98
|
- lib/schema/RSSSchema.xsd
|
data/LICENSE.txt
DELETED
@@ -1,22 +0,0 @@
|
|
1
|
-
Copyright (c) 2013 briananders
|
2
|
-
|
3
|
-
MIT License
|
4
|
-
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
-
a copy of this software and associated documentation files (the
|
7
|
-
"Software"), to deal in the Software without restriction, including
|
8
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
-
permit persons to whom the Software is furnished to do so, subject to
|
11
|
-
the following conditions:
|
12
|
-
|
13
|
-
The above copyright notice and this permission notice shall be
|
14
|
-
included in all copies or substantial portions of the Software.
|
15
|
-
|
16
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/lib/middleman/.DS_Store
DELETED
Binary file
|