histock-simplefilter 0.1.1 → 0.1.2

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
  SHA256:
3
- metadata.gz: 9ef5f11eba9f921abdf2151dba856d91da5cb740fda0de979e107c86f32b51bf
4
- data.tar.gz: aca672dffcaa83f8d4a2afc3199b33d635afb6ad72319b44f8cf8bbc4b0aac2a
3
+ metadata.gz: 49fa59d41b69cd6d68ca41cab558feacfc992307cea33027a5bf85b89f4cc45b
4
+ data.tar.gz: 0b249091bc7b93ee1a23dfd261b4750f71d34b667a724b4f72711b4b762a6580
5
5
  SHA512:
6
- metadata.gz: 753c6d7ad15903be0866573f70aac65a3fb640b9ace443dd4a5051b9578f123477af6dd4c0b16b52df9af86dddd1e35c6f186271ef73d62931278f68508bcdf6
7
- data.tar.gz: 06dd48d2eb4baafd8cb8a6d7618c79a894ec0f20572e531583709beab79aa330fbade522d16041f3c6baa1450c427e6cad6613fa138615640448ae4b86363d92
6
+ metadata.gz: 330467fc55a6a63309efd90f9707b035101908d9e38c811f0100be8465f2e367e5c0b0620c6655909eb4ee9c5f387309d5380111abfc535a7a90ad62ebe78736
7
+ data.tar.gz: 709edcdddd3229001c6a16cf14f9be14f5865b4e484bd727a1cd32849129cecdab0630effa136c43a263143fc2a60535e42d980c8bd017441be18c4c9c9f5bf8
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## v0.1.2
2
+ [full changelog](http://github.com/ysato5654/histock-filter/compare/v0.1.1...v0.1.2)
3
+
4
+ * fix include path
5
+
1
6
  ## v0.1.1
2
7
  [full changelog](http://github.com/ysato5654/histock-filter/compare/v0.1.0...v0.1.1)
3
8
 
@@ -1,5 +1,5 @@
1
1
  require 'nokogiri'
2
- require 'fetch/dividend_policy'
2
+ require File.expand_path(File.dirname(__FILE__)) + '/fetch/dividend_policy'
3
3
 
4
4
  module Histock
5
5
  module Fetch
@@ -1,5 +1,5 @@
1
1
  module Histock
2
2
  class Simplefilter
3
- VERSION = '0.1.1'
3
+ VERSION = '0.1.2'
4
4
  end
5
5
  end
@@ -1,6 +1,6 @@
1
- require 'simplefilter/version'
2
- require 'simplefilter/connection'
3
- require 'simplefilter/fetch'
1
+ require File.expand_path(File.dirname(__FILE__)) + '/simplefilter/version'
2
+ require File.expand_path(File.dirname(__FILE__)) + '/simplefilter/connection'
3
+ require File.expand_path(File.dirname(__FILE__)) + '/simplefilter/fetch'
4
4
 
5
5
  module Histock
6
6
  class Simplefilter
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: histock-simplefilter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yuya Sato