teapot 3.2.0 → 3.4.1
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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data/bin/teapot +1 -37
- data/lib/teapot/command/build.rb +1 -2
- data/lib/teapot/command/clean.rb +1 -1
- data/lib/teapot/command/clone.rb +2 -2
- data/lib/teapot/command/create.rb +4 -4
- data/lib/teapot/command/fetch.rb +1 -1
- data/lib/teapot/command/list.rb +5 -5
- data/lib/teapot/command/selection.rb +1 -1
- data/lib/teapot/command.rb +32 -6
- data/lib/teapot/loader.rb +8 -8
- data/lib/teapot/select.rb +1 -1
- data/lib/teapot/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +97 -83
- metadata.gz.sig +0 -0
- data/.gitignore +0 -18
- data/.rspec +0 -4
- data/.travis.yml +0 -33
- data/Gemfile +0 -4
- data/Gemfile.local +0 -23
- data/README.md +0 -171
- data/Rakefile +0 -19
- data/materials/kurocha.png +0 -0
- data/materials/kurocha.svg +0 -101
- data/materials/teapot.png +0 -0
- data/materials/teapot.svg +0 -82
- data/spec/spec_helper.rb +0 -11
- data/spec/teapot/command/clone_spec.rb +0 -57
- data/spec/teapot/command/fetch_spec/repositories/thing/README.md +0 -3
- data/spec/teapot/command/fetch_spec/repositories/thing/teapot.rb +0 -2
- data/spec/teapot/command/fetch_spec/test-project/teapot.rb +0 -8
- data/spec/teapot/command/fetch_spec.rb +0 -107
- data/spec/teapot/command_spec.rb +0 -59
- data/spec/teapot/configuration_spec/teapot.rb +0 -13
- data/spec/teapot/configuration_spec.rb +0 -33
- data/spec/teapot/context_spec/teapot.rb +0 -40
- data/spec/teapot/context_spec.rb +0 -61
- data/spec/teapot/target_spec/teapot.rb +0 -52
- data/spec/teapot/target_spec.rb +0 -55
- data/teapot.gemspec +0 -44
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f779e4e27a0d19b422632230261b5d29fdfb62e3ff31e97b8a8a0b2a4379cf04
|
|
4
|
+
data.tar.gz: 904de0c35db0b9389e3eb40e21e7637cad7a34d4c1fcd2445f3eb78a8416f8fc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bc18b84d78ed7cfe6593807eca80edcf6bfcd2baa7b7e29dad39a49339a5e87567ebeaee2c1cb491b2827814fe346d0e2d0ea031ddb63932822bac35f587477c
|
|
7
|
+
data.tar.gz: 9f4a2bed38fa4498c4d1437596b244232ad4c56a9ca6d4db92558a5c14e182c9b8ad875fdb20439e8cc7fb5846b8cde829759137a46c5a31acf99b07ac343a76
|
checksums.yaml.gz.sig
ADDED
|
Binary file
|
data/bin/teapot
CHANGED
|
@@ -22,40 +22,4 @@
|
|
|
22
22
|
|
|
23
23
|
require_relative '../lib/teapot/command'
|
|
24
24
|
|
|
25
|
-
|
|
26
|
-
logger = command.logger
|
|
27
|
-
|
|
28
|
-
begin
|
|
29
|
-
command.invoke
|
|
30
|
-
rescue Teapot::IncompatibleTeapotError => error
|
|
31
|
-
logger.error(command, error) do
|
|
32
|
-
"Supported minimum version #{Teapot::MINIMUM_LOADER_VERSION.dump} to #{Teapot::LOADER_VERSION.dump}."
|
|
33
|
-
end
|
|
34
|
-
|
|
35
|
-
exit 1
|
|
36
|
-
rescue Build::Dependency::UnresolvedDependencyError => error
|
|
37
|
-
logger.error(command, error) do |buffer|
|
|
38
|
-
buffer.puts "Unresolved dependencies:"
|
|
39
|
-
|
|
40
|
-
error.chain.unresolved.each do |name, parent|
|
|
41
|
-
buffer.puts "#{parent} depends on #{name.inspect}"
|
|
42
|
-
|
|
43
|
-
conflicts = error.chain.conflicts[name]
|
|
44
|
-
|
|
45
|
-
if conflicts
|
|
46
|
-
conflicts.each do |conflict|
|
|
47
|
-
buffer.puts " - provided by #{conflict.name}"
|
|
48
|
-
end
|
|
49
|
-
end
|
|
50
|
-
end
|
|
51
|
-
|
|
52
|
-
buffer.puts "Cannot continue due to unresolved dependencies!".color(:red)
|
|
53
|
-
end
|
|
54
|
-
|
|
55
|
-
exit 2
|
|
56
|
-
rescue StandardError => error
|
|
57
|
-
logger.error(command, error)
|
|
58
|
-
|
|
59
|
-
exit 3
|
|
60
|
-
end
|
|
61
|
-
end
|
|
25
|
+
Teapot::Command::Top.call
|
data/lib/teapot/command/build.rb
CHANGED
|
@@ -38,7 +38,7 @@ module Teapot
|
|
|
38
38
|
many :targets, "Build these targets, or use them to help the dependency resolution process."
|
|
39
39
|
split :argv, "Arguments passed to child process(es) of build if any."
|
|
40
40
|
|
|
41
|
-
def
|
|
41
|
+
def call
|
|
42
42
|
context = parent.context
|
|
43
43
|
|
|
44
44
|
# The targets to build:
|
|
@@ -52,7 +52,6 @@ module Teapot
|
|
|
52
52
|
environment = context.configuration.environment
|
|
53
53
|
|
|
54
54
|
controller = ::Build::Controller.new(logger: parent.logger, limit: @options[:limit]) do |controller|
|
|
55
|
-
|
|
56
55
|
controller.add_chain(chain, self.argv, environment)
|
|
57
56
|
end
|
|
58
57
|
|
data/lib/teapot/command/clean.rb
CHANGED
data/lib/teapot/command/clone.rb
CHANGED
|
@@ -33,7 +33,7 @@ module Teapot
|
|
|
33
33
|
|
|
34
34
|
one :source, "The source repository to clone.", required: true
|
|
35
35
|
|
|
36
|
-
def
|
|
36
|
+
def call
|
|
37
37
|
logger = parent.logger
|
|
38
38
|
|
|
39
39
|
name = File.basename(::Build::URI[@source].path, ".git")
|
|
@@ -49,7 +49,7 @@ module Teapot
|
|
|
49
49
|
_repository = Rugged::Repository.clone_at(@source, root.to_s, credentials: self.method(:credentials))
|
|
50
50
|
|
|
51
51
|
# Fetch the initial packages:
|
|
52
|
-
Fetch[parent: nested].
|
|
52
|
+
Fetch[parent: nested].call
|
|
53
53
|
end
|
|
54
54
|
|
|
55
55
|
def credentials(url, username, types)
|
|
@@ -33,7 +33,7 @@ module Teapot
|
|
|
33
33
|
one :source, "The source repository to use for fetching packages, e.g. https://github.com/kurocha.", required: true
|
|
34
34
|
many :packages, "Any packages you'd like to include in the project.", default: ["generate-project"]
|
|
35
35
|
|
|
36
|
-
def
|
|
36
|
+
def call
|
|
37
37
|
logger = parent.logger
|
|
38
38
|
|
|
39
39
|
nested = parent['--root', parent.options[:root] || name.gsub(/\s+/, '-').downcase]
|
|
@@ -52,7 +52,7 @@ module Teapot
|
|
|
52
52
|
generate_project(root, @name, @source, @packages)
|
|
53
53
|
|
|
54
54
|
# Fetch the initial packages:
|
|
55
|
-
Fetch[parent: nested].
|
|
55
|
+
Fetch[parent: nested].call
|
|
56
56
|
|
|
57
57
|
context = nested.context
|
|
58
58
|
selection = context.select
|
|
@@ -60,10 +60,10 @@ module Teapot
|
|
|
60
60
|
|
|
61
61
|
if target_names.any?
|
|
62
62
|
# Generate the initial project files:
|
|
63
|
-
Build[*target_names, parent: nested].
|
|
63
|
+
Build[*target_names, parent: nested].call
|
|
64
64
|
|
|
65
65
|
# Fetch any additional packages:
|
|
66
|
-
Fetch[parent: nested].
|
|
66
|
+
Fetch[parent: nested].call
|
|
67
67
|
end
|
|
68
68
|
|
|
69
69
|
# Stage all files:
|
data/lib/teapot/command/fetch.rb
CHANGED
data/lib/teapot/command/list.rb
CHANGED
|
@@ -49,14 +49,14 @@ module Teapot
|
|
|
49
49
|
begin
|
|
50
50
|
script = context.load(package)
|
|
51
51
|
definitions = script.defined
|
|
52
|
-
|
|
52
|
+
|
|
53
53
|
definitions.each do |definition|
|
|
54
54
|
terminal.puts "\t#{definition}", style: :definition
|
|
55
|
-
|
|
55
|
+
|
|
56
56
|
definition.description.each_line do |line|
|
|
57
57
|
terminal.puts "\t\t#{line.chomp}", style: :description
|
|
58
58
|
end if definition.description
|
|
59
|
-
|
|
59
|
+
|
|
60
60
|
case definition
|
|
61
61
|
when Project
|
|
62
62
|
terminal.puts "\t\t- Summary: #{definition.summary}" if definition.summary
|
|
@@ -72,7 +72,7 @@ module Teapot
|
|
|
72
72
|
definition.dependencies.each do |dependency|
|
|
73
73
|
terminal.puts "\t\t- #{dependency}", style: :dependency
|
|
74
74
|
end
|
|
75
|
-
|
|
75
|
+
|
|
76
76
|
definition.provisions.each do |name, provision|
|
|
77
77
|
terminal.puts "\t\t- #{provision}", style: :provision
|
|
78
78
|
end
|
|
@@ -80,7 +80,7 @@ module Teapot
|
|
|
80
80
|
definition.packages.each do |package|
|
|
81
81
|
terminal.puts "\t\t- #{package}", style: :package
|
|
82
82
|
end
|
|
83
|
-
|
|
83
|
+
|
|
84
84
|
definition.imports.select(&:explicit).each do |import|
|
|
85
85
|
terminal.puts "\t\t- import #{import.name}", style: :import
|
|
86
86
|
end
|
data/lib/teapot/command.rb
CHANGED
|
@@ -39,10 +39,6 @@ require 'console'
|
|
|
39
39
|
|
|
40
40
|
module Teapot
|
|
41
41
|
module Command
|
|
42
|
-
def self.parse(*args)
|
|
43
|
-
Top.parse(*args)
|
|
44
|
-
end
|
|
45
|
-
|
|
46
42
|
class Top < Samovar::Command
|
|
47
43
|
self.description = "A decentralised package manager and build tool."
|
|
48
44
|
|
|
@@ -97,14 +93,44 @@ module Teapot
|
|
|
97
93
|
Context.new(root, configuration: configuration)
|
|
98
94
|
end
|
|
99
95
|
|
|
100
|
-
def
|
|
96
|
+
def call
|
|
101
97
|
if @options[:version]
|
|
102
98
|
puts "teapot v#{Teapot::VERSION}"
|
|
103
99
|
elsif @options[:help]
|
|
104
100
|
print_usage(output: $stdout)
|
|
105
101
|
else
|
|
106
|
-
@command.
|
|
102
|
+
@command.call
|
|
103
|
+
end
|
|
104
|
+
rescue Teapot::IncompatibleTeapotError => error
|
|
105
|
+
logger.error(command, error) do
|
|
106
|
+
"Supported minimum version #{Teapot::MINIMUM_LOADER_VERSION.dump} to #{Teapot::LOADER_VERSION.dump}."
|
|
107
|
+
end
|
|
108
|
+
|
|
109
|
+
raise
|
|
110
|
+
rescue ::Build::Dependency::UnresolvedDependencyError => error
|
|
111
|
+
logger.error(command, error) do |buffer|
|
|
112
|
+
buffer.puts "Unresolved dependencies:"
|
|
113
|
+
|
|
114
|
+
error.chain.unresolved.each do |name, parent|
|
|
115
|
+
buffer.puts "#{parent} depends on #{name.inspect}"
|
|
116
|
+
|
|
117
|
+
conflicts = error.chain.conflicts[name]
|
|
118
|
+
|
|
119
|
+
if conflicts
|
|
120
|
+
conflicts.each do |conflict|
|
|
121
|
+
buffer.puts " - provided by #{conflict.name}"
|
|
122
|
+
end
|
|
123
|
+
end
|
|
124
|
+
end
|
|
125
|
+
|
|
126
|
+
buffer.puts "Cannot continue due to unresolved dependencies!"
|
|
107
127
|
end
|
|
128
|
+
|
|
129
|
+
raise
|
|
130
|
+
rescue StandardError => error
|
|
131
|
+
logger.error(command, error)
|
|
132
|
+
|
|
133
|
+
raise
|
|
108
134
|
end
|
|
109
135
|
end
|
|
110
136
|
end
|
data/lib/teapot/loader.rb
CHANGED
|
@@ -97,8 +97,8 @@ module Teapot
|
|
|
97
97
|
|
|
98
98
|
alias required_version teapot_version
|
|
99
99
|
|
|
100
|
-
def define_project(*
|
|
101
|
-
project = Project.new(@context, @package, *
|
|
100
|
+
def define_project(*arguments, **options)
|
|
101
|
+
project = Project.new(@context, @package, *arguments, **options)
|
|
102
102
|
|
|
103
103
|
yield project
|
|
104
104
|
|
|
@@ -106,8 +106,8 @@ module Teapot
|
|
|
106
106
|
@defined << project
|
|
107
107
|
end
|
|
108
108
|
|
|
109
|
-
def define_target(*
|
|
110
|
-
target = Target.new(@context, @package, *
|
|
109
|
+
def define_target(*arguments, **options)
|
|
110
|
+
target = Target.new(@context, @package, *arguments, **options)
|
|
111
111
|
|
|
112
112
|
yield target
|
|
113
113
|
|
|
@@ -116,8 +116,8 @@ module Teapot
|
|
|
116
116
|
@defined << target
|
|
117
117
|
end
|
|
118
118
|
|
|
119
|
-
def define_configuration(*
|
|
120
|
-
configuration = Configuration.new(@context, @package, *
|
|
119
|
+
def define_configuration(*arguments, **options)
|
|
120
|
+
configuration = Configuration.new(@context, @package, *arguments, **options)
|
|
121
121
|
|
|
122
122
|
yield configuration
|
|
123
123
|
|
|
@@ -127,11 +127,11 @@ module Teapot
|
|
|
127
127
|
end
|
|
128
128
|
|
|
129
129
|
# Checks the host patterns and executes the block if they match.
|
|
130
|
-
def host(*
|
|
130
|
+
def host(*arguments, **options, &block)
|
|
131
131
|
name = @context.options[:host_platform] || RUBY_PLATFORM
|
|
132
132
|
|
|
133
133
|
if block_given?
|
|
134
|
-
if
|
|
134
|
+
if arguments.find{|argument| argument === name}
|
|
135
135
|
yield
|
|
136
136
|
end
|
|
137
137
|
else
|
data/lib/teapot/select.rb
CHANGED
|
@@ -42,7 +42,7 @@ module Teapot
|
|
|
42
42
|
class Select
|
|
43
43
|
def initialize(context, configuration, names = [])
|
|
44
44
|
@context = context
|
|
45
|
-
@configuration = Configuration.new(context, configuration.package, configuration.name, [], configuration.options)
|
|
45
|
+
@configuration = Configuration.new(context, configuration.package, configuration.name, [], **configuration.options)
|
|
46
46
|
|
|
47
47
|
@targets = {}
|
|
48
48
|
@configurations = {}
|
data/lib/teapot/version.rb
CHANGED
data.tar.gz.sig
ADDED
|
Binary file
|
metadata
CHANGED
|
@@ -1,99 +1,127 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: teapot
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.
|
|
4
|
+
version: 3.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Samuel Williams
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
|
-
cert_chain:
|
|
11
|
-
|
|
10
|
+
cert_chain:
|
|
11
|
+
- |
|
|
12
|
+
-----BEGIN CERTIFICATE-----
|
|
13
|
+
MIIEhDCCAuygAwIBAgIBATANBgkqhkiG9w0BAQsFADA3MTUwMwYDVQQDDCxzYW11
|
|
14
|
+
ZWwud2lsbGlhbXMvREM9b3Jpb250cmFuc2Zlci9EQz1jby9EQz1uejAeFw0yMTA4
|
|
15
|
+
MTYwNjMzNDRaFw0yMjA4MTYwNjMzNDRaMDcxNTAzBgNVBAMMLHNhbXVlbC53aWxs
|
|
16
|
+
aWFtcy9EQz1vcmlvbnRyYW5zZmVyL0RDPWNvL0RDPW56MIIBojANBgkqhkiG9w0B
|
|
17
|
+
AQEFAAOCAY8AMIIBigKCAYEAyXLSS/cw+fXJ5e7hi+U/TeChPWeYdwJojDsFY1xr
|
|
18
|
+
xvtqbTTL8gbLHz5LW3QD2nfwCv3qTlw0qI3Ie7a9VMJMbSvgVEGEfQirqIgJXWMj
|
|
19
|
+
eNMDgKsMJtC7u/43abRKx7TCURW3iWyR19NRngsJJmaR51yGGGm2Kfsr+JtKKLtL
|
|
20
|
+
L188Wm3f13KAx7QJU8qyuBnj1/gWem076hzdA7xi1DbrZrch9GCRz62xymJlrJHn
|
|
21
|
+
9iZEZ7AxrS7vokhMlzSr/XMUihx/8aFKtk+tMLClqxZSmBWIErWdicCGTULXCBNb
|
|
22
|
+
E/mljo4zEVKhlTWpJklMIhr55ZRrSarKFuW7en0+tpJrfsYiAmXMJNi4XAYJH7uL
|
|
23
|
+
rgJuJwSaa/dMz+VmUoo7VKtSfCoOI+6v5/z0sK3oT6sG6ZwyI47DBq2XqNC6tnAj
|
|
24
|
+
w+XmCywiTQrFzMMAvcA7rPI4F0nU1rZId51rOvvfxaONp+wgTi4P8owZLw0/j0m4
|
|
25
|
+
8C20DYi6EYx4AHDXiLpElWh3AgMBAAGjgZowgZcwCQYDVR0TBAIwADALBgNVHQ8E
|
|
26
|
+
BAMCBLAwHQYDVR0OBBYEFB6ZaeWKxQjGTI+pmz7cKRmMIywwMC4GA1UdEQQnMCWB
|
|
27
|
+
I3NhbXVlbC53aWxsaWFtc0BvcmlvbnRyYW5zZmVyLmNvLm56MC4GA1UdEgQnMCWB
|
|
28
|
+
I3NhbXVlbC53aWxsaWFtc0BvcmlvbnRyYW5zZmVyLmNvLm56MA0GCSqGSIb3DQEB
|
|
29
|
+
CwUAA4IBgQBVoM+pu3dpdUhZM1w051iw5GfiqclAr1Psypf16Tiod/ho//4oAu6T
|
|
30
|
+
9fj3DPX/acWV9P/FScvqo4Qgv6g4VWO5ZU7z2JmPoTXZtYMunRAmQPFL/gSUc6aK
|
|
31
|
+
vszMHIyhtyzRc6DnfW2AiVOjMBjaYv8xXZc9bduniRVPrLR4J7ozmGLh4o4uJp7w
|
|
32
|
+
x9KCFaR8Lvn/r0oJWJOqb/DMAYI83YeN2Dlt3jpwrsmsONrtC5S3gOUle5afSGos
|
|
33
|
+
bYt5ocnEpKSomR9ZtnCGljds/aeO1Xgpn2r9HHcjwnH346iNrnHmMlC7BtHUFPDg
|
|
34
|
+
Ts92S47PTOXzwPBDsrFiq3VLbRjHSwf8rpqybQBH9MfzxGGxTaETQYOd6b4e4Ag6
|
|
35
|
+
y92abGna0bmIEb4+Tx9rQ10Uijh1POzvr/VTH4bbIPy9FbKrRsIQ24qDbNJRtOpE
|
|
36
|
+
RAOsIl+HOBTb252nx1kIRN5hqQx272AJCbCjKx8egcUQKffFVVCI0nye09v5CK+a
|
|
37
|
+
HiLJ8VOFx6w=
|
|
38
|
+
-----END CERTIFICATE-----
|
|
39
|
+
date: 2022-05-23 00:00:00.000000000 Z
|
|
12
40
|
dependencies:
|
|
13
41
|
- !ruby/object:Gem::Dependency
|
|
14
|
-
name:
|
|
42
|
+
name: build
|
|
15
43
|
requirement: !ruby/object:Gem::Requirement
|
|
16
44
|
requirements:
|
|
17
45
|
- - "~>"
|
|
18
46
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '
|
|
47
|
+
version: '2.4'
|
|
20
48
|
type: :runtime
|
|
21
49
|
prerelease: false
|
|
22
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
51
|
requirements:
|
|
24
52
|
- - "~>"
|
|
25
53
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '
|
|
54
|
+
version: '2.4'
|
|
27
55
|
- !ruby/object:Gem::Dependency
|
|
28
|
-
name:
|
|
56
|
+
name: build-dependency
|
|
29
57
|
requirement: !ruby/object:Gem::Requirement
|
|
30
58
|
requirements:
|
|
31
59
|
- - "~>"
|
|
32
60
|
- !ruby/object:Gem::Version
|
|
33
|
-
version:
|
|
61
|
+
version: '1.4'
|
|
34
62
|
type: :runtime
|
|
35
63
|
prerelease: false
|
|
36
64
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
65
|
requirements:
|
|
38
66
|
- - "~>"
|
|
39
67
|
- !ruby/object:Gem::Version
|
|
40
|
-
version:
|
|
68
|
+
version: '1.4'
|
|
41
69
|
- !ruby/object:Gem::Dependency
|
|
42
|
-
name: build
|
|
70
|
+
name: build-environment
|
|
43
71
|
requirement: !ruby/object:Gem::Requirement
|
|
44
72
|
requirements:
|
|
45
73
|
- - "~>"
|
|
46
74
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: '
|
|
75
|
+
version: '1.10'
|
|
48
76
|
type: :runtime
|
|
49
77
|
prerelease: false
|
|
50
78
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
79
|
requirements:
|
|
52
80
|
- - "~>"
|
|
53
81
|
- !ruby/object:Gem::Version
|
|
54
|
-
version: '
|
|
82
|
+
version: '1.10'
|
|
55
83
|
- !ruby/object:Gem::Dependency
|
|
56
|
-
name: build-
|
|
84
|
+
name: build-files
|
|
57
85
|
requirement: !ruby/object:Gem::Requirement
|
|
58
86
|
requirements:
|
|
59
87
|
- - "~>"
|
|
60
88
|
- !ruby/object:Gem::Version
|
|
61
|
-
version: '1.
|
|
89
|
+
version: '1.8'
|
|
62
90
|
type: :runtime
|
|
63
91
|
prerelease: false
|
|
64
92
|
version_requirements: !ruby/object:Gem::Requirement
|
|
65
93
|
requirements:
|
|
66
94
|
- - "~>"
|
|
67
95
|
- !ruby/object:Gem::Version
|
|
68
|
-
version: '1.
|
|
96
|
+
version: '1.8'
|
|
69
97
|
- !ruby/object:Gem::Dependency
|
|
70
|
-
name: build-files
|
|
98
|
+
name: build-files-monitor
|
|
71
99
|
requirement: !ruby/object:Gem::Requirement
|
|
72
100
|
requirements:
|
|
73
101
|
- - "~>"
|
|
74
102
|
- !ruby/object:Gem::Version
|
|
75
|
-
version:
|
|
103
|
+
version: 0.2.0
|
|
76
104
|
type: :runtime
|
|
77
105
|
prerelease: false
|
|
78
106
|
version_requirements: !ruby/object:Gem::Requirement
|
|
79
107
|
requirements:
|
|
80
108
|
- - "~>"
|
|
81
109
|
- !ruby/object:Gem::Version
|
|
82
|
-
version:
|
|
110
|
+
version: 0.2.0
|
|
83
111
|
- !ruby/object:Gem::Dependency
|
|
84
|
-
name: build-
|
|
112
|
+
name: build-text
|
|
85
113
|
requirement: !ruby/object:Gem::Requirement
|
|
86
114
|
requirements:
|
|
87
115
|
- - "~>"
|
|
88
116
|
- !ruby/object:Gem::Version
|
|
89
|
-
version: '1.
|
|
117
|
+
version: '1.0'
|
|
90
118
|
type: :runtime
|
|
91
119
|
prerelease: false
|
|
92
120
|
version_requirements: !ruby/object:Gem::Requirement
|
|
93
121
|
requirements:
|
|
94
122
|
- - "~>"
|
|
95
123
|
- !ruby/object:Gem::Version
|
|
96
|
-
version: '1.
|
|
124
|
+
version: '1.0'
|
|
97
125
|
- !ruby/object:Gem::Dependency
|
|
98
126
|
name: build-uri
|
|
99
127
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -109,7 +137,7 @@ dependencies:
|
|
|
109
137
|
- !ruby/object:Gem::Version
|
|
110
138
|
version: '1.0'
|
|
111
139
|
- !ruby/object:Gem::Dependency
|
|
112
|
-
name:
|
|
140
|
+
name: console
|
|
113
141
|
requirement: !ruby/object:Gem::Requirement
|
|
114
142
|
requirements:
|
|
115
143
|
- - "~>"
|
|
@@ -123,7 +151,35 @@ dependencies:
|
|
|
123
151
|
- !ruby/object:Gem::Version
|
|
124
152
|
version: '1.0'
|
|
125
153
|
- !ruby/object:Gem::Dependency
|
|
126
|
-
name:
|
|
154
|
+
name: graphviz
|
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
|
156
|
+
requirements:
|
|
157
|
+
- - "~>"
|
|
158
|
+
- !ruby/object:Gem::Version
|
|
159
|
+
version: '1.0'
|
|
160
|
+
type: :runtime
|
|
161
|
+
prerelease: false
|
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
163
|
+
requirements:
|
|
164
|
+
- - "~>"
|
|
165
|
+
- !ruby/object:Gem::Version
|
|
166
|
+
version: '1.0'
|
|
167
|
+
- !ruby/object:Gem::Dependency
|
|
168
|
+
name: process-group
|
|
169
|
+
requirement: !ruby/object:Gem::Requirement
|
|
170
|
+
requirements:
|
|
171
|
+
- - "~>"
|
|
172
|
+
- !ruby/object:Gem::Version
|
|
173
|
+
version: '1.2'
|
|
174
|
+
type: :runtime
|
|
175
|
+
prerelease: false
|
|
176
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
177
|
+
requirements:
|
|
178
|
+
- - "~>"
|
|
179
|
+
- !ruby/object:Gem::Version
|
|
180
|
+
version: '1.2'
|
|
181
|
+
- !ruby/object:Gem::Dependency
|
|
182
|
+
name: rugged
|
|
127
183
|
requirement: !ruby/object:Gem::Requirement
|
|
128
184
|
requirements:
|
|
129
185
|
- - "~>"
|
|
@@ -151,7 +207,7 @@ dependencies:
|
|
|
151
207
|
- !ruby/object:Gem::Version
|
|
152
208
|
version: '2.0'
|
|
153
209
|
- !ruby/object:Gem::Dependency
|
|
154
|
-
name:
|
|
210
|
+
name: bundler
|
|
155
211
|
requirement: !ruby/object:Gem::Requirement
|
|
156
212
|
requirements:
|
|
157
213
|
- - ">="
|
|
@@ -165,7 +221,7 @@ dependencies:
|
|
|
165
221
|
- !ruby/object:Gem::Version
|
|
166
222
|
version: '0'
|
|
167
223
|
- !ruby/object:Gem::Dependency
|
|
168
|
-
name:
|
|
224
|
+
name: covered
|
|
169
225
|
requirement: !ruby/object:Gem::Requirement
|
|
170
226
|
requirements:
|
|
171
227
|
- - ">="
|
|
@@ -179,51 +235,40 @@ dependencies:
|
|
|
179
235
|
- !ruby/object:Gem::Version
|
|
180
236
|
version: '0'
|
|
181
237
|
- !ruby/object:Gem::Dependency
|
|
182
|
-
name:
|
|
238
|
+
name: rake
|
|
183
239
|
requirement: !ruby/object:Gem::Requirement
|
|
184
240
|
requirements:
|
|
185
|
-
- - "
|
|
241
|
+
- - ">="
|
|
186
242
|
- !ruby/object:Gem::Version
|
|
187
|
-
version: '
|
|
243
|
+
version: '0'
|
|
188
244
|
type: :development
|
|
189
245
|
prerelease: false
|
|
190
246
|
version_requirements: !ruby/object:Gem::Requirement
|
|
191
247
|
requirements:
|
|
192
|
-
- - "
|
|
248
|
+
- - ">="
|
|
193
249
|
- !ruby/object:Gem::Version
|
|
194
|
-
version: '
|
|
250
|
+
version: '0'
|
|
195
251
|
- !ruby/object:Gem::Dependency
|
|
196
|
-
name:
|
|
252
|
+
name: rspec
|
|
197
253
|
requirement: !ruby/object:Gem::Requirement
|
|
198
254
|
requirements:
|
|
199
|
-
- - "
|
|
255
|
+
- - "~>"
|
|
200
256
|
- !ruby/object:Gem::Version
|
|
201
|
-
version: '
|
|
257
|
+
version: '3.6'
|
|
202
258
|
type: :development
|
|
203
259
|
prerelease: false
|
|
204
260
|
version_requirements: !ruby/object:Gem::Requirement
|
|
205
261
|
requirements:
|
|
206
|
-
- - "
|
|
262
|
+
- - "~>"
|
|
207
263
|
- !ruby/object:Gem::Version
|
|
208
|
-
version: '
|
|
209
|
-
description:
|
|
210
|
-
package-based dependency management with a single configuration file\n\tper project.
|
|
211
|
-
It can fetch, list, build, visualise and create projects, and\n\thas been designed
|
|
212
|
-
from the ground up to support collaborative decentralised\n\tdevelopment.\n"
|
|
264
|
+
version: '3.6'
|
|
265
|
+
description:
|
|
213
266
|
email:
|
|
214
|
-
- samuel.williams@oriontransfer.co.nz
|
|
215
267
|
executables:
|
|
216
268
|
- teapot
|
|
217
269
|
extensions: []
|
|
218
270
|
extra_rdoc_files: []
|
|
219
271
|
files:
|
|
220
|
-
- ".gitignore"
|
|
221
|
-
- ".rspec"
|
|
222
|
-
- ".travis.yml"
|
|
223
|
-
- Gemfile
|
|
224
|
-
- Gemfile.local
|
|
225
|
-
- README.md
|
|
226
|
-
- Rakefile
|
|
227
272
|
- bin/teapot
|
|
228
273
|
- lib/teapot.rb
|
|
229
274
|
- lib/teapot/command.rb
|
|
@@ -245,29 +290,11 @@ files:
|
|
|
245
290
|
- lib/teapot/select.rb
|
|
246
291
|
- lib/teapot/target.rb
|
|
247
292
|
- lib/teapot/version.rb
|
|
248
|
-
- materials/kurocha.png
|
|
249
|
-
- materials/kurocha.svg
|
|
250
|
-
- materials/teapot.png
|
|
251
|
-
- materials/teapot.svg
|
|
252
|
-
- spec/spec_helper.rb
|
|
253
|
-
- spec/teapot/command/clone_spec.rb
|
|
254
|
-
- spec/teapot/command/fetch_spec.rb
|
|
255
|
-
- spec/teapot/command/fetch_spec/repositories/thing/README.md
|
|
256
|
-
- spec/teapot/command/fetch_spec/repositories/thing/teapot.rb
|
|
257
|
-
- spec/teapot/command/fetch_spec/test-project/teapot.rb
|
|
258
|
-
- spec/teapot/command_spec.rb
|
|
259
|
-
- spec/teapot/configuration_spec.rb
|
|
260
|
-
- spec/teapot/configuration_spec/teapot.rb
|
|
261
|
-
- spec/teapot/context_spec.rb
|
|
262
|
-
- spec/teapot/context_spec/teapot.rb
|
|
263
|
-
- spec/teapot/target_spec.rb
|
|
264
|
-
- spec/teapot/target_spec/teapot.rb
|
|
265
|
-
- teapot.gemspec
|
|
266
293
|
homepage: http://www.teapot.nz
|
|
267
294
|
licenses:
|
|
268
295
|
- MIT
|
|
269
296
|
metadata: {}
|
|
270
|
-
post_install_message:
|
|
297
|
+
post_install_message:
|
|
271
298
|
rdoc_options: []
|
|
272
299
|
require_paths:
|
|
273
300
|
- lib
|
|
@@ -282,21 +309,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
282
309
|
- !ruby/object:Gem::Version
|
|
283
310
|
version: '0'
|
|
284
311
|
requirements: []
|
|
285
|
-
rubygems_version: 3.
|
|
286
|
-
signing_key:
|
|
312
|
+
rubygems_version: 3.3.7
|
|
313
|
+
signing_key:
|
|
287
314
|
specification_version: 4
|
|
288
315
|
summary: Teapot is a tool for managing complex cross-platform builds.
|
|
289
|
-
test_files:
|
|
290
|
-
- spec/spec_helper.rb
|
|
291
|
-
- spec/teapot/command/clone_spec.rb
|
|
292
|
-
- spec/teapot/command/fetch_spec.rb
|
|
293
|
-
- spec/teapot/command/fetch_spec/repositories/thing/README.md
|
|
294
|
-
- spec/teapot/command/fetch_spec/repositories/thing/teapot.rb
|
|
295
|
-
- spec/teapot/command/fetch_spec/test-project/teapot.rb
|
|
296
|
-
- spec/teapot/command_spec.rb
|
|
297
|
-
- spec/teapot/configuration_spec.rb
|
|
298
|
-
- spec/teapot/configuration_spec/teapot.rb
|
|
299
|
-
- spec/teapot/context_spec.rb
|
|
300
|
-
- spec/teapot/context_spec/teapot.rb
|
|
301
|
-
- spec/teapot/target_spec.rb
|
|
302
|
-
- spec/teapot/target_spec/teapot.rb
|
|
316
|
+
test_files: []
|
metadata.gz.sig
ADDED
|
Binary file
|
data/.gitignore
DELETED
data/.rspec
DELETED