fig_tree 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 05e904a52d3b7edb7d02d48b4d063db396de7918b6b1de8f277cfcc6fcbe7cb2
4
- data.tar.gz: 58334d1b630a134a2e08cefc03d1131d130ff550d9d0a89e350f57ccdb676002
3
+ metadata.gz: eeed3763d9c3d8589a8ff0426ef7bcbc6b27ead3b61a4e930fc4c043a3243ab2
4
+ data.tar.gz: 99530c56bbed379a3a8ccdf8558fda0ff89d32eff73d3b33d95fa483c30945d8
5
5
  SHA512:
6
- metadata.gz: ef3fff25ee51e1bc67f5657a3574e303ca2346cf651379261ca915878d9b3d9e679b5acc6778b995bdac8dc1c412724c9540926563e020983d570ad53103493a
7
- data.tar.gz: 0b80fb3feee7165b47a7ce1121cd7f374ba40fa2687adfbc94e7237692f78c36c3698e72643666e96da6d208a329b784e0789aaec7352e1461cca4e36d712d5d
6
+ metadata.gz: 123fb1d12ecdc117a89e0f1b1c8cc8dcce7a124307d4b2ec6f1d9f89f80d0e727018f43f0b235a4919c46065b1b7396814625710302e5345871f44aa199b64df
7
+ data.tar.gz: 755b79c660b3c2c72c9fd6389102164ff129f6d35cbe818f1538630d88e5cbcc57ee69b80839bd18c0e56eac0db85f89cb9cce82df743b2b64de6abb401c55b0
data/CHANGELOG.md CHANGED
@@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## UNRELEASED
9
9
 
10
+ ## [0.0.5] - 2023-04-04
11
+ - Remove Deimos-specific Rake Task skip
12
+
10
13
  ## [0.0.4] - 2022-05-16
11
14
  - Added `with_config` method for testing.
12
15
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module FigTree
4
- VERSION = '0.0.4'
4
+ VERSION = '0.0.5'
5
5
  end
data/lib/fig_tree.rb CHANGED
@@ -224,13 +224,6 @@ module FigTree
224
224
 
225
225
  # Configure the settings with values.
226
226
  def configure(&block)
227
- if defined?(Rake) && defined?(Rake.application)
228
- tasks = Rake.application.top_level_tasks
229
- if tasks.any? { |t| %w(assets webpacker yarn).include?(t.split(':').first) }
230
- puts 'Skipping Deimos configuration since we are in JS/CSS compilation'
231
- return
232
- end
233
- end
234
227
  config.run_callbacks(:configure) do
235
228
  config.instance_eval(&block)
236
229
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fig_tree
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Orner
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-05-16 00:00:00.000000000 Z
11
+ date: 2023-04-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -166,7 +166,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
166
166
  - !ruby/object:Gem::Version
167
167
  version: '0'
168
168
  requirements: []
169
- rubygems_version: 3.3.7
169
+ rubygems_version: 3.3.20
170
170
  signing_key:
171
171
  specification_version: 4
172
172
  summary: Configuration framework for Ruby.