phrase_assembler 0.0.9 → 1.0.0

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.
@@ -1,4 +1,4 @@
1
- require './lib/PAProxies/PALinkProxy'
1
+ require 'PAProxies/PALinkProxy'
2
2
  class PAAssembleProxy < PALinkProxy
3
3
  attr_accessor :max_tokens_level
4
4
 
@@ -1,6 +1,6 @@
1
- require './lib/PAProxies/PAAssembleProxy'
2
- require './lib/PAProxies/PAStringProxy'
3
- require './lib/PAProxies/PACacheProxy'
1
+ require 'PAProxies/PAAssembleProxy'
2
+ require 'PAProxies/PAStringProxy'
3
+ require 'PAProxies/PACacheProxy'
4
4
  class PACompositeProxy < PAAssembleProxy
5
5
  include PAStringProxy
6
6
  include PACacheProxy
@@ -1,4 +1,4 @@
1
- require './lib/PAProxies/PATokenProxy'
1
+ require 'PAProxies/PATokenProxy'
2
2
  class PALangProxy < PATokenProxy
3
3
  attr_accessor :grammar
4
4
 
@@ -1,4 +1,4 @@
1
- require './lib/PAProxies/PALangProxy'
1
+ require 'PAProxies/PALangProxy'
2
2
  class PALinkProxy < PALangProxy
3
3
  def new_instance(p_data)
4
4
  return self.class.new(p_data, self.logger, self.grammar, false)
@@ -1,4 +1,5 @@
1
- require './lib/PAProxies/PAProxyData'
1
+ $:.unshift File.expand_path(File.dirname(__FILE__))
2
+ require 'PAProxies/PAProxyData'
2
3
  class PAProxy < PAProxyData
3
4
  def new_instance(p_data)
4
5
  return self.class.new(p_data, self.logger)
@@ -1,4 +1,4 @@
1
- require './lib/PAProxies/PAProxy'
1
+ require 'PAProxies/PAProxy'
2
2
  class PATokenProxyOptions
3
3
  attr_accessor :options_hash
4
4
  attr_accessor :indices_hash
@@ -1,4 +1,5 @@
1
- require './lib/PAProxies/PACompositeProxy'
1
+ $:.unshift File.expand_path(File.dirname(__FILE__))
2
+ require 'PAProxies/PACompositeProxy'
2
3
  module PhraseAssembler
3
4
  def supress_errors
4
5
  @@supress_errors
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: phrase_assembler
3
3
  version: !ruby/object:Gem::Version
4
- hash: 13
4
+ hash: 23
5
5
  prerelease:
6
6
  segments:
7
+ - 1
7
8
  - 0
8
9
  - 0
9
- - 9
10
- version: 0.0.9
10
+ version: 1.0.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - "Lovro \xC5\xBDmak, Radan Skori\xC4\x87, Drap"