astroboa-cli 0.3.0
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.
- data/.gitignore +5 -0
- data/CHANGELOG.rdoc +1 -0
- data/COPYING +675 -0
- data/COPYING.LESSER +166 -0
- data/Gemfile +4 -0
- data/LICENSE +47 -0
- data/README.md +185 -0
- data/Rakefile +1 -0
- data/astroboa-cli.gemspec +32 -0
- data/bin/astroboa-cli +18 -0
- data/lib/astroboa-cli/cli.rb +16 -0
- data/lib/astroboa-cli/command/base.rb +173 -0
- data/lib/astroboa-cli/command/help.rb +95 -0
- data/lib/astroboa-cli/command/model.rb +181 -0
- data/lib/astroboa-cli/command/repository.rb +443 -0
- data/lib/astroboa-cli/command/server.rb +651 -0
- data/lib/astroboa-cli/command/service.rb +224 -0
- data/lib/astroboa-cli/command/version.rb +21 -0
- data/lib/astroboa-cli/command.rb +158 -0
- data/lib/astroboa-cli/util.rb +594 -0
- data/lib/astroboa-cli/version.rb +3 -0
- data/lib/astroboa-cli.rb +9 -0
- data/test/features/astroboa-cli.feature +4 -0
- metadata +139 -0
data/lib/astroboa-cli.rb
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# encoding: UTF-8
|
|
2
|
+
|
|
3
|
+
# Astroboa CLI has been inspired by the design of Heroku client
|
|
4
|
+
# and contains some adapted code (mainly in the base.rb and command.rb files)
|
|
5
|
+
# The required copyright notices have been included in the LICENSE file as well as in those files
|
|
6
|
+
# that contain adapted code from Heroku client
|
|
7
|
+
|
|
8
|
+
module AstroboaCLI; end
|
|
9
|
+
|
metadata
ADDED
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: astroboa-cli
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.3.0
|
|
5
|
+
prerelease:
|
|
6
|
+
platform: ruby
|
|
7
|
+
authors:
|
|
8
|
+
- BETACONCEPT
|
|
9
|
+
- Gregory Chomatas
|
|
10
|
+
autorequire:
|
|
11
|
+
bindir: bin
|
|
12
|
+
cert_chain: []
|
|
13
|
+
date: 2012-09-18 00:00:00.000000000 Z
|
|
14
|
+
dependencies:
|
|
15
|
+
- !ruby/object:Gem::Dependency
|
|
16
|
+
name: progressbar
|
|
17
|
+
requirement: !ruby/object:Gem::Requirement
|
|
18
|
+
none: false
|
|
19
|
+
requirements:
|
|
20
|
+
- - ! '>='
|
|
21
|
+
- !ruby/object:Gem::Version
|
|
22
|
+
version: '0'
|
|
23
|
+
type: :runtime
|
|
24
|
+
prerelease: false
|
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
26
|
+
none: false
|
|
27
|
+
requirements:
|
|
28
|
+
- - ! '>='
|
|
29
|
+
- !ruby/object:Gem::Version
|
|
30
|
+
version: '0'
|
|
31
|
+
- !ruby/object:Gem::Dependency
|
|
32
|
+
name: rubyzip
|
|
33
|
+
requirement: !ruby/object:Gem::Requirement
|
|
34
|
+
none: false
|
|
35
|
+
requirements:
|
|
36
|
+
- - ! '>='
|
|
37
|
+
- !ruby/object:Gem::Version
|
|
38
|
+
version: '0'
|
|
39
|
+
type: :runtime
|
|
40
|
+
prerelease: false
|
|
41
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
42
|
+
none: false
|
|
43
|
+
requirements:
|
|
44
|
+
- - ! '>='
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '0'
|
|
47
|
+
- !ruby/object:Gem::Dependency
|
|
48
|
+
name: erubis
|
|
49
|
+
requirement: !ruby/object:Gem::Requirement
|
|
50
|
+
none: false
|
|
51
|
+
requirements:
|
|
52
|
+
- - ! '>='
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '0'
|
|
55
|
+
type: :runtime
|
|
56
|
+
prerelease: false
|
|
57
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
58
|
+
none: false
|
|
59
|
+
requirements:
|
|
60
|
+
- - ! '>='
|
|
61
|
+
- !ruby/object:Gem::Version
|
|
62
|
+
version: '0'
|
|
63
|
+
- !ruby/object:Gem::Dependency
|
|
64
|
+
name: nokogiri
|
|
65
|
+
requirement: !ruby/object:Gem::Requirement
|
|
66
|
+
none: false
|
|
67
|
+
requirements:
|
|
68
|
+
- - ! '>='
|
|
69
|
+
- !ruby/object:Gem::Version
|
|
70
|
+
version: 1.5.5
|
|
71
|
+
type: :runtime
|
|
72
|
+
prerelease: false
|
|
73
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
74
|
+
none: false
|
|
75
|
+
requirements:
|
|
76
|
+
- - ! '>='
|
|
77
|
+
- !ruby/object:Gem::Version
|
|
78
|
+
version: 1.5.5
|
|
79
|
+
description: astroboa-cli provides commands for installing astroboa platform, creating
|
|
80
|
+
repositories, taking backups, deploying applications to astroboa, etc.
|
|
81
|
+
email:
|
|
82
|
+
- support@betaconcept.com
|
|
83
|
+
executables:
|
|
84
|
+
- astroboa-cli
|
|
85
|
+
extensions: []
|
|
86
|
+
extra_rdoc_files: []
|
|
87
|
+
files:
|
|
88
|
+
- .gitignore
|
|
89
|
+
- CHANGELOG.rdoc
|
|
90
|
+
- COPYING
|
|
91
|
+
- COPYING.LESSER
|
|
92
|
+
- Gemfile
|
|
93
|
+
- LICENSE
|
|
94
|
+
- README.md
|
|
95
|
+
- Rakefile
|
|
96
|
+
- astroboa-cli.gemspec
|
|
97
|
+
- bin/astroboa-cli
|
|
98
|
+
- lib/astroboa-cli.rb
|
|
99
|
+
- lib/astroboa-cli/cli.rb
|
|
100
|
+
- lib/astroboa-cli/command.rb
|
|
101
|
+
- lib/astroboa-cli/command/base.rb
|
|
102
|
+
- lib/astroboa-cli/command/help.rb
|
|
103
|
+
- lib/astroboa-cli/command/model.rb
|
|
104
|
+
- lib/astroboa-cli/command/repository.rb
|
|
105
|
+
- lib/astroboa-cli/command/server.rb
|
|
106
|
+
- lib/astroboa-cli/command/service.rb
|
|
107
|
+
- lib/astroboa-cli/command/version.rb
|
|
108
|
+
- lib/astroboa-cli/util.rb
|
|
109
|
+
- lib/astroboa-cli/version.rb
|
|
110
|
+
- test/features/astroboa-cli.feature
|
|
111
|
+
homepage: http://www.astroboa.org
|
|
112
|
+
licenses:
|
|
113
|
+
- LGPL
|
|
114
|
+
post_install_message: ! ' * run ''astroboa-cli help'' to see the available commands
|
|
115
|
+
|
|
116
|
+
'
|
|
117
|
+
rdoc_options: []
|
|
118
|
+
require_paths:
|
|
119
|
+
- lib
|
|
120
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
121
|
+
none: false
|
|
122
|
+
requirements:
|
|
123
|
+
- - ! '>='
|
|
124
|
+
- !ruby/object:Gem::Version
|
|
125
|
+
version: '0'
|
|
126
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
127
|
+
none: false
|
|
128
|
+
requirements:
|
|
129
|
+
- - ! '>='
|
|
130
|
+
- !ruby/object:Gem::Version
|
|
131
|
+
version: '0'
|
|
132
|
+
requirements: []
|
|
133
|
+
rubyforge_project: astroboa-cli
|
|
134
|
+
rubygems_version: 1.8.23
|
|
135
|
+
signing_key:
|
|
136
|
+
specification_version: 3
|
|
137
|
+
summary: Astroboa Command Line Interface for astroboa platform and astroboa apps management.
|
|
138
|
+
test_files:
|
|
139
|
+
- test/features/astroboa-cli.feature
|