instrumental-components 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: e9134d8994b32c063ea2afc84d6d29bf66bbef20ce5801969d1974f51764deaa
4
- data.tar.gz: cb22ab02231caf65280bff6155e77d66d1ca4882fcd359cca39fbd31f54c7ab0
3
+ metadata.gz: e9d7b4164eab29cdccb4586188c0480cba5f4834d65089e35f08f59c1b064500
4
+ data.tar.gz: 67e0a39edfd96ce115499b540f68b3b131edff234a74437cc306c0e3a84df3a5
5
5
  SHA512:
6
- metadata.gz: 610931e9290c712d7c03e9dd47beae6ff8b57c1905b7ac844ecda96bb86040d27245623d7cbac268b7f7a310c4439638eaaf489b1a8f2d5d0b4d51375d734cf6
7
- data.tar.gz: 62092b9ff3f040cb39a747c559c723b25c65d47f1780a21b0086fccc1f08407d38ada17f6110b2b272fea451edf611f4ec57829aaa5c9f93429cb0cd0e2ca5a6
6
+ metadata.gz: 9609e5ab398a77557e965e6183ddba2710d9fc6eb888733de87738a0d56bcc0ad72bf02f13ca86aa935b8e79b4867f8a2533881200e25bfbea4b97f981a7b6cf
7
+ data.tar.gz: 26fe58b9a0e028ff4804a724d7706b1350466040b67d563da8b5ce83b921dc5a01d210d2b87996b8a7408b19d81c94a0c9eceead730a98a8afc8881c8dcd350b
@@ -12,15 +12,12 @@ module InstrumentalComponents
12
12
 
13
13
  def install
14
14
  puts "📥 Downloading the latest version of Instrumental Components..."
15
- puts "Debug: Starting installation process..."
16
15
 
17
16
  begin
18
17
  # Load .env file if it exists (for local development only)
19
18
  if File.exist?('.env')
20
- puts "Debug: Loading local .env file..."
21
19
  Dotenv.load
22
20
  end
23
- puts "Debug: Environment variables - INSTRUMENTAL_DOMAIN = #{ENV['INSTRUMENTAL_DOMAIN'].inspect}"
24
21
 
25
22
  # Download the latest version of the gem
26
23
  download_gem
@@ -50,10 +47,8 @@ module InstrumentalComponents
50
47
  private
51
48
 
52
49
  def download_gem
53
- puts "Debug: Starting download_gem method..."
54
50
  # For local development, set INSTRUMENTAL_DOMAIN=http://localhost:3000 in .env
55
51
  # This allows testing against a local server while developing the gem
56
- puts "Debug: INSTRUMENTAL_DOMAIN = #{ENV['INSTRUMENTAL_DOMAIN'].inspect}"
57
52
  domain = ENV['INSTRUMENTAL_DOMAIN'] || 'https://instrumental.dev'
58
53
  unless 'https://instrumental.dev' == domain
59
54
  puts "Using domain: #{domain}" # Confirm that we're in local development mode
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: instrumental-components
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
  - Brian Casel