tax_generator 0.0.1 → 0.0.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: 28287cd2175ec40ed0182000c8b035057b0e08f1
4
- data.tar.gz: 344e5878ae0bff235afb82c56df950e6e832fc77
3
+ metadata.gz: cffa86514442a851ade6e7cf978ce5440755f1b6
4
+ data.tar.gz: 380ad445278f3f0b4211a382053f6f6b2e10749c
5
5
  SHA512:
6
- metadata.gz: 7fcdd38f4a1f402ab80780d35dc74a25225ef0236ee289975528050d011853ed9e2db577e5edbd68a8bbc32ee6205638f5c2f4569be8340a2d51b1847f796027
7
- data.tar.gz: a3f2de16a7d7dde4c708119a886f21037d1688d94bb77e310b9539d65c1c5751121c4dcc223cec12b221f84f9a89fdf0211e221f6ccf835b7f1b823892d7e1db
6
+ metadata.gz: e9afefc598b039a053c0b637c61de71b2a3070d806e7a2bee656fd0b1b467a5747f1ec25237a287736d86bf9aa03e6298f663a2889aa6e5bce8b43d965ae5b2e
7
+ data.tar.gz: 414e8c80b3fdb917f57675f33ebbc527a5f31a6eabeda8dce261ebb242f1140508f1b6c0b5a2fc9b0fde815ea534ab112f91f92b4f7118f6cb3b607a61fb2b84
data/README.md CHANGED
@@ -6,7 +6,7 @@ tax_generator
6
6
  Description
7
7
  -----------
8
8
 
9
- Simple batch processor that takes 2 xml files as input and generates html files with information from the xml elements.
9
+ Simple batch processor that takes 2 xml files as input and generates html files with information from the xml elements and uses celluloid to generate files in asyncronous way
10
10
 
11
11
  - *taxonomy.xml* holds the information about how elements are related to each other.
12
12
 
@@ -1,25 +1,4 @@
1
- s.rbx/
2
- .bundle/
3
- *.gem
4
- .idea/
5
- .rvmrc
6
- *.swp
7
- log/*.log
8
- pkg/
9
- spec/dummy/db/*.sqlite3
10
- spec/dummy/log/*.log
11
- spec/dummy/tmp/
12
- coverage
13
- tags
14
- /nbproject/
15
- /.git-rewrite/
16
- /bin/**/*
17
- /data/output_*
18
- /data/output/**/*.hss
19
- /data/output/static/**/*
20
- # But not these files...
21
-
22
-
1
+ # Ignore everything in this directory
2
+ *
3
+ # Except this file
23
4
  !.gitignore
24
- !/data/**/*.xml
25
- !/bin/multi_cap
@@ -18,6 +18,7 @@ require 'fileutils'
18
18
  require 'ostruct'
19
19
  require 'erb'
20
20
  require 'tilt'
21
+ require 'tilt/erb'
21
22
 
22
23
  %w(classes helpers).each do |folder_name|
23
24
  Gem.find_files("tax_generator/#{folder_name}/**/*.rb").each { |path| require path }
@@ -17,7 +17,7 @@ module TaxGenerator
17
17
  # minor release version
18
18
  MINOR = 0
19
19
  # tiny release version
20
- TINY = 1
20
+ TINY = 2
21
21
  # prelease version ( set this only if it is a prelease)
22
22
  PRE = nil
23
23
 
@@ -23,7 +23,7 @@ Gem::Specification.new do |s|
23
23
  s.add_runtime_dependency 'slop', '~> 4.2', '>= 4.2.1'
24
24
  s.add_runtime_dependency 'activesupport', '~> 4.2', '>= 4.2.5'
25
25
  s.add_runtime_dependency 'rubytree', '~> 0.9', '>= 0.9.6'
26
- s.add_runtime_dependency 'tilt', '~> 1.4', '>= 1.4.1'
26
+ s.add_runtime_dependency 'tilt', '~> 2.0', '>= 2.0.1'
27
27
 
