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 +4 -4
- data/README.md +21 -14
- data/lib/xnlogic/templates/vagrant/Vagrantfile.tt +3 -0
- data/lib/xnlogic/templates/vagrant/config/datomic.conf +2 -2
- data/lib/xnlogic/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aeb6afcb2bb7467ea0479d10b2a16c1700ae3539
|
4
|
+
data.tar.gz: a41a035c7ac0b516c78b35a807255f9acd68ed55
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c23f87ab7dec20279082d7aeba264b5c1e8140af0a4d8320acc28e08ec3aae92fc7799c3526a3081aa0ec0208d814f86509e97230f2b0d104d4ffe8b97a153f0
|
7
|
+
data.tar.gz: 8db65b28c367c9196119228f5e4f5f0f07dc283003e976a95a80765244507dbe0b537c7a9361ee2f8d5a1663711fe868e3649b33663fd25646ba944b12f9a981
|
data/README.md
CHANGED
@@ -1,26 +1,24 @@
|
|
1
|
-
#
|
1
|
+
# xnlogic
|
2
2
|
|
3
|
-
|
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
|
-
|
10
|
-
gem 'xnlogic'
|
11
|
-
```
|
6
|
+
## Installation
|
12
7
|
|
13
|
-
|
8
|
+
$ gem install xnlogic
|
14
9
|
|
15
|
-
|
10
|
+
## Usage
|
16
11
|
|
17
|
-
|
12
|
+
$ xnlogic application my_app
|
13
|
+
$ cd my_app
|
14
|
+
$ vagrant up
|
15
|
+
$ vagrant ssh
|
18
16
|
|
19
|
-
|
17
|
+
From the Vagrant VM, you can then:
|
20
18
|
|
21
|
-
|
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.
|
data/lib/xnlogic/version.rb
CHANGED