marathon_deploy 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,28 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'marathon_deploy/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "marathon_deploy"
8
+ spec.version = MarathonDeploy::VERSION
9
+ spec.authors = ["Jonathan Colby"]
10
+ spec.email = ["jcolby@team.mobile.de"]
11
+ spec.summary = %q{Mesos/Marathon deployment tool.}
12
+ spec.description = %q{Pushes a yaml or json file to the Marathon API.}
13
+ spec.homepage = "https://github.com/joncolby/marathon_deploy"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.files << ["bin/deploy.rb"]
18
+ spec.files << ["bin/json2yaml.rb"]
19
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
20
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
21
+ spec.require_paths = ["lib"]
22
+
23
+ spec.add_dependency "logger"
24
+ spec.add_dependency "json"
25
+
26
+ spec.add_development_dependency "bundler", "~> 1.7"
27
+ spec.add_development_dependency "rake", "~> 10.0"
28
+ end
metadata ADDED
@@ -0,0 +1,136 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: marathon_deploy
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Jonathan Colby
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-05-21 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: logger
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
+ - !ruby/object:Gem::Dependency
28
+ name: json
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: bundler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '1.7'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.7'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '10.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '10.0'
69
+ description: Pushes a yaml or json file to the Marathon API.
70
+ email:
71
+ - jcolby@team.mobile.de
72
+ executables:
73
+ - deploy
74
+ - deploy.rb
75
+ - json2yaml.rb
76
+ extensions: []
77
+ extra_rdoc_files: []
78
+ files:
79
+ - ".gitignore"
80
+ - Gemfile
81
+ - LICENSE.txt
82
+ - NOTES
83
+ - README.md
84
+ - Rakefile
85
+ - TODO
86
+ - bin/deploy
87
+ - bin/deploy.rb
88
+ - bin/json2yaml.rb
89
+ - examples/deploy.json
90
+ - examples/deploy.yaml
91
+ - examples/jondeploy.yaml
92
+ - examples/jondeploy2.yaml
93
+ - examples/nohealthchecks.yaml
94
+ - examples/public-search-germany-webapp.pre.json
95
+ - examples/run.sh
96
+ - examples/testout.json
97
+ - examples/testout.yaml
98
+ - input.txt
99
+ - lib/marathon_deploy.rb
100
+ - lib/marathon_deploy/application.rb
101
+ - lib/marathon_deploy/deployment.rb
102
+ - lib/marathon_deploy/environment.rb
103
+ - lib/marathon_deploy/error.rb
104
+ - lib/marathon_deploy/http_util.rb
105
+ - lib/marathon_deploy/macro.rb
106
+ - lib/marathon_deploy/marathon_client.rb
107
+ - lib/marathon_deploy/marathon_defaults.rb
108
+ - lib/marathon_deploy/utils.rb
109
+ - lib/marathon_deploy/version.rb
110
+ - lib/marathon_deploy/yaml_json.rb
111
+ - marathon_deploy.gemspec
112
+ homepage: https://github.com/joncolby/marathon_deploy
113
+ licenses:
114
+ - MIT
115
+ metadata: {}
116
+ post_install_message:
117
+ rdoc_options: []
118
+ require_paths:
119
+ - lib
120
+ required_ruby_version: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ required_rubygems_version: !ruby/object:Gem::Requirement
126
+ requirements:
127
+ - - ">="
128
+ - !ruby/object:Gem::Version
129
+ version: '0'
130
+ requirements: []
131
+ rubyforge_project:
132
+ rubygems_version: 2.4.6
133
+ signing_key:
134
+ specification_version: 4
135
+ summary: Mesos/Marathon deployment tool.
136
+ test_files: []