28
28
  s.add_development_dependency 'rake', '~> 10.4', '>= 10.4.2'
29
29
  s.add_development_dependency 'rspec', '~> 3.3', '>= 3.3'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tax_generator
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - bogdanRada
@@ -136,20 +136,20 @@ dependencies:
136
136
  requirements:
137
137
  - - "~>"
138
138
  - !ruby/object:Gem::Version
139
- version: '1.4'
139
+ version: '2.0'
140
140
  - - ">="
141
141
  - !ruby/object:Gem::Version
142
- version: 1.4.1
142
+ version: 2.0.1
143
143
  type: :runtime
144
144
  prerelease: false
145
145
  version_requirements: !ruby/object:Gem::Requirement
146
146
  requirements:
147
147
  - - "~>"
148
148
  - !ruby/object:Gem::Version
149
- version: '1.4'
149
+ version: '2.0'
150
150
  - - ">="
151
151
  - !ruby/object:Gem::Version
152
- version: 1.4.1
152
+ version: 2.0.1
153
153
  - !ruby/object:Gem::Dependency
154
154
  name: rake
155
155
  requirement: !ruby/object:Gem::Requirement
@@ -384,7 +384,6 @@ files:
384
384
  - ".rspec"
385
385
  - ".rubocop.yml"
386
386
  - Gemfile
387
- - Gemfile.lock
388
387
  - LICENSE
389
388
  - README.md
390
389
  - Rakefile
