a11y_agent 0.0.2 → 0.0.5.pre.alpha.3

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: 30cfb694e76efab2af7c4c7fe8d281d5d3c8582587ec9b962544da5cc9b24d16
4
- data.tar.gz: 124d3891525befd1102dced637e69d8ea6627ecfc6c7062722c1898617f41ca5
3
+ metadata.gz: ed50c07fb294f4f39c611cb2ea94ed981943cab30f29112b5262cb17f02258bb
4
+ data.tar.gz: d4ac03cfc97ac29950526924e75d555baf2ef9a0685fd34260266aa79055fed1
5
5
  SHA512:
6
- metadata.gz: 330ae85419d09945571a605856f466ef898afa03ada60c7ffa15aa94e02804fe1d9136e82f15c7ab19037495b529ba4d7f00a49dd2a4d89cb213e7ccb64454e7
7
- data.tar.gz: 6a85afed01c681d3034670cc5b56bba3fd426694697b7ea9379b2aca12b92ad270f20abc3f406b6ba6fde31446961f1c76b3eed07c3f7501ae03f76ae14157cc
6
+ metadata.gz: 99833c9e8345069fe26969040713032fee35b2e704724f28329778f4576b3ccac7572be596d502765cbb915598daa354d6b0da0263c27bbe22a11aa0769e4e75
7
+ data.tar.gz: 505cc1cfd7060fbea0f3056fd260d5b58e998e8c680a60137eaeb807273af22fe6f2e5bd5122c137b536b8504f70638a4904d2b6cf4d3f70bc9076c8c5bd4b1a
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module A11yAgent
4
- VERSION = '0.0.2'
4
+ VERSION = '0.0.5-alpha.3'
5
5
  end
@@ -43,7 +43,6 @@ namespace :release do
43
43
  class #{class_name} < Formula
44
44
  desc "#{spec.summary}"
45
45
  homepage "#{spec.homepage}"
46
- version "#{spec.version}"
47
46
  url "#{url}"
48
47
  sha256 "#{sha256sum}"
49
48
 
@@ -55,13 +54,14 @@ namespace :release do
55
54
  # Extract all files to libexec, which is a common Homebrew practice for third-party tools
56
55
  libexec.install Dir["*"]
57
56
 
57
+ system "bundle", "install", "--without", "development"
58
58
  bin.install libexec/"bin/a11y_agent"
59
59
  bin.env_script_all_files(libexec/"bin", GEM_HOME: ENV.fetch("GEM_HOME"))
60
60
  end
61
61
 
62
62
  test do
63
63
  # Simple test to check the version or a help command
64
- system "\#{bin}/a11y_agent", "--version"
64
+ system "\#{bin}/a11y_agent", "--help"
65
65
  end
66
66
  end
67
67
  RUBY
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: a11y_agent
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.5.pre.alpha.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cameron Cundiff
@@ -121,8 +121,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
121
121
  - !ruby/object:Gem::Version
122
122
  version: '0'
123
123
  requirements: []
124
- rubygems_version: 3.5.3
124
+ rubygems_version: 3.5.11
125
125
  signing_key:
126
126
  specification_version: 4
127
- summary: An AI agent that fixes accessibility issues
127
+ summary: AI agent that fixes accessibility issues
128
128
  test_files: []