xnlogic 1.0.6 → 1.0.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8a36f328b2bd90b41f922303a653cf42dcdd1c0a
4
- data.tar.gz: 560b489db76a202f188bcf5bb142a5ab291a4ff9
3
+ metadata.gz: fa72708b7d6bb824bb70d088bb44359ae12fc7d1
4
+ data.tar.gz: 0fa841e525c5f18b382fb3e0e75c7882027f5a4e
5
5
  SHA512:
6
- metadata.gz: 8153d384b7cf0bdd904d8a3945fc2833da473a838b183b1f6b5f4bc4696e8dbd875725aecc1dea5cc0aab338d4a4a53afe937c455d54aef830f979d8bab92523
7
- data.tar.gz: d6286dcad351a01986e82f96eb2b89a583da31c4c94507d72f2c450a6b006785e266d7467b74e502a3cf9ce147911f7111c96cbdb973d82aec4730aa2b1f0faf
6
+ metadata.gz: 1c9f58a79cff5f84cd763a48f51ee84360d5963b4d311a9c97967c118a45848493bd3c49a584c2a0f10933d0aedb3f4e7279fb8d474b740b3fb814edb0bc06d6
7
+ data.tar.gz: e0656f4709048767951b807f1fefcb8c75c127050555608e0956a1922ddc8ae7520e7d60ff6c8f793dd1a7c5ac29be8065a088675ddb56496e6387baff7c6544
@@ -2,7 +2,7 @@ require 'pathname'
2
2
 
3
3
  module Xnlogic
4
4
  class CLI::Application
5
- attr_reader :options, :app_name, :thor, :base_name, :name, :base, :app
5
+ attr_reader :options, :app_name, :thor, :base_name, :name, :app
6
6
 
7
7
  def initialize(options, app_name, thor)
8
8
  @options = options
@@ -10,9 +10,7 @@ module Xnlogic
10
10
  @thor = thor
11
11
 
12
12
  @name = app_name.chomp("/").tr('-', '_') # remove trailing slash if present
13
- @base_name = options.fetch('base', name)
14
- @base = Pathname.pwd.join(base_name)
15
- @app = @base.join(name)
13
+ @app = Pathname.pwd.join(name)
16
14
  end
17
15
 
18
16
  def run
@@ -35,10 +33,12 @@ module Xnlogic
35
33
  "Vagrantfile.tt" => "Vagrantfile",
36
34
  "config/vagrant.provision.tt" => "config/vagrant.provision",
37
35
  "config/vagrant.settings.yml.tt" => "config/vagrant.settings.yml",
36
+ "config/datomic.conf" => "config/datomic.conf",
37
+ "config/transactor.properties" => "config/transactor.properties",
38
38
  }
39
39
 
40
40
  base_templates.each do |src, dst|
41
- thor.template("vagrant/#{src}", base.join(dst), opts)
41
+ thor.template("vagrant/#{src}", app.join(dst), opts)
42
42
  end
43
43
 
