fog-xml 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b091cc4df71f3575da42f0c4909b71a2f44d1d2a
4
- data.tar.gz: 6ac728559bf63785cd7fade89dcfde9c3990f837
3
+ metadata.gz: 93292957a411a7adc0961cb8e1283e250dc45a3d
4
+ data.tar.gz: 8c01087172167db2b117bba3b52cf31657f69571
5
5
  SHA512:
6
- metadata.gz: 5b894d4642a6bca397492ac636068e4e8234a40e09b77bdbd3a99154d2f2f091e3329364502c36c9627828517db9ee644de9ce4aa5a0a410a0e5c10f4082a7e8
7
- data.tar.gz: e05040392fb0173485aadf8dc37041c355dd2c48a3181638913d1553477f760b584676e010ddca21e02177d8d0fc4288fd5d52bc84f167df8065440cd34cb5a9
6
+ metadata.gz: a68e2a73d95ed7f7da5ce28eaa2443ad620aafc76d22ad01925c2ba3392c6734e1ebd49d0a49b57b6f091a1a6489cf641f263342670feab0856e389ddfe73ea3
7
+ data.tar.gz: b1636d5fe31b3f6e233a79bea2ea16f7a39e561a251895ec5fe2e16aafaa8f9344346dc039931b3ff8e3de557068e72a67c338b5a96f3b4665762d634c82b153
data/.travis.yml CHANGED
@@ -1,21 +1,17 @@
1
1
  matrix:
2
2
  include:
3
3
  - rvm: 1.8.7
4
- gemfile: gemfiles/Gemfile.1.8.7
4
+ gemfile: gemfiles/Gemfile.1.9.2-
5
5
  - rvm: 1.9.2
6
- gemfile: gemfiles/Gemfile.1.9.2+
7
- env: COVERAGE=true
6
+ gemfile: gemfiles/Gemfile.1.9.2-
8
7
  - rvm: 1.9.3
9
- gemfile: gemfiles/Gemfile.1.9.2+
10
- env: COVERAGE=true
8
+ gemfile: gemfiles/Gemfile.1.9.3+
11
9
  - rvm: 2.0.0
12
- gemfile: gemfiles/Gemfile.1.9.2+
13
- env: COVERAGE=true
14
- - rvm: 2.1.1
15
- gemfile: gemfiles/Gemfile.1.9.2+
10
+ gemfile: gemfiles/Gemfile.1.9.3+
11
+ - rvm: 2.1.4
12
+ gemfile: gemfiles/Gemfile.1.9.3+
16
13
  env: COVERAGE=true
17
14
  - rvm: ree
18
- gemfile: gemfiles/Gemfile.1.8.7
15
+ gemfile: gemfiles/Gemfile.1.9.2-
19
16
  - rvm: jruby
20
- gemfile: gemfiles/Gemfile.1.9.2+
21
- env: COVERAGE=true
17
+ gemfile: gemfiles/Gemfile.1.9.3+
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Shared XML related functionality for fog
4
4
 
5
- [![Build Status](https://secure.travis-ci.org/fog/fog-xml.png?branch=master)](http://travis-ci.org/fog/fog-xml)
5
+ ![Gem Version](https://badge.fury.io/rb/fog-xml.svg) [![Build Status](https://travis-ci.org/fog/fog-xml.svg?branch=master)](https://travis-ci.org/fog/fog-xml) [![Dependency Status](https://gemnasium.com/fog/fog-xml.svg)](https://gemnasium.com/fog/fog-xml) [![Coverage Status](https://img.shields.io/coveralls/fog/fog-xml.svg)](https://coveralls.io/r/fog/fog-xml?branch=master) [![Code Climate](https://codeclimate.com/github/fog/fog-xml.png)](https://codeclimate.com/github/fog/fog-xml)
6
6
 
7
7
  ## Installation
8
8
 
data/fog-xml.gemspec CHANGED
@@ -14,7 +14,10 @@ Gem::Specification.new do |spec|
14
14
  spec.homepage = "https://github.com/fog/fog-xml"
15
15
  spec.license = "MIT"
16
16
 
17
- spec.files = `git ls-files -z`.split("\x0")
17
+ files = `git ls-files -z`.split("\x0")
18
+ files.delete(".hound.yml")
19
+ spec.files = files
20
+
18
21
  spec.executables = spec.files.grep(/^bin\//) { |f| File.basename(f) }
19
22
  spec.test_files = spec.files.grep(/^(test|spec|features)\//)
20
23
  spec.require_paths = %w(lib)
@@ -3,6 +3,6 @@ source :rubygems
3
3
  gem 'mime-types', '< 2.0'
4
4
  gem 'nokogiri', '< 1.6'
5
5
  gem 'rest-client', '~> 1.6.8'
6
- gem 'fog-core', :github => 'fog/fog-core'
6
+ gem 'fog-core'
7
7
 
8
8
  gemspec :path => '../'
@@ -2,6 +2,6 @@ source :rubygems
2
2
 
3
3
  gem 'activesupport', '>= 3.0', '< 4'
4
4
  gem 'mime-types', '< 2.0'
5
- gem 'fog-core', :github => 'fog/fog-core'
5
+ gem 'fog-core'
6
6
 
7
7
  gemspec :path => '../'
data/lib/fog/xml.rb CHANGED
@@ -1,15 +1,16 @@
1
- require "fog/xml/version"
1
+ require "fog/core"
2
2
  require "nokogiri"
3
+ require File.expand_path("../xml/version", __FILE__)
3
4
 
4
5
  module Fog
5
- autoload :ToHashDocument, "fog/to_hash_document"
6
+ autoload :ToHashDocument, File.expand_path("../to_hash_document", __FILE__)
6
7
 
7
8
  module XML
8
- autoload :SAXParserConnection, "fog/xml/sax_parser_connection"
9
- autoload :Connection, "fog/xml/connection"
9
+ autoload :SAXParserConnection, File.expand_path("../xml/sax_parser_connection", __FILE__)
10
+ autoload :Connection, File.expand_path("../xml/connection", __FILE__)
10
11
  end
11
12
 
12
13
  module Parsers
13
- autoload :Base, "fog/parsers/base"
14
+ autoload :Base, File.expand_path("../parsers/base", __FILE__)
14
15
  end
15
16
  end
@@ -1,5 +1,3 @@
1
- require "fog/core/connection"
2
-
3
1
  module Fog
4
2
  module XML
5
3
  class SAXParserConnection < ::Fog::Core::Connection
@@ -1,5 +1,5 @@
1
1
  module Fog
2
2
  module Xml
3
- VERSION = "0.1.1"
3
+ VERSION = "0.1.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fog-xml
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wesley Beary (geemus)
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2014-11-06 00:00:00.000000000 Z
13
+ date: 2015-04-04 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: fog-core
@@ -138,8 +138,8 @@ files:
138
138
  - README.md
139
139
  - Rakefile
140
140
  - fog-xml.gemspec
141
- - gemfiles/Gemfile.1.8.7
142
- - gemfiles/Gemfile.1.9.2+
141
+ - gemfiles/Gemfile.1.9.2-
142
+ - gemfiles/Gemfile.1.9.3+
143
143
  - lib/fog/parsers/base.rb
144
144
  - lib/fog/to_hash_document.rb
145
145
  - lib/fog/xml.rb