xccache 0.0.1a1

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 002b0ffd2e4591fe6f68e8af8a380eb8a6926ac4949ab64968484e2350b20386
4
+ data.tar.gz: 6ab1e4a2e8e00e0729e70e1e82f01cf16560e05635ea36ce00639b24132c5c6e
5
+ SHA512:
6
+ metadata.gz: 57f007540cfc9ee48d94d210a7f4821ac449e734c5d00e44b9b09fb97ea5bfbc340eff8e9c27251245ac5dbf850f90cdc11f72c32732a8c0d1193109c0b6aadd
7
+ data.tar.gz: 1d3e971e8546f26870d0b5fd0f2c7898eeb722fa76f1eed2c4b8bb1d7faea20abe4cc4047c40b7fdcdd0e0e59ceae428550216f0712edc1e80335c1b60512b73
data/bin/xccache ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ require "xccache"
3
+
4
+ XCCache::Command.run(ARGV)
@@ -0,0 +1,9 @@
1
+ module XCCache
2
+ class Command
3
+ class Pkg < Command
4
+ class Build < Pkg
5
+ self.summary = "Build a Swift package into an xcframework"
6
+ end
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,10 @@
1
+ require "xccache/command/pkg/build"
2
+
3
+ module XCCache
4
+ class Command
5
+ class Pkg < Command
6
+ self.abstract_command = true
7
+ self.summary = "Working with Swift packages"
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,10 @@
1
+ require "claide"
2
+
3
+ module XCCache
4
+ class Command < CLAide::Command
5
+ require "xccache/command/pkg"
6
+
7
+ self.abstract_command = true
8
+ self.summary = "xccache - a build caching tool"
9
+ end
10
+ end
@@ -0,0 +1 @@
1
+ require "xccache/command"
data/lib/xccache.rb ADDED
@@ -0,0 +1 @@
1
+ require "xccache/main"
metadata ADDED
@@ -0,0 +1,64 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: xccache
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1a1
5
+ platform: ruby
6
+ authors:
7
+ - Thuyen Trinh
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2025-03-28 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: claide
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ description: A Ruby gem
28
+ email:
29
+ - trinhngocthuyen@gmail.com
30
+ executables:
31
+ - xccache
32
+ extensions: []
33
+ extra_rdoc_files: []
34
+ files:
35
+ - bin/xccache
36
+ - lib/xccache.rb
37
+ - lib/xccache/command.rb
38
+ - lib/xccache/command/pkg.rb
39
+ - lib/xccache/command/pkg/build.rb
40
+ - lib/xccache/main.rb
41
+ homepage: https://github.com/trinhngocthuyen/xccache
42
+ licenses:
43
+ - MIT
44
+ metadata: {}
45
+ post_install_message:
46
+ rdoc_options: []
47
+ require_paths:
48
+ - lib
49
+ required_ruby_version: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ required_rubygems_version: !ruby/object:Gem::Requirement
55
+ requirements:
56
+ - - ">"
57
+ - !ruby/object:Gem::Version
58
+ version: 1.3.1
59
+ requirements: []
60
+ rubygems_version: 3.2.3
61
+ signing_key:
62
+ specification_version: 4
63
+ summary: A Ruby gem
64
+ test_files: []