xnlogic 1.0.11 → 1.0.12
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/lib/xnlogic/cli/application.rb +1 -1
- data/lib/xnlogic/cli.rb +4 -4
- data/lib/xnlogic/templates/application/Gemfile.tt +3 -16
- data/lib/xnlogic/templates/application/config.ru.tt +0 -1
- data/lib/xnlogic/templates/application/gemspec.tt +35 -0
- data/lib/xnlogic/templates/vagrant/Vagrantfile.tt +26 -21
- data/lib/xnlogic/templates/vagrant/config/vagrant.provision.tt +31 -28
- data/lib/xnlogic/version.rb +1 -1
- metadata +33 -47
- data/lib/xnlogic/templates/vagrant/config/vagrant.settings.yml.tt +0 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0ff9ac3730febdacf1ea97fc3b31aca65989c8bc
|
4
|
+
data.tar.gz: cea5c7cbc7072c694abe5004dd551d4f9ebf05a8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 480520f7a0331a2d11c154a95809e6a6e74a14ba73957747ec4008dc8283388ac98d0a9f91f1eea6ae5721a47afaa33553ef9addc6cc56b8741bd270ce082025
|
7
|
+
data.tar.gz: 3a49ba51595c08e4c33d1471adc4f505ddc99e881dfb982ed3a396fa8f49ee982ec930167c430a4658598bf37858b32ccd38ff31d971816cd210fa8077e0bcea
|
@@ -34,7 +34,6 @@ module Xnlogic
|
|
34
34
|
base_templates = {
|
35
35
|
"Vagrantfile.tt" => "Vagrantfile",
|
36
36
|
"config/vagrant.provision.tt" => "config/vagrant.provision",
|
37
|
-
"config/vagrant.settings.yml.tt" => "config/vagrant.settings.yml",
|
38
37
|
"config/datomic.conf" => "config/datomic.conf",
|
39
38
|
"config/transactor.properties" => "config/transactor.properties",
|
40
39
|
}
|
@@ -46,6 +45,7 @@ module Xnlogic
|
|
46
45
|
templates = {
|
47
46
|
"gitignore.tt" => ".gitignore",
|
48
47
|
".rspec.tt" => ".rspec",
|
48
|
+
"gemspec.tt" => "#{namespaced_path}.gemspec",
|
49
49
|
"Gemfile.tt" => "Gemfile",
|
50
50
|
"Readme.md.tt" => "Readme.md",
|
51
51
|
"config.ru.tt" => "config.ru",
|
data/lib/xnlogic/cli.rb
CHANGED
@@ -54,14 +54,14 @@ module Xnlogic
|
|
54
54
|
end
|
55
55
|
|
56
56
|
desc "application NAME [OPTIONS]", "Creates a skeleton of an XN Logic application"
|
57
|
-
method_option "cpus", type: :numeric, default: 2, banner:
|
58
|
-
"Number of Virtual CPUs the Development VM should use"
|
59
|
-
method_option "memory", type: :numeric, default: 2048, banner:
|
60
|
-
"Amount of RAM to allow the Development VM to use (in MB)"
|
61
57
|
method_option "key", type: :string, banner:
|
62
58
|
"You must supply an XN key to be able to download the proprietary dependencies needed to boot your application"
|
63
59
|
method_option "root", type: :string, banner:
|
64
60
|
"Optionally specify a different root directory name"
|
61
|
+
method_option "cpus", type: :numeric, banner:
|
62
|
+
"Number of Virtual CPUs the Development VM should use"
|
63
|
+
method_option "memory", type: :numeric, banner:
|
64
|
+
"Amount of RAM to allow the Development VM to use (in MB)"
|
65
65
|
def application(name)
|
66
66
|
require 'xnlogic/cli/application'
|
67
67
|
Application.new(options, name, self).run
|
@@ -1,17 +1,4 @@
|
|
1
|
-
source "
|
2
|
-
source "
|
3
|
-
source "http://<%= config[:xn_key] || 'xn:key_required' %>@pacer-mcfly.xnlogic.net
|
1
|
+
source "https://<%= config[:xn_key] || 'xn:key_required' %>@gems.xnlogic.com"
|
2
|
+
source "https://rubygems.org/"
|
4
3
|
|
5
|
-
|
6
|
-
gem 'rack', '1.5.2'
|
7
|
-
gem 'jruby-openssl', '0.9.5'
|
8
|
-
gem 'pacer', '>= 2.0.6'
|
9
|
-
gem 'pacer-neo4j'
|
10
|
-
gem 'pacer-model'
|
11
|
-
gem 'pacer-mcfly'
|
12
|
-
|
13
|
-
group :test do
|
14
|
-
gem 'rspec-core', '2.13.1'
|
15
|
-
gem 'rspec-expectations', '2.13.0'
|
16
|
-
gem 'rr'
|
17
|
-
end
|
4
|
+
gemspec
|
@@ -0,0 +1,35 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
3
|
+
require "<%= config[:namespaced_path] %>/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |s|
|
6
|
+
s.name = "<%= config[:name] %>"
|
7
|
+
s.version = <%= config[:constant_name] %>::VERSION
|
8
|
+
s.platform = 'java'
|
9
|
+
s.authors = ["Darrick Wiebe", "David Colebatch"]
|
10
|
+
s.email = ["dw@xnlogic.com", "dc@xnlogic.com"]
|
11
|
+
s.homepage = "http://xnlogic.com"
|
12
|
+
s.summary = %q{<%= config[:constant_name] %> application on XN Logic}
|
13
|
+
s.description = %q{TODO: that is up to you!}
|
14
|
+
|
15
|
+
s.files = `git ls-files`.split("\n")
|
16
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
17
|
+
s.require_paths = ["lib"]
|
18
|
+
|
19
|
+
s.add_dependency 'rack', '1.5.2'
|
20
|
+
s.add_dependency 'pacer', '>= 2.0.6'
|
21
|
+
s.add_dependency 'pacer-model'
|
22
|
+
s.add_dependency 'pacer-neo4j'
|
23
|
+
s.add_dependency 'pacer-mcfly'
|
24
|
+
|
25
|
+
s.add_dependency 'jruby-openssl', '0.9.6'
|
26
|
+
|
27
|
+
s.add_dependency 'torquebox', '3.1.1'
|
28
|
+
s.add_dependency 'torquebox-messaging', '3.1.1'
|
29
|
+
|
30
|
+
s.add_development_dependency 'rspec-core', '~>2.13.0'
|
31
|
+
s.add_development_dependency 'rspec-expectations'
|
32
|
+
s.add_development_dependency 'rr'
|
33
|
+
s.add_development_dependency 'autotest-standalone'
|
34
|
+
s.add_development_dependency 'awesome_print', '0.4.0'
|
35
|
+
end
|
@@ -12,8 +12,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
|
12
12
|
# Include config from config/settings.yml
|
13
13
|
require 'yaml'
|
14
14
|
current_folder = File.expand_path(File.dirname(__FILE__))
|
15
|
-
|
16
|
-
app_name = settings['XN_CLIENT']
|
15
|
+
app_name = '<%= config[:name] %>'
|
17
16
|
|
18
17
|
# Every Vagrant virtual environment requires a box to build off of.
|
19
18
|
config.vm.box = "box-cutter/ubuntu1404"
|
@@ -24,9 +23,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
|
24
23
|
config.vm.network "forwarded_port", guest: 8080, host: 8080
|
25
24
|
config.vm.network "forwarded_port", guest: 3030, host: 3030
|
26
25
|
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
|
30
26
|
|
31
27
|
# Create a private network, which allows host-only access to the machine
|
32
28
|
# using a specific IP.
|
@@ -40,8 +36,11 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
|
40
36
|
nfs_setting = RUBY_PLATFORM =~ /darwin/ || RUBY_PLATFORM =~ /linux/ || Vagrant.has_plugin?("vagrant-winnfsd")
|
41
37
|
|
42
38
|
# Setup auxiliary synced folder
|
43
|
-
|
44
|
-
|
39
|
+
if nfs_setting
|
40
|
+
config.vm.synced_folder Dir.pwd, "/home/vagrant/" + app_name, create: true, id: app_name, :nfs => true, :mount_options => ['nolock,vers=3,udp']
|
41
|
+
else
|
42
|
+
config.vm.synced_folder Dir.pwd, "/home/vagrant/" + app_name, create: true, id: app_name
|
43
|
+
end
|
45
44
|
|
46
45
|
# Allow caching to be used (see the vagrant-cachier plugin)
|
47
46
|
if Vagrant.has_plugin?("vagrant-cachier")
|
@@ -62,29 +61,35 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
|
62
61
|
config.vm.provider "virtualbox" do |vb|
|
63
62
|
# boot with headless mode
|
64
63
|
vb.gui = false
|
65
|
-
|
66
|
-
vb.customize ["modifyvm", :id, "--
|
64
|
+
<% if config[:vm_memory] -%>
|
65
|
+
vb.customize ["modifyvm", :id, "--memory", '<%= config[:vm_memory] %>']
|
66
|
+
<% else -%>
|
67
|
+
#vb.customize ["modifyvm", :id, "--memory", '2048']
|
68
|
+
<% end -%>
|
69
|
+
<% if config[:vm_cpus] -%>
|
70
|
+
vb.customize ["modifyvm", :id, "--cpus", <%= config[:vm_cpus] %>]
|
71
|
+
<% else -%>
|
72
|
+
#vb.customize ["modifyvm", :id, "--cpus", 2]
|
73
|
+
<% end -%>
|
67
74
|
end
|
68
75
|
|
69
76
|
config.vm.provider "vmware_fusion" do |vmwf|
|
70
77
|
# boot with headless mode
|
71
78
|
vmwf.gui = false
|
72
|
-
|
73
|
-
vmwf.vmx["
|
79
|
+
<% if config[:vm_memory] -%>
|
80
|
+
vmwf.vmx["memsize"] = '<%= config[:vm_memory] %>MB'
|
81
|
+
<% else -%>
|
82
|
+
#vmwf.vmx["memsize"] = '2048MB'
|
83
|
+
<% end -%>
|
84
|
+
<% if config[:vm_cpus] -%>
|
85
|
+
vmwf.vmx["numvcpus"] = <%= config[:vm_cpus] %>
|
86
|
+
<% else -%>
|
87
|
+
#vmwf.vmx["numvcpus"] = 2
|
88
|
+
<% end -%>
|
74
89
|
end
|
75
90
|
|
76
|
-
p1 = settings['jruby_version']
|
77
|
-
p2 = settings['timezone']
|
78
|
-
p4 = settings['DATOMIC_VERSION']
|
79
|
-
p5 = settings['pm_key']
|
80
|
-
p6 = settings['mcfly_key']
|
81
|
-
p7 = settings['pm_version']
|
82
|
-
p8 = settings['mcfly_version']
|
83
|
-
|
84
|
-
|
85
91
|
config.vm.provision "shell" do |s|
|
86
92
|
s.path = "config/vagrant.provision"
|
87
|
-
s.args = [p1,p2,app_name,p4,p5,p6,p7,p8]
|
88
93
|
s.privileged = false
|
89
94
|
end
|
90
95
|
end
|
@@ -2,23 +2,10 @@
|
|
2
2
|
|
3
3
|
echo "Configuring XN VM. This process will take several minutes."
|
4
4
|
|
5
|
-
if [ -z "$1" ]; then echo "jruby_version not set" && exit 1; else echo "jruby_version is set to $1"; fi
|
6
|
-
if [ -z "$2" ]; then echo "timezone not set" && exit 1; fi
|
7
|
-
if [ -z "$3" ]; then echo "XN_CLIENT not set" && exit 1; else echo "XN_CLIENT is set to $3"; fi
|
8
|
-
if [ -z "$4" ]; then echo "DATOMIC_VERSION not set" && exit 1; fi
|
9
|
-
if [ -z "$5" ]; then echo "pacer-model key not set" && exit 1; fi
|
10
|
-
if [ -z "$6" ]; then echo "mcfly key not set" && exit 1; fi
|
11
|
-
if [ -z "$7" ]; then echo "pacer-model version not set" && exit 1; fi
|
12
|
-
if [ -z "$8" ]; then echo "mcfly version not set" && exit 1; fi
|
13
|
-
|
14
5
|
# variables
|
15
6
|
debug=
|
16
|
-
jruby_version
|
17
|
-
timezone
|
18
|
-
pm_key=$5
|
19
|
-
mcfly_key=$6
|
20
|
-
pm_version=$7
|
21
|
-
mcfly_version=$8
|
7
|
+
jruby_version=1.7.18
|
8
|
+
timezone="America/Toronto"
|
22
9
|
|
23
10
|
silent() {
|
24
11
|
if [[ $debug ]] ; then
|
@@ -34,14 +21,17 @@ printf "%$(tput cols)s\n"|tr " " "-"
|
|
34
21
|
hr
|
35
22
|
echo "Configuring environment"
|
36
23
|
hr
|
37
|
-
export XN_CLIENT
|
38
|
-
export DATOMIC_VERSION
|
24
|
+
export XN_CLIENT=<%= config[:name] %>
|
25
|
+
export DATOMIC_VERSION=0.9.4755
|
39
26
|
export DEBIAN_FRONTEND=noninteractive
|
40
27
|
export LANG=en_US.UTF-8
|
41
28
|
export LC_ALL=en_US.UTF-8
|
42
29
|
sudo locale-gen en_US.UTF-8
|
43
30
|
#sudo dpkg-reconfigure locales
|
44
31
|
|
32
|
+
# make jruby processes boot faster
|
33
|
+
export JRUBY_OPTS=--dev
|
34
|
+
|
45
35
|
hr
|
46
36
|
echo "Setting timezone:"
|
47
37
|
echo "$timezone" | sudo tee /etc/timezone
|
@@ -89,6 +79,9 @@ hr
|
|
89
79
|
echo "Updating PATH"
|
90
80
|
export PATH="$HOME/bin:$HOME/xn.dev/cli-utils/bin:$PATH"
|
91
81
|
echo 'export PATH="$HOME/bin:$HOME/xn.dev/cli-utils/bin:$PATH"' >> ~/.zshrc
|
82
|
+
echo "alias gs='git status'" >> ~/.zshrc
|
83
|
+
echo "alias gd='git diff -w'" >> ~/.zshrc
|
84
|
+
echo "alias gdc='git diff -w --cached'" >> ~/.zshrc
|
92
85
|
|
93
86
|
hr
|
94
87
|
echo "Installing Lein"
|
@@ -111,16 +104,15 @@ gem install --quiet torquebox-server -v '3.1.1'
|
|
111
104
|
hr
|
112
105
|
echo "Configuring XN gems"
|
113
106
|
hr
|
114
|
-
gem sources --add
|
115
|
-
gem sources --add http://<%= config[:xn_key] || 'xn:key_required' %>@pacer-mcfly.xnlogic.net
|
116
|
-
gem install --quiet pacer-mcfly pacer-model
|
107
|
+
gem sources --add https://<%= config[:xn_key] || 'xn:key_required' %>@gems.xnlogic.com/
|
117
108
|
|
118
109
|
hr
|
119
110
|
echo "Configuring XN"
|
120
111
|
sudo mkdir -p /opt/xn_apps
|
121
112
|
sudo chown vagrant /opt/xn_apps
|
122
113
|
cd
|
123
|
-
|
114
|
+
|
115
|
+
wget https://www.dropbox.com/s/0aqqn94g35ruh9k/xn.dev.3.tbz -O $HOME/xn.dev.tbz --quiet
|
124
116
|
tar -xjf xn.dev.tbz
|
125
117
|
rm xn.dev.tbz
|
126
118
|
cd xn.dev
|
@@ -131,14 +123,24 @@ sudo npm install --loglevel silent
|
|
131
123
|
cd -
|
132
124
|
rake --quiet new_tb_version bundle_fe_server fresh_fe_config fe_server_db_init
|
133
125
|
|
126
|
+
if [ -d $HOME/$XN_CLIENT/assets ]; then
|
127
|
+
hr
|
128
|
+
echo "Configuring Assets"
|
129
|
+
silent sudo chown -R vagrant:vagrant $HOME
|
130
|
+
chown -R vagrant:vagrant $HOME
|
131
|
+
cd $HOME/$XN_CLIENT/assets
|
132
|
+
bundle install
|
133
|
+
npm install
|
134
|
+
fi
|
135
|
+
|
134
136
|
hr
|
135
137
|
echo "Starting Datomic Service"
|
136
138
|
hr
|
137
139
|
cd $HOME
|
138
|
-
wget https://www.dropbox.com/s/
|
140
|
+
wget https://www.dropbox.com/s/2sxd5gqmai58xnl/datomic-free-0.9.4755.zip?dl=1 --quiet -O datomic.zip
|
139
141
|
unzip datomic.zip
|
140
142
|
rm datomic.zip
|
141
|
-
sudo mv datomic-free-0.9.
|
143
|
+
sudo mv datomic-free-0.9.4755 /usr/local/lib/datomic
|
142
144
|
sudo cp /vagrant/config/datomic.conf /etc/init/datomic.conf
|
143
145
|
sudo mkdir -p /etc/datomic
|
144
146
|
sudo ln -s /vagrant/config/transactor.properties /etc/datomic/transactor.properties
|
@@ -146,16 +148,17 @@ sudo initctl reload-configuration
|
|
146
148
|
sudo start datomic
|
147
149
|
|
148
150
|
hr
|
149
|
-
echo "Customizing .zshrc for
|
150
|
-
echo "export XN_CLIENT
|
151
|
+
echo "Customizing .zshrc for $XN_CLIENT development"
|
152
|
+
echo "export XN_CLIENT=$XN_CLIENT" >> ~/.zshrc
|
151
153
|
echo "alias xn-server='(cd ~/xn.dev && ./script/start);'" >> ~/.zshrc
|
152
154
|
echo 'alias xn-console="(cd ~/$XN_CLIENT && bundle exec jruby -J-Xmx1g -J-XX:MaxPermSize=200m -S irb -I lib -r dev/console)"' >> ~/.zshrc
|
153
155
|
echo '[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*' >> ~/.zshrc
|
154
|
-
echo '
|
156
|
+
echo 'JRUBY_OPTS=--dev source $HOME/xn.dev/script/setup_stack' >> ~/.zshrc
|
157
|
+
|
155
158
|
|
156
159
|
hr
|
157
|
-
echo "Configuring
|
158
|
-
cd $HOME
|
160
|
+
echo "Configuring $XN_CLIENT"
|
161
|
+
cd $HOME/$XN_CLIENT
|
159
162
|
bundle
|
160
163
|
torquebox deploy
|
161
164
|
hr
|
data/lib/xnlogic/version.rb
CHANGED
metadata
CHANGED
@@ -1,85 +1,71 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: xnlogic
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.12
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Darrick Wiebe
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-01-
|
11
|
+
date: 2015-01-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - ">="
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: '0'
|
20
|
-
type: :runtime
|
21
|
-
prerelease: false
|
22
15
|
version_requirements: !ruby/object:Gem::Requirement
|
23
16
|
requirements:
|
24
|
-
- -
|
17
|
+
- - '>='
|
25
18
|
- !ruby/object:Gem::Version
|
26
19
|
version: '0'
|
27
|
-
- !ruby/object:Gem::Dependency
|
28
|
-
name: bundler
|
29
20
|
requirement: !ruby/object:Gem::Requirement
|
30
21
|
requirements:
|
31
|
-
- -
|
22
|
+
- - '>='
|
32
23
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
34
|
-
type: :development
|
24
|
+
version: '0'
|
35
25
|
prerelease: false
|
26
|
+
type: :runtime
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
36
29
|
version_requirements: !ruby/object:Gem::Requirement
|
37
30
|
requirements:
|
38
|
-
- -
|
31
|
+
- - ~>
|
39
32
|
- !ruby/object:Gem::Version
|
40
33
|
version: '1.7'
|
41
|
-
- !ruby/object:Gem::Dependency
|
42
|
-
name: rake
|
43
34
|
requirement: !ruby/object:Gem::Requirement
|
44
35
|
requirements:
|
45
|
-
- -
|
36
|
+
- - ~>
|
46
37
|
- !ruby/object:Gem::Version
|
47
|
-
version: '
|
48
|
-
type: :development
|
38
|
+
version: '1.7'
|
49
39
|
prerelease: false
|
40
|
+
type: :development
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
50
43
|
version_requirements: !ruby/object:Gem::Requirement
|
51
44
|
requirements:
|
52
|
-
- -
|
45
|
+
- - ~>
|
53
46
|
- !ruby/object:Gem::Version
|
54
47
|
version: '10.0'
|
55
|
-
- !ruby/object:Gem::Dependency
|
56
|
-
name: ronn
|
57
48
|
requirement: !ruby/object:Gem::Requirement
|
58
49
|
requirements:
|
59
|
-
- -
|
50
|
+
- - ~>
|
60
51
|
- !ruby/object:Gem::Version
|
61
|
-
version: 0
|
62
|
-
type: :development
|
52
|
+
version: '10.0'
|
63
53
|
prerelease: false
|
64
|
-
|
65
|
-
requirements:
|
66
|
-
- - "~>"
|
67
|
-
- !ruby/object:Gem::Version
|
68
|
-
version: 0.7.3
|
54
|
+
type: :development
|
69
55
|
- !ruby/object:Gem::Dependency
|
70
56
|
name: xn_gem_release_tasks
|
71
|
-
|
57
|
+
version_requirements: !ruby/object:Gem::Requirement
|
72
58
|
requirements:
|
73
|
-
- -
|
59
|
+
- - '>='
|
74
60
|
- !ruby/object:Gem::Version
|
75
61
|
version: 0.1.8
|
76
|
-
|
77
|
-
prerelease: false
|
78
|
-
version_requirements: !ruby/object:Gem::Requirement
|
62
|
+
requirement: !ruby/object:Gem::Requirement
|
79
63
|
requirements:
|
80
|
-
- -
|
64
|
+
- - '>='
|
81
65
|
- !ruby/object:Gem::Version
|
82
66
|
version: 0.1.8
|
67
|
+
prerelease: false
|
68
|
+
type: :development
|
83
69
|
description: Build graph applications with XN Logic.
|
84
70
|
email:
|
85
71
|
- dw@xnlogic.com
|
@@ -88,7 +74,7 @@ executables:
|
|
88
74
|
extensions: []
|
89
75
|
extra_rdoc_files: []
|
90
76
|
files:
|
91
|
-
-
|
77
|
+
- .gitignore
|
92
78
|
- Gemfile
|
93
79
|
- README.md
|
94
80
|
- Rakefile
|
@@ -104,6 +90,7 @@ files:
|
|
104
90
|
- lib/xnlogic/templates/application/Readme.md.tt
|
105
91
|
- lib/xnlogic/templates/application/config.ru.tt
|
106
92
|
- lib/xnlogic/templates/application/dev/console.rb.tt
|
93
|
+
- lib/xnlogic/templates/application/gemspec.tt
|
107
94
|
- lib/xnlogic/templates/application/gitignore.tt
|
108
95
|
- lib/xnlogic/templates/application/lib/fixtures/sample_fixtures.rb.tt
|
109
96
|
- lib/xnlogic/templates/application/lib/gemname.rb.tt
|
@@ -124,7 +111,6 @@ files:
|
|
124
111
|
- lib/xnlogic/templates/vagrant/config/datomic.conf
|
125
112
|
- lib/xnlogic/templates/vagrant/config/transactor.properties
|
126
113
|
- lib/xnlogic/templates/vagrant/config/vagrant.provision.tt
|
127
|
-
- lib/xnlogic/templates/vagrant/config/vagrant.settings.yml.tt
|
128
114
|
- lib/xnlogic/ui.rb
|
129
115
|
- lib/xnlogic/ui/shell.rb
|
130
116
|
- lib/xnlogic/ui/silent.rb
|
@@ -134,24 +120,24 @@ files:
|
|
134
120
|
homepage: https://xnlogic.com
|
135
121
|
licenses: []
|
136
122
|
metadata: {}
|
137
|
-
post_install_message:
|
123
|
+
post_install_message:
|
138
124
|
rdoc_options: []
|
139
125
|
require_paths:
|
140
126
|
- lib
|
141
127
|
required_ruby_version: !ruby/object:Gem::Requirement
|
142
128
|
requirements:
|
143
|
-
- -
|
129
|
+
- - '>='
|
144
130
|
- !ruby/object:Gem::Version
|
145
131
|
version: '0'
|
146
132
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
147
133
|
requirements:
|
148
|
-
- -
|
134
|
+
- - '>='
|
149
135
|
- !ruby/object:Gem::Version
|
150
136
|
version: '0'
|
151
137
|
requirements: []
|
152
|
-
rubyforge_project:
|
153
|
-
rubygems_version: 2.
|
154
|
-
signing_key:
|
138
|
+
rubyforge_project:
|
139
|
+
rubygems_version: 2.4.5
|
140
|
+
signing_key:
|
155
141
|
specification_version: 4
|
156
142
|
summary: XN Logic command-line tools
|
157
143
|
test_files: []
|