meroku 0.0.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.
- checksums.yaml +7 -0
- data/lib/meroku.rb +5 -0
- metadata +77 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: f9ab18133ae48e2a6e15280e68322739c5eb07e4
|
|
4
|
+
data.tar.gz: 5571d041f52098496d053c4c8b9a0f4e8147c0ab
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: eac6056c9adec91906cb35355a531d5a37df7c70d13b3d2d00343c23c4826bfa5bda10d52f72706293373b0431640446ee9a85c548bc44106cf8660128c396ba
|
|
7
|
+
data.tar.gz: 9f9025bda77a268c481afe6ada57a2feea2ae9d0f610b8dee6640a29ba81c3d5f9b444e48836dc56c78cbc532112193bedfb4514877a724742be8f2a6473e0b4
|
data/lib/meroku.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: meroku
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Grayson Wright
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2014-08-19 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: |
|
|
14
|
+
# Meroku
|
|
15
|
+
|
|
16
|
+
## Under Development
|
|
17
|
+
|
|
18
|
+
A self-hosted git-powered simple deployment option. No more messing with
|
|
19
|
+
headache-inducing NginX configuration files or paying $30 a month for hosted
|
|
20
|
+
services.
|
|
21
|
+
|
|
22
|
+
## Prerequisites:
|
|
23
|
+
|
|
24
|
+
- Git
|
|
25
|
+
- A web application (v0.1.0 will only support Rack)
|
|
26
|
+
- Your own server (v0.1.0 will only support Debian 7)
|
|
27
|
+
- A DNS provider with a public API (v0.1.0 will only support DNSimple)
|
|
28
|
+
|
|
29
|
+
Future versions will hopefully support more application languages & frameworks,
|
|
30
|
+
DNS providers, and server operating systems.
|
|
31
|
+
|
|
32
|
+
## Usage
|
|
33
|
+
|
|
34
|
+
In the directory that contains your Rack application:
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
gem install meroku
|
|
38
|
+
meroku setup # This will guide you through setting up meroku to talk to your server
|
|
39
|
+
meroku new subdomain.yourdomain.com
|
|
40
|
+
git push meroku master # Watch your application start up, and visit it online!
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
## License
|
|
44
|
+
|
|
45
|
+
Meroku is released under the [MIT License](http://www.opensource.org/licenses/MIT).
|
|
46
|
+
email: wright.grayson@gmail.com
|
|
47
|
+
executables: []
|
|
48
|
+
extensions: []
|
|
49
|
+
extra_rdoc_files: []
|
|
50
|
+
files:
|
|
51
|
+
- lib/meroku.rb
|
|
52
|
+
homepage: https://github.com/graysonwright/meroku
|
|
53
|
+
licenses:
|
|
54
|
+
- MIT
|
|
55
|
+
metadata: {}
|
|
56
|
+
post_install_message:
|
|
57
|
+
rdoc_options: []
|
|
58
|
+
require_paths:
|
|
59
|
+
- lib
|
|
60
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
61
|
+
requirements:
|
|
62
|
+
- - ">="
|
|
63
|
+
- !ruby/object:Gem::Version
|
|
64
|
+
version: '0'
|
|
65
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
66
|
+
requirements:
|
|
67
|
+
- - ">="
|
|
68
|
+
- !ruby/object:Gem::Version
|
|
69
|
+
version: '0'
|
|
70
|
+
requirements: []
|
|
71
|
+
rubyforge_project:
|
|
72
|
+
rubygems_version: 2.2.2
|
|
73
|
+
signing_key:
|
|
74
|
+
specification_version: 4
|
|
75
|
+
summary: A self-hosted git-powered simple deployment option
|
|
76
|
+
test_files: []
|
|
77
|
+
has_rdoc:
|