awesome_xml_dsl 0.1.5 → 0.1.6

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ebf48dc13d4515903eb4c4bceebffb55a9564a05248b37c7b1eaf01f2e37a3f7
4
- data.tar.gz: d7d0596be055d58179527a6058734d0ab644d483bbe9db33b99cdb81e88eb00e
3
+ metadata.gz: df24c6bfdf3ea5375f56e46aba94685f2d33b6a983f3259a0a30281c8d610210
4
+ data.tar.gz: 22a57e303e474c5659614efbbbd4c1f8e194b9d06b7f6880bfcb6a404dfc91a9
5
5
  SHA512:
6
- metadata.gz: d4b426a3cf5fd6a43d40d6bcc1b20566764c3e58fcb3edd083d35fce6d2d08c221c3f6dc173a65e209ae8a7cc0fd075bde869d27fac5f5abe4ca2a55bce85399
7
- data.tar.gz: ad9250663f42d5f2e3fbe8b8dbe01eec869076e0b51087cac897212a57f89499c74d5ca93214d202bffc97603b7790ff38cf6cde93fbfc90d4b5ac0769d940cb
6
+ metadata.gz: 9a15650d22e64427c2bf6e57c81d925497199a45a0db05a0a5ae8dcbb8d94e65be1b021cf0a866cd63c7e31ee9972bc2b6b4a4cca4697f0636647fabeb9a1b0b
7
+ data.tar.gz: e135e434b3ed02a3e31ed742661ca5f58cba7ab55858d0486b55d66a671aa091d3aa4dbfc7c98e5c8325d1690f7700e42229b432a1b19863a0dfcda66589b4ec
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # AwesomeXmlDsl
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/xml_dsl`. To experiment with that code, run `bin/console` for an interactive prompt.
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/awesome_xml_dsl`. To experiment with that code, run `bin/console` for an interactive prompt.
4
4
 
5
5
  TODO: Delete this and the text above, and describe your gem
6
6
 
@@ -9,7 +9,7 @@ TODO: Delete this and the text above, and describe your gem
9
9
  Add this line to your application's Gemfile:
10
10
 
11
11
  ```ruby
12
- gem 'xml_dsl'
12
+ gem 'awesome_xml_dsl'
13
13
  ```
14
14
 
15
15
  And then execute:
@@ -18,7 +18,7 @@ And then execute:
18
18
 
19
19
  Or install it yourself as:
20
20
 
21
- $ gem install xml_dsl
21
+ $ gem install awesome_xml_dsl
22
22
 
23
23
  ## Usage
24
24
 
data/bin/console CHANGED
@@ -2,7 +2,7 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  require 'bundler/setup'
5
- require 'xml_dsl'
5
+ require 'awesome_xml_dsl'
6
6
 
7
7
  # You can add fixtures and/or initialization code here to make experimenting
8
8
  # with your gem easier. You can also use a different console, if you like.
@@ -1,15 +1,15 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'xml_dsl/version'
3
+ require 'awesome_xml_dsl/version'
4
4
  require 'lib/core_extensions'
5
5
 
6
- require 'xml_dsl/options_parser'
7
- require 'xml_dsl/attribute_options_parser'
6
+ require 'awesome_xml_dsl/options_parser'
7
+ require 'awesome_xml_dsl/attribute_options_parser'
8
8
 
9
- require 'xml_dsl/generator'
10
- require 'xml_dsl/attribute'
11
- require 'xml_dsl/partial'
12
- require 'xml_dsl/tag'
9
+ require 'awesome_xml_dsl/generator'
10
+ require 'awesome_xml_dsl/attribute'
11
+ require 'awesome_xml_dsl/partial'
12
+ require 'awesome_xml_dsl/tag'
13
13
 
14
14
  module AwesomeXmlDsl
15
15
  class RequiredValueNotPresent < StandardError; end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AwesomeXmlDsl
4
- VERSION = '0.1.5'
4
+ VERSION = '0.1.6'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: awesome_xml_dsl
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pedro 'Fedeaux' Bernardes