squared 0.4.15 → 0.4.17

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.4.15
4
+ version: 0.4.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - An Pham
@@ -102,6 +102,7 @@ files:
102
102
  - lib/squared/workspace/repo.rb
103
103
  - lib/squared/workspace/series.rb
104
104
  - lib/squared/workspace/support.rb
105
+ - lib/squared/workspace/support/base.rb
105
106
  - lib/squared/workspace/support/data.rb
106
107
  - squared.gemspec
107
108
  homepage: https://github.com/anpham6/squared
@@ -125,7 +126,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
125
126
  - !ruby/object:Gem::Version
126
127
  version: '0'
127
128
  requirements: []
128
- rubygems_version: 3.6.7
129
+ rubygems_version: 3.6.9
129
130
  specification_version: 4
130
131
  summary: Rake task generator for managing multi-language workspaces.
131
132
  test_files: []