teapot 3.2.1 → 3.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data/bin/teapot +1 -37
  4. data/lib/teapot/command/build.rb +1 -2
  5. data/lib/teapot/command/clean.rb +1 -1
  6. data/lib/teapot/command/clone.rb +2 -2
  7. data/lib/teapot/command/create.rb +4 -4
  8. data/lib/teapot/command/fetch.rb +4 -4
  9. data/lib/teapot/command/list.rb +5 -5
  10. data/lib/teapot/command/selection.rb +1 -1
  11. data/lib/teapot/command.rb +32 -6
  12. data/lib/teapot/definition.rb +4 -4
  13. data/lib/teapot/loader.rb +8 -8
  14. data/lib/teapot/select.rb +1 -1
  15. data/lib/teapot/version.rb +1 -1
  16. data.tar.gz.sig +0 -0
  17. metadata +97 -83
  18. metadata.gz.sig +0 -0
  19. data/.gitignore +0 -18
  20. data/.rspec +0 -4
  21. data/.travis.yml +0 -33
  22. data/Gemfile +0 -4
  23. data/Gemfile.local +0 -23
  24. data/README.md +0 -171
  25. data/Rakefile +0 -19
  26. data/materials/kurocha.png +0 -0
  27. data/materials/kurocha.svg +0 -101
  28. data/materials/teapot.png +0 -0
  29. data/materials/teapot.svg +0 -82
  30. data/spec/spec_helper.rb +0 -11
  31. data/spec/teapot/command/clone_spec.rb +0 -57
  32. data/spec/teapot/command/fetch_spec/repositories/thing/README.md +0 -3
  33. data/spec/teapot/command/fetch_spec/repositories/thing/teapot.rb +0 -2
  34. data/spec/teapot/command/fetch_spec/test-project/teapot.rb +0 -8
  35. data/spec/teapot/command/fetch_spec.rb +0 -107
  36. data/spec/teapot/command_spec.rb +0 -59
  37. data/spec/teapot/configuration_spec/teapot.rb +0 -13
  38. data/spec/teapot/configuration_spec.rb +0 -33
  39. data/spec/teapot/context_spec/teapot.rb +0 -40
  40. data/spec/teapot/context_spec.rb +0 -61
  41. data/spec/teapot/target_spec/teapot.rb +0 -52
  42. data/spec/teapot/target_spec.rb +0 -55
  43. data/teapot.gemspec +0 -44
@@ -1,55 +0,0 @@
1
- # Copyright, 2012, by Samuel G. D. Williams. <http://www.codeotaku.com>
2
- #
3
- # Permission is hereby granted, free of charge, to any person obtaining a copy
4
- # of this software and associated documentation files (the "Software"), to deal
5
- # in the Software without restriction, including without limitation the rights
6
- # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
- # copies of the Software, and to permit persons to whom the Software is
8
- # furnished to do so, subject to the following conditions:
9
- #
10
- # The above copyright notice and this permission notice shall be included in
11
- # all copies or substantial portions of the Software.
12
- #
13
- # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
- # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
- # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
- # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
- # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
- # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
- # THE SOFTWARE.
20
-
21
- require 'teapot/context'
22
-
23
- RSpec.describe Teapot::Target do
24
- let(:root) {Build::Files::Path.new(__dir__) + "target_spec"}
25
-
26
- it "should generate correct chain for configuration" do
27
- context = Teapot::Context.new(root)
28
- selection = context.select(["Test/TargetSpec"])
29
-
30
- target = selection.targets['target_spec']
31
- expect(target).to_not be == nil
32
-
33
- chain = selection.chain
34
- expect(chain.providers.size).to be == 4
35
- expect(chain.providers).to include target
36
-
37
- expect(chain.ordered.size).to be == 3
38
- expect(chain.ordered[0].name).to be == 'Variant/debug'
39
- expect(chain.ordered[1].name).to be == 'Platform/generic'
40
- expect(chain.ordered[2].name).to be == 'Test/TargetSpec'
41
- expect(chain.ordered[2].provider).to be == target
42
- end
43
-
44
- it "should match wildcard packages" do
45
- context = Teapot::Context.new(root)
46
- selection = context.select(["Test/*"])
47
-
48
- target = selection.targets['target_spec']
49
- expect(target).to_not be == nil
50
-
51
- chain = selection.chain
52
- expect(chain.providers.size).to be == 4
53
- expect(chain.providers).to include target
54
- end
55
- end
data/teapot.gemspec DELETED
@@ -1,44 +0,0 @@
1
-
2
- require_relative 'lib/teapot/version'
3
-
4
- Gem::Specification.new do |spec|
5
- spec.name = "teapot"
6
- spec.version = Teapot::VERSION
7
- spec.authors = ["Samuel Williams"]
8
- spec.email = ["samuel.williams@oriontransfer.co.nz"]
9
- spec.description = <<-EOF
10
- Teapot is a tool for managing complex cross-platform builds. It provides
11
- advanced package-based dependency management with a single configuration file
12
- per project. It can fetch, list, build, visualise and create projects, and
13
- has been designed from the ground up to support collaborative decentralised
14
- development.
15
- EOF
16
- spec.summary = %q{Teapot is a tool for managing complex cross-platform builds.}
17
- spec.homepage = "http://www.teapot.nz"
18
- spec.license = "MIT"
19
-
20
- spec.files = `git ls-files`.split($/)
21
- spec.executables = spec.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
22
- spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
23
- spec.require_paths = ["lib"]
24
-
25
- spec.required_ruby_version = '>= 2.1.0'
26
-
27
- spec.add_dependency "graphviz", "~> 1.0"
28
- spec.add_dependency "rugged", "~> 0.27.0"
29
-
30
- spec.add_dependency "build", "~> 2.4"
31
- spec.add_dependency "build-environment", "~> 1.10"
32
- spec.add_dependency "build-files", "~> 1.4"
33
- spec.add_dependency "build-dependency", "~> 1.4"
34
- spec.add_dependency "build-uri", "~> 1.0"
35
- spec.add_dependency "build-text", "~> 1.0"
36
-
37
- spec.add_dependency "console", "~> 1.0"
38
- spec.add_dependency "samovar", "~> 2.0"
39
-
40
- spec.add_development_dependency "covered"
41
- spec.add_development_dependency "bundler"
42
- spec.add_development_dependency "rspec", "~> 3.6"
43
- spec.add_development_dependency "rake"
44
- end