awesome_xml_dsl 0.1.1 → 0.1.3

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
  SHA256:
3
- metadata.gz: c363e7a223ff40b0cb2ad00272a76ff9b600f9082201f2e126fbb3163c823eed
4
- data.tar.gz: 66d8a74730a59737e93d8b75aa403c4ecf87926207e493a1ca01b78d0c363698
3
+ metadata.gz: 8bb7372068b3a1da4911d67b9d3c101554a550f807206a46a4f1425822e43032
4
+ data.tar.gz: a7c2a0ad03096da1b92e8a580616cccfb9e746bdb3adc980636112f36ad5711d
5
5
  SHA512:
6
- metadata.gz: 2bd09a04c94af8163cfb156f4ad31d02808cc81ff4a7c819ec1fffed88669d03241e73c19d64233f384172124b42b56d5be518b6ef66c21597376e273a2714da
7
- data.tar.gz: 7a77a19cce550f0ed2c150d4ab95f3c0b9c68937f07552f448f9bf46d35de659ffedddc8bd1974ea218fc5af895aa0c96c88b47bba46a1e50510da5402cdc964
6
+ metadata.gz: dbde5cd69e5f1c026be9ae2506d0401505642679a3421b1e340639aa533dbf1274c730e05733ea8665050ec5535e9f36b8b5d3088667b9b5aa2df3fccb2a15fb
7
+ data.tar.gz: 551aea3fb50c413b824dba885fb1e13b7950d947d5008b8048bf10aab83133aa0a5e6285b79fb040d8d7718ccb82d934b4c19e7aa185226510c45414061cccb9
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- awesome_xml_dsl (0.1.1)
4
+ awesome_xml_dsl (0.1.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/lib/engine.rb CHANGED
@@ -2,6 +2,6 @@
2
2
 
3
3
  module XmlDsl
4
4
  class Engine < ::Rails::Engine
5
- config.autoload_paths += Dir["#{config.root}/lib/xml_dsl/**/"]
5
+ config.autoload_paths += Dir["#{config.root}/lib/**/"]
6
6
  end
7
7
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module XmlDsl
4
- VERSION = '0.1.1'
4
+ VERSION = '0.1.3'
5
5
  end
data/xml_dsl.gemspec CHANGED
@@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
22
22
  # Specify which files should be added to the gem when it is released.
23
23
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
24
24
  spec.files = Dir.chdir(File.expand_path(__dir__)) do
25
- `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features|examples)/}) }
25
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features|examples)|as_one_file}) }
26
26
  end
27
27
 
28
28
  spec.bindir = 'exe'
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.1
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pedro 'Fedeaux' Bernardes
@@ -31,7 +31,6 @@ files:
31
31
  - lib/engine.rb
32
32
  - lib/lib/core_extensions.rb
33
33
  - lib/xml_dsl.rb
34
- - lib/xml_dsl/as_one_file.rb
35
34
  - lib/xml_dsl/attribute.rb
36
35
  - lib/xml_dsl/attribute_options_parser.rb
37
36
  - lib/xml_dsl/data_source.rb
@@ -1,11 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- final = ''
4
-
5
- Dir['*.rb'].each do |file|
6
- next if ['as_one_file.rb', 'version.rb'].include? file
7
-
8
- final += File.read(file).split("\n")[3..-2].join("\n") + "\n\n"
9
- end
10
-
11
- puts "module XmlDsl\n#{final.rstrip}\nend"