taxplorer 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- MjY0ODQ1ZTVjMjUwYjhkYWI2MjQ4MzY2M2IxM2RlYTE1ODYzNTY1MQ==
4
+ MmIwNTk0Y2ZhZjdkYjhlYWE5M2JhMjY5N2RiMDMwZjNiOTg5N2Q5OA==
5
5
  data.tar.gz: !binary |-
6
- OWU0OTNlOWNmYmQ1MzM0ZWFkZjM2ZDhmNmQ5MWQ3ODAyZDM2ODE0Zg==
6
+ MjZhNzgyYjQ3ZWYyY2U4YjNiMjliMmQ4YWI0YzMzODM1MGFmM2JhMg==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- ODM3OTFmM2FhMWQ4YzhkMjVmNGI4Y2FhZmRhNjY5YWIyMjAwM2Q2Yzk3YTdj
10
- NWI2YTdiY2JmYWE4MzkxYjliNGQwYWNjNjhjMTY0ZmIwMGQ5ODIzY2EyY2Uz
11
- NzNhNTM0NmQ2MDdlNGY5MDU3Nzk3YjYwNWVlMjRlYTdlYjQ5ZGY=
9
+ NzlhNmM2YjcwMDQ4YjIzNzk3YWM1ZDEzZmNlNjkzNjExOTFjZDNkM2NiMTJh
10
+ Y2UzYzUxMzY3ODgwNzk3NDYzNTVmOTU4YWQzNmU4MzgwZjQ3ZTA5ZmMzM2Yw
11
+ MjZhM2MyYzQ5ZTY4MTUwYzMyMzI5ODY0MTg1NWFhOGViNGE4N2I=
12
12
  data.tar.gz: !binary |-
13
- ODkxODRkMDdkOWYyMmRkMjYxYmFkMjdmOTU3NTQyMWVhMDIzOTRjMzg5NmM4
14
- NDRlOWQyYTFmMDc0ZWUyYWFmMWUwMzBlYjllY2ZkZWQyM2U3MDk3ODY0MzIx
15
- NGQ1M2Y5ZTU0NWZkMTVhYmQxMTRhYTkxMGFhMjM0NGViMTQ5ZjU=
13
+ YTFmOTY0ZjdkYjhkNWY5MjdjZjc2MDBkYzNjZTBlMmVjYTNiMjJlMTNhZjM3
14
+ NDg0YzE5MGVjYTRkZTE5ZjhmM2Y3ODVlYzg4MDcyYTA3NzNkOWFkOTViZjkx
15
+ MjE5NWMwNDdmMjNmNDlmYjRkZTRiZTRmMTZiYzRmZTMwNGMyODU=
data/README.md CHANGED
@@ -26,7 +26,7 @@ Or install it yourself as:
26
26
  $ gem install taxplorer
27
27
 
28
28
  ## Usage
29
-
29
+
30
30
  ![Taxplorer gif](https://s3.eu-central-1.amazonaws.com/gen-images/taxplorer.gif)
31
31
 
32
32
  ## Contributing
data/bin/taxplorer CHANGED
@@ -1,4 +1,4 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  require 'taxplorer'
4
- Application.new
4
+ Taxplorer::Application.new
data/lib/taxplorer.rb CHANGED
@@ -8,23 +8,22 @@ require "taxplorer/view"
8
8
  require 'hirb'
9
9
  require 'highline/import'
10
10
 
11
- class Application
12
- include Taxplorer::Command
13
- include Taxplorer::Parse
14
- include Taxplorer::Find
15
- include Taxplorer::View
11
+ module Taxplorer
12
+ class Application
13
+ include Taxplorer::Command
14
+ include Taxplorer::Parse
15
+ include Taxplorer::Find
16
+ include Taxplorer::View
16
17
 
17
- attr_reader :records, :run
18
+ attr_reader :records, :run
18
19
 
19
- def initialize
20
- @nodes = []
21
- @records ||= Hash.new
22
- @records["sections"] ||= []
23
- @records["elements"] ||= []
24
- @run = true
25
- load_shell
20
+ def initialize
21
+ @nodes = []
22
+ @records ||= Hash.new
23
+ @records["sections"] ||= []
24
+ @records["elements"] ||= []
25
+ @run = true
26
+ load_shell
27
+ end
26
28
  end
27
29
  end
28
-
29
-
30
-
@@ -1,3 +1,3 @@
1
1
  module Taxplorer
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
@@ -10,7 +10,7 @@ class TestTaxplorer < Minitest::Test
10
10
  end
11
11
 
12
12
  def test_app_initialization
13
- app = Application.new
13
+ app = Taxplorer::Application.new
14
14
  assert_equal [], app.records["sections"]
15
15
  assert_equal [], app.records["elements"]
16
16
  assert app.run
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: taxplorer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Seosamh Cahill
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-06-03 00:00:00.000000000 Z
11
+ date: 2015-06-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler