maxml 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. checksums.yaml +4 -4
  2. metadata +18 -23
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e27a4dcfe2688f5f0ed68dfefa56f8a2aa325d6d
4
- data.tar.gz: 09538509de1fff49706064a74bdd1c091611dc56
3
+ metadata.gz: 2c94852dc4bc4b8bd9786b321694e7c6d1c09e30
4
+ data.tar.gz: 690caed8dfa0c46783d744d55a901158e49bfef8
5
5
  SHA512:
6
- metadata.gz: 57ac22caff5f8f16f0c58dfaec68ab4b96edf2431c2765c416400a39aee9951838e9ba5cc1efd2e0b045c1ad87c8285ce23d2e5696bb3af9e79d037aa714f2bf
7
- data.tar.gz: 0def99371ab41b9d7ff257a5cc818b9e7ff3881a3c8ce9cdd76132e155919bb3bdbd6e8d8c1cde3d30b85677e31d8c4f294850b5e79b4d8af1eaa4fada736176
6
+ metadata.gz: 6a5086b757c8d0a2be354a0916743e6969e4f5cd9093ed93d06bd80ed7004fe54c396dbea8cdbdbba1c3196b5e79381ff6746ac63964604d6a94f4a7e4b838f5
7
+ data.tar.gz: e3387ef54b0e57d5a78af0f222103fdda927ceed474ee47f0aa0a040208cc024b134356f14751378e8c03af16eea2ceca4cfac3378e8639f4e9ceec10edaa843
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: maxml
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Leung
@@ -38,27 +38,22 @@ dependencies:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: 1.6.3.1
41
- description: "# MaxML\n\nDownload, parse and save an XML document to MongoDB\n\n##
42
- Install\n\nMake sure you're using {Bundler}[http://bundler.io].\n\nAdd `gem \"maxml\"`
43
- to your `Gemfile`.\n\nAs your project may depend on a particular version of the
44
- `mongo` and/or\n`bson_ext` gem, you need to add those to your Gemfile as well.\n\n```ruby\ngem
45
- 'maxml'\ngem 'mongo'\ngem 'bson_ext' \n```\n\n## Usage Example\n\n```ruby\n# DB
46
- defaults to \"localhost\" for `host` and 27017 for `port`\ndb_config = {database:
47
- \"maxml_test\", collection: \"xmls\"}\nreddit = MaxML::XML.new(\"http://www.reddit.com/.rss\",
48
- db_config)\nreddit.save\n)\n```\n## Copyright and License\n\nCopyright © 2014 David
49
- Leung\n\nPermission is hereby granted, free of charge, to any person obtaining a
50
- copy\nof this software and associated documentation files (the \"Software\"), to
51
- deal\nin the Software without restriction, including without limitation the rights\nto
52
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of
53
- the Software, and to permit persons to whom the Software is\nfurnished to do so,
54
- subject to the following conditions:\n\nThe above copyright notice and this permission
55
- notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE
56
- SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED,
57
- INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR
58
- PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS
59
- BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT,
60
- TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
61
- USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
41
+ - !ruby/object:Gem::Dependency
42
+ name: mongo
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ description: MaxML is a utility that helps you to download and save XML documents
56
+ straight to MongoDB.
62
57
  email: david@davidslab.com
63
58
  executables: []
64
59
  extensions: []
@@ -97,7 +92,7 @@ rubyforge_project:
97
92
  rubygems_version: 2.4.1
98
93
  signing_key:
99
94
  specification_version: 4
100
- summary: Download, parse and save an XML document to MongoDB
95
+ summary: Download, parse and save XML document to MongoDB
101
96
  test_files:
102
97
  - spec/maxml_spec.rb
103
98
  - spec/spec_helper.rb