startapp 0.1.6
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 +7 -0
- data/COPYRIGHT +1 -0
- data/LICENSE +11 -0
- data/README.md +95 -0
- data/Rakefile +6 -0
- data/autocomplete/rhc_bash +1672 -0
- data/bin/app +37 -0
- data/conf/express.conf +8 -0
- data/features/assets/deploy.tar.gz +0 -0
- data/features/core_feature.rb +191 -0
- data/features/deployments_feature.rb +129 -0
- data/features/domains_feature.rb +58 -0
- data/features/keys_feature.rb +37 -0
- data/features/members_feature.rb +166 -0
- data/lib/rhc/auth/basic.rb +64 -0
- data/lib/rhc/auth/token.rb +102 -0
- data/lib/rhc/auth/token_store.rb +53 -0
- data/lib/rhc/auth.rb +5 -0
- data/lib/rhc/autocomplete.rb +66 -0
- data/lib/rhc/autocomplete_templates/bash.erb +39 -0
- data/lib/rhc/cartridge_helpers.rb +118 -0
- data/lib/rhc/cli.rb +40 -0
- data/lib/rhc/command_runner.rb +185 -0
- data/lib/rhc/commands/account.rb +25 -0
- data/lib/rhc/commands/alias.rb +124 -0
- data/lib/rhc/commands/app.rb +726 -0
- data/lib/rhc/commands/apps.rb +20 -0
- data/lib/rhc/commands/authorization.rb +115 -0
- data/lib/rhc/commands/base.rb +174 -0
- data/lib/rhc/commands/cartridge.rb +329 -0
- data/lib/rhc/commands/clone.rb +66 -0
- data/lib/rhc/commands/configure.rb +20 -0
- data/lib/rhc/commands/create.rb +100 -0
- data/lib/rhc/commands/delete.rb +19 -0
- data/lib/rhc/commands/deploy.rb +32 -0
- data/lib/rhc/commands/deployment.rb +82 -0
- data/lib/rhc/commands/domain.rb +172 -0
- data/lib/rhc/commands/env.rb +142 -0
- data/lib/rhc/commands/force_stop.rb +17 -0
- data/lib/rhc/commands/git_clone.rb +34 -0
- data/lib/rhc/commands/logout.rb +51 -0
- data/lib/rhc/commands/logs.rb +21 -0
- data/lib/rhc/commands/member.rb +148 -0
- data/lib/rhc/commands/port_forward.rb +197 -0
- data/lib/rhc/commands/reload.rb +17 -0
- data/lib/rhc/commands/restart.rb +17 -0
- data/lib/rhc/commands/scp.rb +54 -0
- data/lib/rhc/commands/server.rb +40 -0
- data/lib/rhc/commands/setup.rb +60 -0
- data/lib/rhc/commands/show.rb +43 -0
- data/lib/rhc/commands/snapshot.rb +137 -0
- data/lib/rhc/commands/ssh.rb +51 -0
- data/lib/rhc/commands/sshkey.rb +97 -0
- data/lib/rhc/commands/start.rb +17 -0
- data/lib/rhc/commands/stop.rb +17 -0
- data/lib/rhc/commands/tail.rb +47 -0
- data/lib/rhc/commands/threaddump.rb +14 -0
- data/lib/rhc/commands/tidy.rb +17 -0
- data/lib/rhc/commands.rb +396 -0
- data/lib/rhc/config.rb +321 -0
- data/lib/rhc/context_helper.rb +121 -0
- data/lib/rhc/core_ext.rb +202 -0
- data/lib/rhc/coverage_helper.rb +33 -0
- data/lib/rhc/deployment_helpers.rb +111 -0
- data/lib/rhc/exceptions.rb +256 -0
- data/lib/rhc/git_helpers.rb +106 -0
- data/lib/rhc/help_formatter.rb +55 -0
- data/lib/rhc/helpers.rb +481 -0
- data/lib/rhc/highline_extensions.rb +479 -0
- data/lib/rhc/json.rb +51 -0
- data/lib/rhc/output_helpers.rb +260 -0
- data/lib/rhc/rest/activation.rb +11 -0
- data/lib/rhc/rest/alias.rb +42 -0
- data/lib/rhc/rest/api.rb +87 -0
- data/lib/rhc/rest/application.rb +348 -0
- data/lib/rhc/rest/attributes.rb +36 -0
- data/lib/rhc/rest/authorization.rb +8 -0
- data/lib/rhc/rest/base.rb +79 -0
- data/lib/rhc/rest/cartridge.rb +162 -0
- data/lib/rhc/rest/client.rb +650 -0
- data/lib/rhc/rest/deployment.rb +18 -0
- data/lib/rhc/rest/domain.rb +98 -0
- data/lib/rhc/rest/environment_variable.rb +15 -0
- data/lib/rhc/rest/gear_group.rb +16 -0
- data/lib/rhc/rest/httpclient.rb +145 -0
- data/lib/rhc/rest/key.rb +44 -0
- data/lib/rhc/rest/membership.rb +105 -0
- data/lib/rhc/rest/mock.rb +1042 -0
- data/lib/rhc/rest/user.rb +32 -0
- data/lib/rhc/rest.rb +148 -0
- data/lib/rhc/scp_helpers.rb +27 -0
- data/lib/rhc/ssh_helpers.rb +380 -0
- data/lib/rhc/tar_gz.rb +51 -0
- data/lib/rhc/usage_templates/command_help.erb +51 -0
- data/lib/rhc/usage_templates/command_syntax_help.erb +11 -0
- data/lib/rhc/usage_templates/help.erb +61 -0
- data/lib/rhc/usage_templates/missing_help.erb +1 -0
- data/lib/rhc/usage_templates/options_help.erb +12 -0
- data/lib/rhc/vendor/okjson.rb +600 -0
- data/lib/rhc/vendor/parseconfig.rb +178 -0
- data/lib/rhc/vendor/sshkey.rb +253 -0
- data/lib/rhc/vendor/zliby.rb +628 -0
- data/lib/rhc/version.rb +5 -0
- data/lib/rhc/wizard.rb +637 -0
- data/lib/rhc.rb +34 -0
- data/spec/coverage_helper.rb +82 -0
- data/spec/direct_execution_helper.rb +339 -0
- data/spec/keys/example.pem +23 -0
- data/spec/keys/example_private.pem +27 -0
- data/spec/keys/server.pem +19 -0
- data/spec/rest_spec_helper.rb +31 -0
- data/spec/rhc/assets/cert.crt +22 -0
- data/spec/rhc/assets/cert_key_rsa +27 -0
- data/spec/rhc/assets/empty.txt +0 -0
- data/spec/rhc/assets/env_vars.txt +7 -0
- data/spec/rhc/assets/env_vars_2.txt +1 -0
- data/spec/rhc/assets/foo.txt +1 -0
- data/spec/rhc/assets/targz_corrupted.tar.gz +1 -0
- data/spec/rhc/assets/targz_sample.tar.gz +0 -0
- data/spec/rhc/auth_spec.rb +442 -0
- data/spec/rhc/cli_spec.rb +186 -0
- data/spec/rhc/command_spec.rb +435 -0
- data/spec/rhc/commands/account_spec.rb +42 -0
- data/spec/rhc/commands/alias_spec.rb +333 -0
- data/spec/rhc/commands/app_spec.rb +777 -0
- data/spec/rhc/commands/apps_spec.rb +39 -0
- data/spec/rhc/commands/authorization_spec.rb +157 -0
- data/spec/rhc/commands/cartridge_spec.rb +665 -0
- data/spec/rhc/commands/clone_spec.rb +41 -0
- data/spec/rhc/commands/deployment_spec.rb +327 -0
- data/spec/rhc/commands/domain_spec.rb +401 -0
- data/spec/rhc/commands/env_spec.rb +493 -0
- data/spec/rhc/commands/git_clone_spec.rb +102 -0
- data/spec/rhc/commands/logout_spec.rb +86 -0
- data/spec/rhc/commands/member_spec.rb +247 -0
- data/spec/rhc/commands/port_forward_spec.rb +217 -0
- data/spec/rhc/commands/scp_spec.rb +77 -0
- data/spec/rhc/commands/server_spec.rb +69 -0
- data/spec/rhc/commands/setup_spec.rb +118 -0
- data/spec/rhc/commands/snapshot_spec.rb +179 -0
- data/spec/rhc/commands/ssh_spec.rb +163 -0
- data/spec/rhc/commands/sshkey_spec.rb +188 -0
- data/spec/rhc/commands/tail_spec.rb +81 -0
- data/spec/rhc/commands/threaddump_spec.rb +84 -0
- data/spec/rhc/config_spec.rb +407 -0
- data/spec/rhc/helpers_spec.rb +531 -0
- data/spec/rhc/highline_extensions_spec.rb +314 -0
- data/spec/rhc/json_spec.rb +30 -0
- data/spec/rhc/rest_application_spec.rb +258 -0
- data/spec/rhc/rest_client_spec.rb +752 -0
- data/spec/rhc/rest_spec.rb +740 -0
- data/spec/rhc/targz_spec.rb +55 -0
- data/spec/rhc/wizard_spec.rb +756 -0
- data/spec/spec_helper.rb +575 -0
- data/spec/wizard_spec_helper.rb +330 -0
- metadata +469 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: e08170256875b7e71af93782eeea478c264280b5
|
|
4
|
+
data.tar.gz: f8167e551f51def560dcd7974d7e1348ad0d739f
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 8c936730218305969b2010692681b6aafcec5cb5d04f9a59bccd9656767312180751e0fea0e44aa05a3bbbf54537d8bc3db3be282f748c69a6ce9b70b3535e7a
|
|
7
|
+
data.tar.gz: 29e7bdff1713a5ff9bcd0d098ff450232f6addd83243c98d99cbee664c9b78c94d391a03b9d18e6b7b11ebffd579385b71dd8ca5582c3399d8a98e2d150e60a6
|
data/COPYRIGHT
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Copyright 2012 Red Hat, Inc. and/or its affiliates.
|
data/LICENSE
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
2
|
+
you may not use this file except in compliance with the License.
|
|
3
|
+
You may obtain a copy of the License at
|
|
4
|
+
|
|
5
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
6
|
+
|
|
7
|
+
Unless required by applicable law or agreed to in writing, software
|
|
8
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
9
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
10
|
+
See the License for the specific language governing permissions and
|
|
11
|
+
limitations under the License.
|
data/README.md
ADDED
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
# OpenShift Command Line Tools (RHC) [](http://travis-ci.org/openshift/rhc)
|
|
2
|
+
|
|
3
|
+
The OpenShift command line tools allow you to manage your OpenShift
|
|
4
|
+
applications from the command line. The [Getting Started
|
|
5
|
+
guide](https://openshift.redhat.com/app/getting_started) has additional
|
|
6
|
+
info on installing the tool on each supported operating system.
|
|
7
|
+
|
|
8
|
+
Please stop by #openshift on irc.freenode.net if you have any questions or
|
|
9
|
+
comments. For more information about OpenShift, visit https://openshift.redhat.com
|
|
10
|
+
or the OpenShift forum
|
|
11
|
+
https://openshift.redhat.com/community/forums/openshift.
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## Using RHC to create an application
|
|
15
|
+
|
|
16
|
+
DEPENDENCIES:
|
|
17
|
+
|
|
18
|
+
* git
|
|
19
|
+
* openssh-clients
|
|
20
|
+
* ruby (1.8.7 or later)
|
|
21
|
+
* rubygems
|
|
22
|
+
|
|
23
|
+
Step 1: Run the setup command to configure your system:
|
|
24
|
+
|
|
25
|
+
$ rhc setup
|
|
26
|
+
|
|
27
|
+
Follow the instructions in setup to set your SSH keys and create a domain. The name you choose for your domain will form part of your application's public URL.
|
|
28
|
+
|
|
29
|
+
Step 2: Create an OpenShift application:
|
|
30
|
+
|
|
31
|
+
$ rhc app create -a appname -r /path/to/new/git/repo -t <framework Ex: php-5.3>
|
|
32
|
+
|
|
33
|
+
Once that's complete, follow the directions printed at the end of running
|
|
34
|
+
rhc app create.
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
## Making changes to your application
|
|
38
|
+
|
|
39
|
+
Once your site is created, updating it is as simple as making changes to your
|
|
40
|
+
git repo. Commit them, then push. For example:
|
|
41
|
+
|
|
42
|
+
$ edit index.php
|
|
43
|
+
$ git commit -a -m "what I did"
|
|
44
|
+
$ git push
|
|
45
|
+
|
|
46
|
+
Then just reload your web page to see the changes.
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
## OS X Notes:
|
|
50
|
+
|
|
51
|
+
git:
|
|
52
|
+
OS X 10.6 comes w/ ssh and ruby, but not with git, unless you have
|
|
53
|
+
Xcode 4.0.x installed (as a developer you should have Xcode anyway).
|
|
54
|
+
Xcode, however, is not free (unless you are a registered Apple
|
|
55
|
+
Developer) and costs around $5 from the Apple App Store.
|
|
56
|
+
|
|
57
|
+
If you do not have Xcode, you can obtain a pre-packaged version
|
|
58
|
+
of git from:
|
|
59
|
+
|
|
60
|
+
http://code.google.com/p/git-osx-installer/
|
|
61
|
+
|
|
62
|
+
Installing git from MacPorts/HomeBrew/Fink/etc requires Xcode.
|
|
63
|
+
|
|
64
|
+
Now obtain the client code, either via 'git clone' as above
|
|
65
|
+
or via the rhc gem.
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
## Developing / Contributing
|
|
69
|
+
We expect code contributions to follow these standards:
|
|
70
|
+
|
|
71
|
+
1. Ensure code matches the [GitHub Ruby styleguide](https://github.com/styleguide/ruby), except where the file establishes a different standard.
|
|
72
|
+
2. We use RSpec for functional testing and Cucumber for our high level
|
|
73
|
+
integration tests. Specs are in 'spec/' and can be run with <code>bundle
|
|
74
|
+
exec rake spec</code>. Features are in 'features/' and can be run with
|
|
75
|
+
<code>bundle exec rake features</code> (although these tests runs
|
|
76
|
+
against the gem installed locally so you will need to gem install
|
|
77
|
+
first). See [README.md](https://github.com/openshift/rhc/blob/master/features/README.md) in the features dir for more info.
|
|
78
|
+
3. We maintain 100% line coverage of all newly added code via spec
|
|
79
|
+
testing. The build will fail if new code is added and it does not
|
|
80
|
+
have full line coverage. Some old code is currently excluded until it
|
|
81
|
+
can be refactored. Run <code>bundle exec rake spec</code> on Ruby 1.9+
|
|
82
|
+
to see your code coverage level.
|
|
83
|
+
4. When writting a new Command please follow [ADDING_COMMANDS.md](https://github.com/openshift/rhc/blob/master/lib/rhc/commands/ADDING_COMMANDS.md)
|
|
84
|
+
|
|
85
|
+
Once you've made your changes:
|
|
86
|
+
|
|
87
|
+
1. [Fork](http://help.github.com/forking/) the code
|
|
88
|
+
2. Create a topic branch - `git checkout -b my_branch`
|
|
89
|
+
3. Push to your branch - `git push origin my_branch`
|
|
90
|
+
4. Create a [Pull Request](http://help.github.com/pull-requests/) from your branch
|
|
91
|
+
5. That's it!
|
|
92
|
+
|
|
93
|
+
If you use vim, we've included a .vimrc in the root of this project.
|
|
94
|
+
In order to use it, install https://github.com/MarcWeber/vim-addon-local-vimrc
|
|
95
|
+
|