a11y_agent 0.0.2 → 0.0.5.pre.alpha.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/a11y_agent/version.rb +1 -1
- data/lib/tasks/release.rake +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ed50c07fb294f4f39c611cb2ea94ed981943cab30f29112b5262cb17f02258bb
|
4
|
+
data.tar.gz: d4ac03cfc97ac29950526924e75d555baf2ef9a0685fd34260266aa79055fed1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 99833c9e8345069fe26969040713032fee35b2e704724f28329778f4576b3ccac7572be596d502765cbb915598daa354d6b0da0263c27bbe22a11aa0769e4e75
|
7
|
+
data.tar.gz: 505cc1cfd7060fbea0f3056fd260d5b58e998e8c680a60137eaeb807273af22fe6f2e5bd5122c137b536b8504f70638a4904d2b6cf4d3f70bc9076c8c5bd4b1a
|
data/lib/a11y_agent/version.rb
CHANGED
data/lib/tasks/release.rake
CHANGED
@@ -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", "--
|
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.
|
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.
|
124
|
+
rubygems_version: 3.5.11
|
125
125
|
signing_key:
|
126
126
|
specification_version: 4
|
127
|
-
summary:
|
127
|
+
summary: AI agent that fixes accessibility issues
|
128
128
|
test_files: []
|