logicality 1.0.3 → 1.0.4

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
  SHA1:
3
- metadata.gz: 5259e411791879aa79a64a950dca2480f41bb684
4
- data.tar.gz: 2e268557834ac433937ee05278d7dbfb23e427b8
3
+ metadata.gz: cb4ac0da245089c4fb24cff9a9bd3538789fa657
4
+ data.tar.gz: 3c036d3c1e19b16da5b5ac3b4e0b2dba44b48885
5
5
  SHA512:
6
- metadata.gz: 8600bf86817b1b6bef2076c22994f85ad5a3b32393dcfb22bebcca183b8b89ecae26094b2d4a5bb9d25e2ee0f818abd3ff333563a9be617ffaeeeed2237b37b8
7
- data.tar.gz: 450ae3309ccfd4e53b0132e210fbbb5bfed47de77897c313aaf4a6ed479a62e8c7ac4369cc1e0ccb60c3b1ff4b2226caa75ecfbcc39b581b323265d03f585128
6
+ metadata.gz: 224ab93b859472eacdb9bf044d3d1b2e0a4cbb96b1a61e233b0b7b639744b5c1adbea4120740949081825e416f3325758b58021ed654f03b8fb689b35332f6aa
7
+ data.tar.gz: a88bccf33b604a31042e14fcb09c8229af5480c181fda6dba306d0b9e6d24d9e09013dfec2135b2263f01694e41a0be3f9bbb7201d1c8b7bc4e60c638d8799ed
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- logicality (1.0.3)
4
+ logicality (1.0.4)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/lib/logicality.rb ADDED
@@ -0,0 +1,8 @@
1
+ #
2
+ # Copyright (c) 2018-present, Blue Marble Payroll, LLC
3
+ #
4
+ # This source code is licensed under the MIT license found in the
5
+ # LICENSE file in the root directory of this source tree.
6
+ #
7
+
8
+ require_relative 'logicality/logicality'
@@ -6,5 +6,5 @@
6
6
  #
7
7
 
8
8
  module Logicality
9
- VERSION = "1.0.3"
9
+ VERSION = "1.0.4"
10
10
  end
data/spec/logic_spec.rb CHANGED
@@ -5,7 +5,7 @@
5
5
  # LICENSE file in the root directory of this source tree.
6
6
  #
7
7
 
8
- require './lib/logicality/logicality'
8
+ require './lib/logicality'
9
9
 
10
10
  def run(tests)
11
11
  tests.each do |x|
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logicality
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matthew Ruggio
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-08-16 00:00:00.000000000 Z
11
+ date: 2018-09-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec
@@ -43,6 +43,7 @@ files:
43
43
  - Gemfile.lock
44
44
  - LICENSE
45
45
  - README.md
46
+ - lib/logicality.rb
46
47
  - lib/logicality/interpreter/interpreter.rb
47
48
  - lib/logicality/interpreter/node_visitor.rb
48
49
  - lib/logicality/interpreter/simple_interpreter.rb