44
44
  templates = {
@@ -47,7 +47,7 @@ module Xnlogic
47
47
  "Gemfile.tt" => "Gemfile",
48
48
  "Readme.md.tt" => "Readme.md",
49
49
  "config.ru.tt" => "config.ru",
50
- "console.rb.tt" => "console.rb",
50
+ "dev/console.rb.tt" => "dev/console.rb",
51
51
  "torquebox.yml.tt" => "torquebox.yml",
52
52
  "torquebox_init.rb.tt" => "torquebox_init.rb",
53
53
  "lib/gemname.rb.tt" => "lib/#{namespaced_path}.rb",
@@ -83,7 +83,7 @@ module Xnlogic
83
83
  Xnlogic.ui.info ""
84
84
  Xnlogic.ui.info "Then run the following:"
85
85
  Xnlogic.ui.info ""
86
- Xnlogic.ui.info "cd #{base_name}"
86
+ Xnlogic.ui.info "cd #{name}"
87
87
  Xnlogic.ui.info "vagrant up"
88
88
  Xnlogic.ui.info "vagrant ssh"
89
89
  Xnlogic.ui.info ""
@@ -7,3 +7,9 @@ gem 'pacer', '>= 2.0.6'
7
7
  gem 'pacer-neo4j'
8
8
  gem 'pacer-model'
9
9
  gem 'pacer-mcfly'
10
+
11
+ group :test do
12
+ gem 'rspec-core', '2.13.1'
13
+ gem 'rspec-expectations', '2.13.0'
14
+ gem 'rr'
15
+ end
@@ -7,3 +7,4 @@ Jarfile.*.lock
7
7
  pkg/*
8
8
  bin/*
9
9
  tmp/
10
+ .vagrant
@@ -26,6 +26,7 @@ RSpec.configure do |c|
26
26
  Pacer.hide_route_elements = true
27
27
  Pacer.verbose = false
28
28
  JRuby.objectspace = true
29
+ # Recommended mock/stub library: https://github.com/rr/rr
29
30
  c.mock_with :rr
30
31
 
31
32
  SpecApp = <%= config[:constant_name] %>.app graph: Pacer.tg, client_name: 'specs'
@@ -1,5 +1,5 @@
1
1
  # -*- mode: ruby -*-
2
- # vi: set ft=ruby :
2
+ # vim: set ft=ruby :
3
3
 
4
4
  # Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
5
5
  VAGRANTFILE_API_VERSION = "2"
@@ -9,8 +9,11 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
9
9
  # options are documented and commented below. For a complete reference,
10
10
  # please see the online documentation at vagrantup.com.
11
11
 
12
- # Variable for current folder
13
- vagrant_dir = File.expand_path(File.dirname(__FILE__))
12
+ # Include config from config/settings.yml
13
+ require 'yaml'
14
+ current_folder = File.expand_path(File.dirname(__FILE__))
15
+ settings = YAML::load_file(current_folder + "/config/vagrant.settings.yml")
16
+ app_name = settings['XN_CLIENT']
14
17
 
15
18
  # Every Vagrant virtual environment requires a box to build off of.
16
19
  config.vm.box = "box-cutter/ubuntu1404"
@@ -34,7 +37,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
34
37
  nfs_setting = RUBY_PLATFORM =~ /darwin/ || RUBY_PLATFORM =~ /linux/ || Vagrant.has_plugin?("vagrant-winnfsd")
35
38
 
36
39
  # Setup auxiliary synced folder
37
- # config.vm.synced_folder vagrant_dir + "/xn_apps", "/opt/xn_apps", create: true, id: "xn-apps", :nfs => nfs_setting, :mount_options => ['nolock,vers=3,udp']
40
+ config.vm.synced_folder Dir.pwd, "/home/vagrant/" + app_name, create: true, id: app_name, :nfs => nfs_setting, :mount_options => ['nolock,vers=3,udp']
38
41
  # config.vm.synced_folder "../data", "/vagrant_data"
39
42
 
40
43
  # Allow caching to be used (see the vagrant-cachier plugin)
@@ -53,10 +56,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
53
56
  config.vbguest.no_remote = true
54
57
  end
55
58
 
56
- # Include config from config/settings.yml
57
- require 'yaml'
58
- settings = YAML::load_file(vagrant_dir + "/config/vagrant.settings.yml")
59
-
60
59
  config.vm.provider "virtualbox" do |vb|
61
60
  # boot with headless mode
62
61
  vb.gui = false
@@ -73,12 +72,16 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
73
72
 
74
73
  p1 = settings['jruby_version']
75
74
  p2 = settings['timezone']
76
- p3 = settings['XN_CLIENT']
77
75
  p4 = settings['DATOMIC_VERSION']
76
+ p5 = settings['pm_key']
77
+ p6 = settings['mcfly_key']
78
+ p7 = settings['pm_version']
79
+ p8 = settings['mcfly_version']
80
+
78
81
 
79
82
  config.vm.provision "shell" do |s|
80
83
  s.path = "config/vagrant.provision"
81
- s.args = [p1,p2,p3,p4]
84
+ s.args = [p1,p2,app_name,p4,p5,p6,p7,p8]
82
85
  s.privileged = false
83
86
  end
84
87
  end
@@ -0,0 +1,39 @@
1
+ #! /bin/sh
2
+ ### BEGIN INIT INFO
3
+ # Provides: datomic
4
+ # Short-Description: Start datomic transactor
5
+ ### END INIT INFO
6
+ #
7
+ # Copyright (c) Vital Reactor LLC
8
+ #
9
+ # description: starts up datomic transactor in fixed location
10
+ env PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:$PATH
11
+ env HOME=/opt/xn_apps
12
+ env DAEMON=/usr/local/lib/datomic/bin/transactor
13
+ env DAEMON_OPTS=/etc/datomic/transactor.properties
14
+ env NAME=transactor
15
+ env DESC=DatomicTransactor
16
+ env APPDIR=/opt/xn_apps
17
+ env PIDFILE=/opt/xn_apps/datomic.upstart.pid
18
+ env DAEMONUSER=vagrant
19
+
20
+ exec test -x $DAEMON || exit 1
21
+ description "$DESC"
22
+
23
+ start on startup
24
+ stop on shutdown
25
+
26
+ respawn
27
+ respawn limit 10 5
28
+
29
+ pre-start script
30
+ if [ ! -d "$APPDIR" ]; then
31
+ mkdir -p $APPDIR
32
+ fi
33
+ end script
34
+
35
+ exec start-stop-daemon --start -c $DAEMONUSER -m -p $PIDFILE --exec $DAEMON $DAEMON_OPTS
36
+
37
+ post-stop script
38
+ rm -f $PIDFILE
39
+ end script
@@ -0,0 +1,73 @@
1
+ ########### free mode config ###############
2
+ protocol=free
3
+ host=localhost
4
+ #free mode will use 3 ports starting with this one:
5
+ port=4334
6
+
7
+
8
+ ## OPTIONAL ####################################################
9
+ # The dev: and free: protocols typically use three ports
10
+ # starting with the selected :port, but you can specify the
11
+ # other ports explicitly, e.g. for virtualization environs
12
+ # that do not issue contiguous ports.
13
+
14
+ # h2-port=4335
15
+ # h2-web-port=4336
16
+
17
+
18
+
19
+ ################################################################
20
+ # See http://docs.datomic.com/capacity.html
21
+
22
+
23
+ # Recommended settings for -Xmx4g, ongoing usage.
24
+ #memory-index-threshold=32m
25
+ #memory-index-max=128m
26
+ #object-cache-max=1g
27
+
28
+ # Recommended settings for -Xmx4g import jobs.
29
+ # memory-index-threshold=512m
30
+ # memory-index-max=1g
31
+ # object-cache-max=1g
32
+
33
+ # Recommended settings for -Xmx1g usage, e.g. dev laptops.
34
+ memory-index-threshold=32m
35
+ memory-index-max=128m
36
+ object-cache-max=128m
37
+
38
+ # Further (possibly outdated) info:
39
+ # http://support.datomic.com/customer/portal/articles/850962-handling-high-write-volumes
40
+
41
+
42
+
43
+ ## OPTIONAL ####################################################
44
+
45
+
46
+ # Set to false to disable SSL between the peers and the transactor.
47
+ # Default: true
48
+ encrypt-channel=false
49
+
50
+ # Data directory is used for dev: and free: storage, and
51
+ # as a temporary directory for all storages.
52
+ data-dir=/opt/xn_apps/datomic.data
53
+
54
+ # Transactor will log here, see bin/logback.xml to configure logging.
55
+ log-dir=/opt/xn_apps/datomic.log
56
+
57
+ # Transactor will write process pid here on startup
58
+ pid-file=/opt/xn_apps/datomic.pid
59
+
60
+
61
+
62
+
63
+ ## OPTIONAL ####################################################
64
+ # See http://docs.datomic.com/capacity.html
65
+
66
+
67
+ # Soft limit on the number of concurrent writes to storage.
68
+ # Default: 4, Miniumum: 2
69
+ # write-concurrency=4
70
+
71
+ # Soft limit on the number of concurrent reads to storage.
72
+ # Default: 2 times write-concurrency, Miniumum: 2
73
+ # read-concurrency=8
@@ -6,11 +6,19 @@ if [ -z "$1" ]; then echo "jruby_version not set" && exit 1; else echo "jruby_ve
6
6
  if [ -z "$2" ]; then echo "timezone not set" && exit 1; fi
7
7
  if [ -z "$3" ]; then echo "XN_CLIENT not set" && exit 1; else echo "XN_CLIENT is set to $3"; fi
8
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
9
13
 
10
14
  # variables
11
15
  debug=
12
16
  jruby_version=$1
13
17
  timezone=$2
18
+ pm_key=$5
19
+ mcfly_key=$6
20
+ pm_version=$7
21
+ mcfly_version=$8
14
22
 
15
23
  silent() {
16
24
  if [[ $debug ]] ; then
@@ -61,7 +69,7 @@ curl -sSL https://get.rvm.io | silent bash -s stable --auto-dotfiles
61
69
  source $HOME/.rvm/scripts/rvm
62
70
 
63
71
  hr
64
- echo "Installing jRuby"
72
+ echo "Installing JRuby"
65
73
  silent rvm mount -r https://s3.amazonaws.com/jruby.org/downloads/${jruby_version}/jruby-bin-${jruby_version}.tar.gz --verify-downloads 1
66
74
  rvm use jruby-${jruby_version} --default
67
75
  gem source -a https://rubygems.org
@@ -78,8 +86,8 @@ sudo update-java-alternatives -s java-7-oracle
78
86
 
79
87
  hr
80
88
  echo "Updating PATH"
81
- echo 'export PATH="$HOME/bin:~/xn.dev/cli-utils/bin:$PATH"' >> ~/.zshrc
82
- export PATH="$HOME/bin:~/xn.dev/cli-utils/bin:$PATH"
89
+ export PATH="$HOME/bin:$HOME/xn.dev/cli-utils/bin:$PATH"
90
+ echo 'export PATH="$HOME/bin:$HOME/xn.dev/cli-utils/bin:$PATH"' >> ~/.zshrc
83
91
 
84
92
  hr
85
93
  echo "Installing Lein"
@@ -102,18 +110,19 @@ gem install --quiet torquebox-server -v '3.1.1'
102
110
  hr
103
111
  echo "Installing XN gems"
104
112
  hr
105
- wget https://www.dropbox.com/s/7ujc7jp508uxews/pacer-mcfly-0.7.2.pre-java.gem\?dl\=1 -O pacer-mcfly-0.7.2.pre-java.gem --quiet
106
- wget https://www.dropbox.com/s/jdo5yel0ya4cqv3/pacer-model-0.6.3.pre-java.gem?dl=1 -O pacer-model-0.6.3.pre-java.gem --quiet
107
- gem install --quiet pacer-mcfly-0.7.2.pre-java.gem pacer-model-0.6.3.pre-java.gem
108
- rm pacer-mcfly-0.7.2.pre-java.gem pacer-model-0.6.3.pre-java.gem
113
+ wget https://www.dropbox.com/s/$mcfly_key/pacer-mcfly-$mcfly_version-java.gem -O pacer-mcfly-$mcfly_version-java.gem --quiet
114
+ wget https://www.dropbox.com/s/$pm_key/pacer-model-$pm_version-java.gem -O pacer-model-$pm_version-java.gem --quiet
115
+ gem install --quiet pacer-mcfly-$mcfly_version-java.gem pacer-model-$pm_version-java.gem
116
+ rm pacer-mcfly-$mcfly_version-java.gem pacer-model-$pm_version-java.gem
109
117
 
110
118
  hr
111
119
  echo "Configuring XN"
112
120
  sudo mkdir -p /opt/xn_apps
113
121
  sudo chown vagrant /opt/xn_apps
114
122
  cd
115
- wget https://www.dropbox.com/s/1j4hyrzlfgra9gp/xn.dev.1.tbz -O $HOME/xn.dev.1.tbz --quiet
116
- tar -xjf xn.dev.1.tbz
123
+ wget https://www.dropbox.com/s/qs1n0c6tig2jfwo/xn.dev.2.tbz -O $HOME/xn.dev.tbz --quiet
124
+ tar -xjf xn.dev.tbz
125
+ rm xn.dev.tbz
117
126
  cd xn.dev
118
127
  source script/setup_stack
119
128
  cd fe/xn.js
@@ -122,22 +131,30 @@ cd -
122
131
  rake --quiet new_tb_version bundle_fe_server fresh_fe_config fe_server_db_init
123
132
 
124
133
  hr
125
- echo "Starting Datomic"
134
+ echo "Starting Datomic Service"
126
135
  hr
127
136
  cd $HOME
128
137
  wget https://www.dropbox.com/s/07wwxn8mbujxugb/datomic-free-0.9.4699.zip?dl=1 --quiet -O datomic.zip
129
138
  unzip datomic.zip
130
139
  rm datomic.zip
131
140
  sudo mv datomic-free-0.9.4699 /usr/local/lib/datomic
132
- sudo cp $HOME/xn.dev/config/etc_init_datomic.conf /etc/init/datomic.conf
141
+ sudo cp /vagrant/config/datomic.conf /etc/init/datomic.conf
133
142
  sudo mkdir -p /etc/datomic
134
- sudo cp $HOME/xn.dev/config/transactor.properties /etc/datomic/transactor.properties
143
+ sudo ln -s /vagrant/config/transactor.properties /etc/datomic/transactor.properties
135
144
  sudo initctl reload-configuration
136
145
  sudo start datomic
137
146
 
147
+ hr
148
+ echo "Customizing .zshrc for <%= config[:name] %> development"
149
+ echo "export XN_CLIENT=<%= config[:name] %>" >> ~/.zshrc
150
+ echo "alias xn-server='(cd ~/xn.dev; ./script/start);'" >> ~/.zshrc
151
+ echo 'alias xn-console="(cd ~/$XN_CLIENT; bundle exec jruby -J-Xmx1g -J-XX:MaxPermSize=200m -S irb -I $HOME/$XN_CLIENT/lib -r $HOME/$XN_CLIENT/console)"' >> ~/.zshrc
152
+ echo '[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*' >> ~/.zshrc
153
+ echo '(cd $HOME/xn.dev; source script/setup_stack)' >> ~/.zshrc
154
+
138
155
  hr
139
156
  echo "Configuring <%= config[:name] %>"
140
- cd /vagrant/<%= config[:name] %>
157
+ cd $HOME/<%= config[:name] %>
141
158
  bundle
142
159
  torquebox deploy
143
160
  hr
@@ -1,8 +1,12 @@
1
1
  ---
2
2
 
3
- XN_CLIENT: '<%= config[:name] %>'
4
- timezone: 'America/Toronto'
5
- jruby_version: '1.7.16'
6
- DATOMIC_VERSION: '0.9.4755'
7
- vm_memory: '<%= config[:vm_memory] %>'
8
- vm_cpus: '<%= config[:vm_cpus] %>'
3
+ XN_CLIENT: '<%= config[:name] %>'
4
+ timezone: 'America/Toronto'
5
+ jruby_version: '1.7.16'
6
+ DATOMIC_VERSION: '0.9.4755'
7
+ vm_memory: '<%= config[:vm_memory] %>'
8
+ vm_cpus: '<%= config[:vm_cpus] %>'
9
+ mcfly_version: '0.7.2.pre'
10
+ mcfly_key: '...'
11
+ pm_version: '0.6.3.pre'
12
+ pm_key: '...'
@@ -1,3 +1,3 @@
1
1
  module Xnlogic
2
- VERSION = "1.0.6"
2
+ VERSION = "1.0.7"
3
3
  end
metadata CHANGED
@@ -1,71 +1,85 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xnlogic
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.6
4
+ version: 1.0.7
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: 2014-12-02 00:00:00.000000000 Z
11
+ date: 2014-12-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
15
- version_requirements: !ruby/object:Gem::Requirement
15
+ requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - '>='
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '0'
20
- requirement: !ruby/object:Gem::Requirement
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
21
23
  requirements:
22
- - - '>='
24
+ - - ">="
23
25
  - !ruby/object:Gem::Version
24
26
  version: '0'
25
- prerelease: false
26
- type: :runtime
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: bundler
29
- version_requirements: !ruby/object:Gem::Requirement
29
+ requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ~>
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
33
  version: '1.7'
34
- requirement: !ruby/object:Gem::Requirement
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
35
37
  requirements:
36
- - - ~>
38
+ - - "~>"
37
39
  - !ruby/object:Gem::Version
38
40
  version: '1.7'
39
- prerelease: false
40
- type: :development
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
43
50
  version_requirements: !ruby/object:Gem::Requirement
44
51
  requirements:
45
- - - ~>
52
+ - - "~>"
46
53
  - !ruby/object:Gem::Version
47
54
  version: '10.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: ronn
48
57
  requirement: !ruby/object:Gem::Requirement
49
58
  requirements:
50
- - - ~>
59
+ - - "~>"
51
60
  - !ruby/object:Gem::Version
52
- version: '10.0'
53
- prerelease: false
61
+ version: 0.7.3
54
62
  type: :development
55
- - !ruby/object:Gem::Dependency
56
- name: xn_gem_release_tasks
63
+ prerelease: false
57
64
  version_requirements: !ruby/object:Gem::Requirement
58
65
  requirements:
59
- - - '>='
66
+ - - "~>"
60
67
  - !ruby/object:Gem::Version
61
- version: 0.1.8
68
+ version: 0.7.3
69
+ - !ruby/object:Gem::Dependency
70
+ name: xn_gem_release_tasks
62
71
  requirement: !ruby/object:Gem::Requirement
63
72
  requirements:
64
- - - '>='
73
+ - - ">="
65
74
  - !ruby/object:Gem::Version
66
75
  version: 0.1.8
67
- prerelease: false
68
76
  type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: 0.1.8
69
83
  description: Build graph applications with XN Logic.
70
84
  email:
71
85
  - dw@xnlogic.com
@@ -74,7 +88,7 @@ executables:
74
88
  extensions: []
75
89
  extra_rdoc_files: []
76
90
  files:
77
- - .gitignore
91
+ - ".gitignore"
78
92
  - Gemfile
79
93
  - README.md
80
94
  - Rakefile
@@ -83,11 +97,13 @@ files:
83
97
  - lib/xnlogic/cli.rb
84
98
  - lib/xnlogic/cli/application.rb
85
99
  - lib/xnlogic/friendly_errors.rb
100
+ - lib/xnlogic/man/xnlogic
101
+ - lib/xnlogic/man/xnlogic.txt
86
102
  - lib/xnlogic/templates/application/.rspec.tt
87
103
  - lib/xnlogic/templates/application/Gemfile.tt
88
104
  - lib/xnlogic/templates/application/Readme.md.tt
89
105
  - lib/xnlogic/templates/application/config.ru.tt
90
- - lib/xnlogic/templates/application/console.rb.tt
106
+ - lib/xnlogic/templates/application/dev/console.rb.tt
91
107
  - lib/xnlogic/templates/application/gitignore.tt
92
108
  - lib/xnlogic/templates/application/lib/fixtures/sample_fixtures.rb.tt
93
109
  - lib/xnlogic/templates/application/lib/gemname.rb.tt
@@ -105,6 +121,8 @@ files:
105
121
  - lib/xnlogic/templates/application/torquebox.yml.tt
106
122
  - lib/xnlogic/templates/application/torquebox_init.rb.tt
107
123
  - lib/xnlogic/templates/vagrant/Vagrantfile.tt
124
+ - lib/xnlogic/templates/vagrant/config/datomic.conf
125
+ - lib/xnlogic/templates/vagrant/config/transactor.properties
108
126
  - lib/xnlogic/templates/vagrant/config/vagrant.provision.tt
109
127
  - lib/xnlogic/templates/vagrant/config/vagrant.settings.yml.tt
110
128
  - lib/xnlogic/ui.rb
@@ -113,29 +131,27 @@ files:
113
131
  - lib/xnlogic/version.rb
114
132
  - man/xnlogic.ronn
115
133
  - xnlogic.gemspec
116
- - lib/xnlogic/man/xnlogic
117
- - lib/xnlogic/man/xnlogic.txt
118
134
  homepage: https://xnlogic.com
119
135
  licenses: []
120
136
  metadata: {}
121
- post_install_message:
137
+ post_install_message:
122
138
  rdoc_options: []
123
139
  require_paths:
124
140
  - lib
125
141
  required_ruby_version: !ruby/object:Gem::Requirement
126
142
  requirements:
127
- - - '>='
143
+ - - ">="
128
144
  - !ruby/object:Gem::Version
129
145
  version: '0'
130
146
  required_rubygems_version: !ruby/object:Gem::Requirement
131
147
  requirements:
132
- - - '>='
148
+ - - ">="
133
149
  - !ruby/object:Gem::Version
134
150
  version: '0'
135
151
  requirements: []
136
- rubyforge_project:
137
- rubygems_version: 2.1.9
138
- signing_key:
152
+ rubyforge_project:
153
+ rubygems_version: 2.2.2
154
+ signing_key:
139
155
  specification_version: 4
140
156
  summary: XN Logic command-line tools
141
157
  test_files: []