monupco-dotcloud-ruby 0.0.5 → 0.0.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.
- data/README.md +9 -5
- data/lib/monupco-dotcloud-ruby.rb +1 -1
- data/lib/monupco-dotcloud-ruby/version.rb +1 -1
- metadata +65 -40
data/README.md
CHANGED
|
@@ -8,7 +8,15 @@ Installing on your dotCloud Ruby application
|
|
|
8
8
|
|
|
9
9
|
- Create an account at http://monupco.com
|
|
10
10
|
|
|
11
|
-
- Create your Ruby application in dotCloud
|
|
11
|
+
- Create your Ruby application in dotCloud and push it
|
|
12
|
+
|
|
13
|
+
- Configure your Monupco userID. You can get it from https://monupco-otb.rhcloud.com/profiles/mine/
|
|
14
|
+
|
|
15
|
+
dotcloud var set <app name> MONUPCO_USER_ID=UserID
|
|
16
|
+
|
|
17
|
+
- Generate a unique identifier for this application and save the value as environmental variable.
|
|
18
|
+
|
|
19
|
+
dotcloud var set <app name> MONUPCO_UUID=`uuidgen`
|
|
12
20
|
|
|
13
21
|
- Add a dependency in your application's Gemfile
|
|
14
22
|
|
|
@@ -37,10 +45,6 @@ If a file named `postinstall` doesn't already exist, create it and add the follo
|
|
|
37
45
|
git add .
|
|
38
46
|
git commit -m "enable monupco registration"
|
|
39
47
|
|
|
40
|
-
- Set your monupco user id. You can get it from https://monupco-otb.rhcloud.com/profiles/mine/.
|
|
41
|
-
|
|
42
|
-
dotcloud var set <app name> MONUPCO_USER_ID=UserID
|
|
43
|
-
|
|
44
48
|
- Then push your application to dotCloud
|
|
45
49
|
|
|
46
50
|
dotcloud push <app name>
|
|
@@ -9,7 +9,7 @@ module Monupco
|
|
|
9
9
|
configure({
|
|
10
10
|
'user_id' => dotcloud_env['MONUPCO_USER_ID'],
|
|
11
11
|
'app_name' => dotcloud_env['DOTCLOUD_PROJECT'] + '.' + dotcloud_env['DOTCLOUD_SERVICE_NAME'],
|
|
12
|
-
'app_uuid' => dotcloud_env['
|
|
12
|
+
'app_uuid' => dotcloud_env['MONUPCO_UUID'],
|
|
13
13
|
'app_type' => 'Ruby',
|
|
14
14
|
'app_url' => dotcloud_env['DOTCLOUD_WWW_HTTP_URL'],
|
|
15
15
|
'app_vendor' => 1,
|
metadata
CHANGED
|
@@ -1,47 +1,61 @@
|
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: monupco-dotcloud-ruby
|
|
3
|
-
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
5
|
-
prerelease:
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
hash: 19
|
|
5
|
+
prerelease: false
|
|
6
|
+
segments:
|
|
7
|
+
- 0
|
|
8
|
+
- 0
|
|
9
|
+
- 6
|
|
10
|
+
version: 0.0.6
|
|
6
11
|
platform: ruby
|
|
7
|
-
authors:
|
|
12
|
+
authors:
|
|
8
13
|
- Alexander Todorov
|
|
9
14
|
autorequire:
|
|
10
15
|
bindir: bin
|
|
11
16
|
cert_chain: []
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
17
|
+
|
|
18
|
+
date: 2012-06-06 00:00:00 +03:00
|
|
19
|
+
default_executable:
|
|
20
|
+
dependencies:
|
|
21
|
+
- !ruby/object:Gem::Dependency
|
|
15
22
|
name: common-ruby-monupco
|
|
16
|
-
|
|
23
|
+
prerelease: false
|
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
17
25
|
none: false
|
|
18
|
-
requirements:
|
|
19
|
-
- -
|
|
20
|
-
- !ruby/object:Gem::Version
|
|
21
|
-
|
|
26
|
+
requirements:
|
|
27
|
+
- - ">="
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
hash: 3
|
|
30
|
+
segments:
|
|
31
|
+
- 0
|
|
32
|
+
version: "0"
|
|
22
33
|
type: :runtime
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
- !ruby/object:Gem::Dependency
|
|
34
|
+
version_requirements: *id001
|
|
35
|
+
- !ruby/object:Gem::Dependency
|
|
26
36
|
name: json
|
|
27
|
-
|
|
37
|
+
prerelease: false
|
|
38
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
|
28
39
|
none: false
|
|
29
|
-
requirements:
|
|
30
|
-
- -
|
|
31
|
-
- !ruby/object:Gem::Version
|
|
32
|
-
|
|
40
|
+
requirements:
|
|
41
|
+
- - ">="
|
|
42
|
+
- !ruby/object:Gem::Version
|
|
43
|
+
hash: 3
|
|
44
|
+
segments:
|
|
45
|
+
- 0
|
|
46
|
+
version: "0"
|
|
33
47
|
type: :runtime
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
the README for usage.
|
|
38
|
-
email:
|
|
48
|
+
version_requirements: *id002
|
|
49
|
+
description: monupco.com registration agent for dotCloud / Ruby applications. See the README for usage.
|
|
50
|
+
email:
|
|
39
51
|
- atodorov@otb.bg
|
|
40
|
-
executables:
|
|
52
|
+
executables:
|
|
41
53
|
- monupco-dotcloud
|
|
42
54
|
extensions: []
|
|
55
|
+
|
|
43
56
|
extra_rdoc_files: []
|
|
44
|
-
|
|
57
|
+
|
|
58
|
+
files:
|
|
45
59
|
- .gitignore
|
|
46
60
|
- Gemfile
|
|
47
61
|
- LICENSE
|
|
@@ -51,28 +65,39 @@ files:
|
|
|
51
65
|
- lib/monupco-dotcloud-ruby.rb
|
|
52
66
|
- lib/monupco-dotcloud-ruby/version.rb
|
|
53
67
|
- monupco-dotcloud-ruby.gemspec
|
|
68
|
+
has_rdoc: true
|
|
54
69
|
homepage: http://github.com/monupco/monupco-dotcloud-ruby
|
|
55
70
|
licenses: []
|
|
71
|
+
|
|
56
72
|
post_install_message:
|
|
57
73
|
rdoc_options: []
|
|
58
|
-
|
|
74
|
+
|
|
75
|
+
require_paths:
|
|
59
76
|
- lib
|
|
60
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
|
77
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
61
78
|
none: false
|
|
62
|
-
requirements:
|
|
63
|
-
- -
|
|
64
|
-
- !ruby/object:Gem::Version
|
|
65
|
-
|
|
66
|
-
|
|
79
|
+
requirements:
|
|
80
|
+
- - ">="
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
hash: 3
|
|
83
|
+
segments:
|
|
84
|
+
- 0
|
|
85
|
+
version: "0"
|
|
86
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
67
87
|
none: false
|
|
68
|
-
requirements:
|
|
69
|
-
- -
|
|
70
|
-
- !ruby/object:Gem::Version
|
|
71
|
-
|
|
88
|
+
requirements:
|
|
89
|
+
- - ">="
|
|
90
|
+
- !ruby/object:Gem::Version
|
|
91
|
+
hash: 3
|
|
92
|
+
segments:
|
|
93
|
+
- 0
|
|
94
|
+
version: "0"
|
|
72
95
|
requirements: []
|
|
96
|
+
|
|
73
97
|
rubyforge_project: monupco-dotcloud-ruby
|
|
74
|
-
rubygems_version: 1.
|
|
98
|
+
rubygems_version: 1.3.7
|
|
75
99
|
signing_key:
|
|
76
100
|
specification_version: 3
|
|
77
101
|
summary: monupco.com registration agent for dotCloud / Ruby applications
|
|
78
102
|
test_files: []
|
|
103
|
+
|