squared 0.5.2 → 0.5.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.
@@ -27,14 +27,6 @@ module Squared
27
27
  !!project(name)&.enabled?
28
28
  end
29
29
 
30
- def hashobj
31
- Hash.new { |data, key| data[key] = {} }
32
- end
33
-
34
- def hashlist
35
- Hash.new { |data, key| data[key] = [] }
36
- end
37
-
38
30
  private
39
31
 
40
32
  def project(name)
data/squared.gemspec CHANGED
@@ -1,10 +1,10 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require_relative "lib/squared/version"
3
+ version = File.read(File.join(__dir__, "lib/squared/version.rb"))[/\bVERSION = '(.+)'$/, 1]
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "squared"
7
- spec.version = Squared::VERSION
7
+ spec.version = version
8
8
  spec.authors = ["An Pham"]
9
9
  spec.email = ["anpham6@gmail.com"]
10
10
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: squared
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.2
4
+ version: 0.5.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - An Pham
@@ -101,6 +101,7 @@ files:
101
101
  - lib/squared/workspace/repo.rb
102
102
  - lib/squared/workspace/series.rb
103
103
  - lib/squared/workspace/support.rb
104
+ - lib/squared/workspace/support/base.rb
104
105
  - lib/squared/workspace/support/data.rb
105
106
  - squared.gemspec
106
107
  homepage: https://github.com/anpham6/squared