xnlogic 1.0.23 → 1.0.24
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 61f3a18612476a3246c00fa6a647d85775c22275
|
|
4
|
+
data.tar.gz: 55a1426085a41b2702424f5e9f41d58645348a21
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4f623c3b1b5009344b78ef096aa147f7f334eb38bb15a2a26f8aae693eed539813b9fa389dbb661c1e4296305b263da6e40cbee59a8e2162ac1a5f27193060ba
|
|
7
|
+
data.tar.gz: 321a9d2b76402f1c19ce3bfdb9a9d7c9f32dd6e7c64a8b07c634408f37ab6a45d44308a11bcfcf438b0a937da75f4bc82658cd90868437a85aae431915b4c2d0
|
|
@@ -79,9 +79,6 @@ hr
|
|
|
79
79
|
echo "Updating PATH"
|
|
80
80
|
export PATH="$HOME/bin:$HOME/xn.dev/cli-utils/bin:$PATH"
|
|
81
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
|
|
85
82
|
|
|
86
83
|
hr
|
|
87
84
|
echo "Installing Lein"
|
|
@@ -154,6 +151,20 @@ echo "alias xn-server='(cd ~/xn.dev && ./script/start);'" >> ~/.zshrc
|
|
|
154
151
|
echo 'alias xn-console="(cd ~/$XN_CLIENT && bundle exec jruby -J-Xmx1g -J-XX:MaxPermSize=200m -S irb -I lib -r dev/console)"' >> ~/.zshrc
|
|
155
152
|
echo '[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*' >> ~/.zshrc
|
|
156
153
|
echo 'JRUBY_OPTS=--dev source $HOME/xn.dev/script/setup_stack' >> ~/.zshrc
|
|
154
|
+
echo "alias gs='git status'" >> ~/.zshrc
|
|
155
|
+
echo "alias gd='git diff -w'" >> ~/.zshrc
|
|
156
|
+
echo "alias gdc='git diff -w --cached'" >> ~/.zshrc
|
|
157
|
+
git config --global --add alias.co "checkout"
|
|
158
|
+
git config --global --add alias.ci "commit"
|
|
159
|
+
git config --global --add alias.br "branch"
|
|
160
|
+
git config --global --add alias.ignore "update-index --assume-unchanged"
|
|
161
|
+
git config --global --add alias.unignore "update-index --no-assume-unchanged"
|
|
162
|
+
git config --global --add alias.cp "cherry-pick"
|
|
163
|
+
git config --global --add alias.unadd "reset HEAD"
|
|
164
|
+
git config --global --add alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"
|
|
165
|
+
git config --global --add alias.lga "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --all"
|
|
166
|
+
git config --global --add alias.branches "submodule foreach 'git branch | grep \*'"
|
|
167
|
+
|
|
157
168
|
|
|
158
169
|
|
|
159
170
|
hr
|
data/lib/xnlogic/version.rb
CHANGED
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
@echo off
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
echo Checking dependencies ...
|
|
6
|
+
|
|
7
|
+
:: Verifying admin rights ...
|
|
8
|
+
net session >nul 2>&1
|
|
9
|
+
if not %errorLevel% == 0 (
|
|
10
|
+
echo This scripts requires admin rights.
|
|
11
|
+
echo Please run this script again as administrator.
|
|
12
|
+
exit /B 1
|
|
13
|
+
)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
:: NOTE: GitHub for windows doesn't set the PATH variable (it makes `git` available only in the Git shell)
|
|
17
|
+
:: Let's add things to the path, if GitHub for windows was installed.
|
|
18
|
+
FOR /D %%f in (%LOCALAPPDATA%\GitHub\PortableGit_*) DO SET PATH=%PATH%;%%f\bin
|
|
19
|
+
:: TODO: Need to check other possible Git setups
|
|
20
|
+
|
|
21
|
+
:: Verifying git installation ...
|
|
22
|
+
git --version >nul 2>&1
|
|
23
|
+
if %errorLevel% == 9009 (
|
|
24
|
+
echo Please make sure that git is installed, and is available as a command.
|
|
25
|
+
echo For example, make sure you can run 'git --version' in this shell.
|
|
26
|
+
EXIT /B 1
|
|
27
|
+
)
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
:: Verifying Chocolatey installation ...
|
|
31
|
+
choco >nul 2>&1
|
|
32
|
+
if not %errorLevel% == 0 (
|
|
33
|
+
echo Installing Chocolatey package manager ...
|
|
34
|
+
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH "%PATH%;%ALLUSERSPROFILE%\\chocolatey\\bin"
|
|
35
|
+
)
|
|
36
|
+
|
|
37
|
+
:: Verifying Ruby installation ...
|
|
38
|
+
ruby --version >nul 2>&1
|
|
39
|
+
if not %errorLevel% == 0 (
|
|
40
|
+
@echo on
|
|
41
|
+
choco install ruby
|
|
42
|
+
@echo off
|
|
43
|
+
)
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
:: Verifying Vagrant installation ...
|
|
47
|
+
vagrant --version >nul 2>&1
|
|
48
|
+
if not %errorLevel% == 0 (
|
|
49
|
+
@echo on
|
|
50
|
+
choco install vagrant
|
|
51
|
+
@echo off
|
|
52
|
+
)
|
|
53
|
+
|
|
54
|
+
:: Verifying VirtualBox installation ...
|
|
55
|
+
IF NOT EXIST "%ProgramFiles%\Oracle\VirtualBox" (
|
|
56
|
+
@echo on
|
|
57
|
+
choco install virtualbox
|
|
58
|
+
@echo off
|
|
59
|
+
)
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
:: Verifying xnlogic installation ...
|
|
63
|
+
call xnlogic >nul 2>&1
|
|
64
|
+
if not %errorLevel% == 0 (
|
|
65
|
+
@echo on
|
|
66
|
+
:: We run the command in a new CMD windows, because we need to ensure that `gem` is on the PATH
|
|
67
|
+
start cmd /i /K gem install xnlogic
|
|
68
|
+
@echo off
|
|
69
|
+
|
|
70
|
+
echo xnlogic command-line utility is being installed in a separate window.
|
|
71
|
+
echo When the installation complets, run 'xnlogic help' for more info.
|
|
72
|
+
) else (
|
|
73
|
+
echo You are ready to go.
|
|
74
|
+
echo Run 'xnlogic help' for more info.
|
|
75
|
+
)
|
|
76
|
+
|
|
77
|
+
|
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.24
|
|
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-25 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
|
|
@@ -137,28 +123,29 @@ files:
|
|
|
137
123
|
- lib/xnlogic/ui/silent.rb
|
|
138
124
|
- lib/xnlogic/version.rb
|
|
139
125
|
- man/xnlogic.ronn
|
|
126
|
+
- windows_install/xnlogic_setup.bat
|
|
140
127
|
- xnlogic.gemspec
|
|
141
128
|
homepage: https://xnlogic.com
|
|
142
129
|
licenses: []
|
|
143
130
|
metadata: {}
|
|
144
|
-
post_install_message:
|
|
131
|
+
post_install_message:
|
|
145
132
|
rdoc_options: []
|
|
146
133
|
require_paths:
|
|
147
134
|
- lib
|
|
148
135
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
149
136
|
requirements:
|
|
150
|
-
- -
|
|
137
|
+
- - '>='
|
|
151
138
|
- !ruby/object:Gem::Version
|
|
152
139
|
version: '0'
|
|
153
140
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
154
141
|
requirements:
|
|
155
|
-
- -
|
|
142
|
+
- - '>='
|
|
156
143
|
- !ruby/object:Gem::Version
|
|
157
144
|
version: '0'
|
|
158
145
|
requirements: []
|
|
159
|
-
rubyforge_project:
|
|
160
|
-
rubygems_version: 2.4.
|
|
161
|
-
signing_key:
|
|
146
|
+
rubyforge_project:
|
|
147
|
+
rubygems_version: 2.4.5
|
|
148
|
+
signing_key:
|
|
162
149
|
specification_version: 4
|
|
163
150
|
summary: XN Logic command-line tools
|
|
164
151
|
test_files: []
|