data/Gemfile.lock DELETED
@@ -1,154 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- tax_generator (0.0.1)
5
- activesupport (~> 4.2, >= 4.2.5)
6
- celluloid (~> 0.16.0, ~> 0.16)
7
- celluloid-pmap (~> 0.2.2, ~> 0.2)
8
- nokogiri (~> 1.6, >= 1.6.7)
9
- rubytree (~> 0.9, >= 0.9.6)
10
- slop (~> 4.2, >= 4.2.1)
11
- tilt (~> 1.4, >= 1.4.1)
12
-
13
- GEM
14
- remote: http://rubygems.org/
15
- specs:
16
- abstract_type (0.0.7)
17
- activesupport (4.2.5)
18
- i18n (~> 0.7)
19
- json (~> 1.7, >= 1.7.7)
20
- minitest (~> 5.1)
21
- thread_safe (~> 0.3, >= 0.3.4)
22
- tzinfo (~> 1.1)
23
- adamantium (0.2.0)
24
- ice_nine (~> 0.11.0)
25
- memoizable (~> 0.4.0)
26
- ast (2.1.0)
27
- astrolabe (1.3.1)
28
- parser (~> 2.2)
29
- axiom-types (0.1.1)
30
- descendants_tracker (~> 0.0.4)
31
- ice_nine (~> 0.11.0)
32
- thread_safe (~> 0.3, >= 0.3.1)
33
- celluloid (0.16.0)
34
- timers (~> 4.0.0)
35
- celluloid-pmap (0.2.2)
36
- celluloid (>= 0.16)
37
- codeclimate-engine-rb (0.1.0)
38
- virtus (~> 1.0)
39
- coercible (1.0.0)
40
- descendants_tracker (~> 0.0.1)
41
- colored (1.2)
42
- concord (0.1.5)
43
- adamantium (~> 0.2.0)
44
- equalizer (~> 0.0.9)
45
- descendants_tracker (0.0.4)
46
- thread_safe (~> 0.3, >= 0.3.1)
47
- diff-lcs (1.2.5)
48
- docile (1.1.5)
49
- equalizer (0.0.11)
50
- github-markup (1.4.0)
51
- hitimes (1.2.3)
52
- i18n (0.7.0)
53
- ice_nine (0.11.1)
54
- json (1.8.3)
55
- memoizable (0.4.2)
56
- thread_safe (~> 0.3, >= 0.3.1)
57
- metaclass (0.0.4)
58
- mini_portile2 (2.0.0)
59
- minitest (5.8.3)
60
- mocha (1.1.0)
61
- metaclass (~> 0.0.1)
62
- nokogiri (1.6.7)
63
- mini_portile2 (~> 2.0.0.rc2)
64
- parser (2.2.3.0)
65
- ast (>= 1.1, < 3.0)
66
- powerpack (0.1.1)
67
- private_attr (1.1.0)
68
- procto (0.0.2)
69
- rainbow (2.0.0)
70
- rake (10.4.2)
71
- redcarpet (3.3.3)
72
- reek (3.7.1)
73
- codeclimate-engine-rb (~> 0.1.0)
74
- parser (~> 2.2, >= 2.2.2.5)
75
- private_attr (~> 1.1)
76
- rainbow (~> 2.0)
77
- unparser (~> 0.2.2)
78
- rspec (3.4.0)
79
- rspec-core (~> 3.4.0)
80
- rspec-expectations (~> 3.4.0)
81
- rspec-mocks (~> 3.4.0)
82
- rspec-core (3.4.1)
83
- rspec-support (~> 3.4.0)
84
- rspec-expectations (3.4.0)
85
- diff-lcs (>= 1.2.0, < 2.0)
86
- rspec-support (~> 3.4.0)
87
- rspec-mocks (3.4.0)
88
- diff-lcs (>= 1.2.0, < 2.0)
89
- rspec-support (~> 3.4.0)
90
- rspec-support (3.4.1)
91
- rubocop (0.35.1)
92
- astrolabe (~> 1.3)
93
- parser (>= 2.2.3.0, < 3.0)
94
- powerpack (~> 0.1)
95
- rainbow (>= 1.99.1, < 3.0)
96
- ruby-progressbar (~> 1.7)
97
- tins (<= 1.6.0)
98
- ruby-progressbar (1.7.5)
99
- rubytree (0.9.6)
100
- json (~> 1.8)
101
- structured_warnings (~> 0.2)
102
- simplecov (0.11.1)
103
- docile (~> 1.1.0)
104
- json (~> 1.8)
105
- simplecov-html (~> 0.10.0)
106
- simplecov-html (0.10.0)
107
- simplecov-summary (0.0.4)
108
- colored
109
- simplecov
110
- slop (4.2.1)
111
- structured_warnings (0.2.0)
112
- thread_safe (0.3.5)
113
- tilt (1.4.1)
114
- timers (4.0.4)
115
- hitimes
116
- tins (1.6.0)
117
- tzinfo (1.2.2)
118
- thread_safe (~> 0.1)
119
- unparser (0.2.4)
120
- abstract_type (~> 0.0.7)
121
- adamantium (~> 0.2.0)
122
- concord (~> 0.1.5)
123
- diff-lcs (~> 1.2.5)
124
- equalizer (~> 0.0.9)
125
- parser (~> 2.2.2)
126
- procto (~> 0.0.2)
127
- virtus (1.0.5)
128
- axiom-types (~> 0.1)
129
- coercible (~> 1.0)
130
- descendants_tracker (~> 0.0, >= 0.0.3)
131
- equalizer (~> 0.0, >= 0.0.9)
132
- yard (0.8.7.6)
133
- yard-rspec (0.1)
134
- yard
135
-
136
- PLATFORMS
137
- ruby
138
-
139
- DEPENDENCIES
140
- github-markup (~> 1.3, >= 1.3.3)
141
- mocha (~> 1.1, >= 1.1)
142
- rake (>= 3.3)
143
- redcarpet (~> 3.3, >= 3.3)
144
- reek (~> 3.7, >= 3.7)
145
- rspec (~> 3.3, >= 3.3)
146
- rubocop (~> 0.33, >= 0.33)
147
- simplecov (~> 0.10, >= 0.10)
148
- simplecov-summary (~> 0.0.4, >= 0.0.4)
149
- tax_generator!
150
- yard (~> 0.8, >= 0.8.7)
151
- yard-rspec (~> 0.1, >= 0.1)
152
-
153
- BUNDLED WITH
154
- 1.10.6