xnlogic 1.0.9 → 1.0.10

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 74ceb14d96011f51dd27f5f7e387625b0b5397ed
4
- data.tar.gz: e5215cc441f0a3805a04af0e5618d5976fc0633e
3
+ metadata.gz: aeb6afcb2bb7467ea0479d10b2a16c1700ae3539
4
+ data.tar.gz: a41a035c7ac0b516c78b35a807255f9acd68ed55
5
5
  SHA512:
6
- metadata.gz: 1f94fc76cd8b904806fdac34e80e4504b2709fc8b5e4bd5ae61f1f858d29fa3fcc5a5a58abb8d990ee4c6b258b286fc3ddc8517b602f90d0b8de479fe5caec8d
7
- data.tar.gz: cee2c0f8a49e59a1f2d3c61d38c25b135597ca0e4a8d14513bbda9c4b592cc0bbfbc18fe36bea9081544df005f0d5ca39d3fc183abce5f5766a53c52fe8fa9d8
6
+ metadata.gz: c23f87ab7dec20279082d7aeba264b5c1e8140af0a4d8320acc28e08ec3aae92fc7799c3526a3081aa0ec0208d814f86509e97230f2b0d104d4ffe8b97a153f0
7
+ data.tar.gz: 8db65b28c367c9196119228f5e4f5f0f07dc283003e976a95a80765244507dbe0b537c7a9361ee2f8d5a1663711fe868e3649b33663fd25646ba944b12f9a981
data/README.md CHANGED
@@ -1,26 +1,24 @@
1
- # Xnlogic
1
+ # xnlogic
2
2
 
3
- TODO: Write a gem description
3
+ Bootstrap your xnlogic.com application with this easy to use executable gem.
4
4
 
5
- ## Installation
6
-
7
- Add this line to your application's Gemfile:
8
5
 
9
- ```ruby
10
- gem 'xnlogic'
11
- ```
6
+ ## Installation
12
7
 
13
- And then execute:
8
+ $ gem install xnlogic
14
9
 
15
- $ bundle
10
+ ## Usage
16
11
 
17
- Or install it yourself as:
12
+ $ xnlogic application my_app
13
+ $ cd my_app
14
+ $ vagrant up
15
+ $ vagrant ssh
18
16
 
19
- $ gem install xnlogic
17
+ From the Vagrant VM, you can then:
20
18
 
21
- ## Usage
19
+ $ xn-server
20
+ $ xn-console
22
21
 
23
- TODO: Write usage instructions here
24
22
 
25
23
  ## Contributing
26
24
 
@@ -29,3 +27,12 @@ TODO: Write usage instructions here
29
27
  3. Commit your changes (`git commit -am 'Add some feature'`)
30
28
  4. Push to the branch (`git push origin my-new-feature`)
31
29
  5. Create a new Pull Request
30
+
31
+
32
+ ## Releasing a new gem to rubygems:
33
+
34
+ CI is not set up yet, so once you're happy with the release, simply:
35
+
36
+ $ rake local_release
37
+
38
+
@@ -24,6 +24,9 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
24
24
  config.vm.network "forwarded_port", guest: 8080, host: 8080
25
25
  config.vm.network "forwarded_port", guest: 3030, host: 3030
26
26
  config.vm.network "forwarded_port", guest: 3031, host: 3031
27
+ config.vm.network "forwarded_port", guest: 4334, host: 4334
28
+ config.vm.network "forwarded_port", guest: 4335, host: 4335
29
+ config.vm.network "forwarded_port", guest: 4336, host: 4336
27
30
 
28
31
  # Create a private network, which allows host-only access to the machine
29
32
  # using a specific IP.
@@ -20,8 +20,8 @@ env DAEMONUSER=vagrant
20
20
  exec test -x $DAEMON || exit 1
21
21
  description "$DESC"
22
22
 
23
- start on startup
24
- stop on shutdown
23
+ start on runlevel [2345]
24
+ stop on runlevel [!2345]
25
25
 
26
26
  respawn
27
27
  respawn limit 10 5
@@ -1,3 +1,3 @@
1
1
  module Xnlogic
2
- VERSION = "1.0.9"
2
+ VERSION = "1.0.10"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xnlogic
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.9
4
+ version: 1.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Darrick Wiebe