gvcsfx 0.3 → 0.4.1
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/.gitignore +1 -0
- data/README.md +20 -0
- data/Rakefile +10 -0
- data/gvcsfx.gemspec +36 -0
- data/lib/version.rb +1 -1
- metadata +7 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bc9dfedb147aba08f274132c94b9afbdbfc828bb336356d4e7f27a0ad7e04d26
|
4
|
+
data.tar.gz: 8fdf22ff5966fe94aad69c19645591cad65fc6c15d32e3827fc36d9d4c137824
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8bd07cf9a98d3f2b1c8aba45d0b6906f4e799985aee4bf08779f428f56602b1c5430a7b666495e7580b035ad88d805e3e31e86784570c6def22bc2254b86c5ce
|
7
|
+
data.tar.gz: 795797b2162400a444c7ae32c65799fb39561375e4238c6f7c7132437e6dbd9b991cf599114b1fbadc55ed0912d00f1036cb24475bb91ef4b4041125570797ad
|
data/.gitignore
CHANGED
data/README.md
CHANGED
@@ -57,6 +57,26 @@ To be implemented
|
|
57
57
|
* Sort by date/committer on logs
|
58
58
|
|
59
59
|
|
60
|
+
Installation
|
61
|
+
============
|
62
|
+
|
63
|
+
You can check out the source code here and run
|
64
|
+
|
65
|
+
```sh
|
66
|
+
> bundle
|
67
|
+
> bundle exec ruby bin/gvcsfx.rb
|
68
|
+
```
|
69
|
+
|
70
|
+
Or use gem to install the tool:
|
71
|
+
|
72
|
+
```ruby
|
73
|
+
> gem install gvcsfx
|
74
|
+
> (if you use RVM, switch to jruby first)
|
75
|
+
> rvm use jruby
|
76
|
+
> gvcsfx
|
77
|
+
```
|
78
|
+
|
79
|
+
|
60
80
|
Development
|
61
81
|
===========
|
62
82
|
|
data/Rakefile
ADDED
data/gvcsfx.gemspec
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
require_relative 'lib/version'
|
2
|
+
|
3
|
+
Gem::Specification.new do |spec|
|
4
|
+
spec.name = "gvcsfx"
|
5
|
+
spec.version = GvcsFx::VERSION
|
6
|
+
spec.authors = ["Chris"]
|
7
|
+
spec.email = ["chrisliaw@antrapol.com"]
|
8
|
+
|
9
|
+
spec.summary = %q{Generic Version Control System - JavaFX}
|
10
|
+
spec.description = %q{Simple and effective VCS workflow management}
|
11
|
+
spec.homepage = "https://github.com/chrisliaw/gvcsfx"
|
12
|
+
spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
|
13
|
+
|
14
|
+
#spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
|
15
|
+
|
16
|
+
#spec.metadata["homepage_uri"] = spec.homepage
|
17
|
+
#spec.metadata["source_code_uri"] = "TODO: Put your gem's public repo URL here."
|
18
|
+
#spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
|
19
|
+
|
20
|
+
# Specify which files should be added to the gem when it is released.
|
21
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
22
|
+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
23
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
24
|
+
end
|
25
|
+
spec.bindir = "bin"
|
26
|
+
#spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
27
|
+
spec.executables = "gvcsfx"
|
28
|
+
spec.require_paths = ["lib"]
|
29
|
+
|
30
|
+
spec.add_dependency 'tlogger', '>= 0.21'
|
31
|
+
spec.add_dependency 'jrubyfx', '>= 1.2.0'
|
32
|
+
spec.add_dependency 'toolrack', '~> 0.4'
|
33
|
+
spec.add_dependency 'gvcs', '~> 0.1.0'
|
34
|
+
spec.add_dependency 'git_cli', '~> 0.4.0'
|
35
|
+
|
36
|
+
end
|
data/lib/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gvcsfx
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 0.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris
|
@@ -57,7 +57,7 @@ dependencies:
|
|
57
57
|
requirements:
|
58
58
|
- - "~>"
|
59
59
|
- !ruby/object:Gem::Version
|
60
|
-
version:
|
60
|
+
version: 0.1.0
|
61
61
|
name: gvcs
|
62
62
|
prerelease: false
|
63
63
|
type: :runtime
|
@@ -65,13 +65,13 @@ dependencies:
|
|
65
65
|
requirements:
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version:
|
68
|
+
version: 0.1.0
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
requirement: !ruby/object:Gem::Requirement
|
71
71
|
requirements:
|
72
72
|
- - "~>"
|
73
73
|
- !ruby/object:Gem::Version
|
74
|
-
version:
|
74
|
+
version: 0.4.0
|
75
75
|
name: git_cli
|
76
76
|
prerelease: false
|
77
77
|
type: :runtime
|
@@ -79,7 +79,7 @@ dependencies:
|
|
79
79
|
requirements:
|
80
80
|
- - "~>"
|
81
81
|
- !ruby/object:Gem::Version
|
82
|
-
version:
|
82
|
+
version: 0.4.0
|
83
83
|
description: Simple and effective VCS workflow management
|
84
84
|
email:
|
85
85
|
- chrisliaw@antrapol.com
|
@@ -91,6 +91,7 @@ files:
|
|
91
91
|
- ".gitignore"
|
92
92
|
- Gemfile
|
93
93
|
- README.md
|
94
|
+
- Rakefile
|
94
95
|
- bin/gvcsfx
|
95
96
|
- bin/gvcsfx.rb
|
96
97
|
- config/warble.rb
|
@@ -101,6 +102,7 @@ files:
|
|
101
102
|
- fx/show_text.fxml
|
102
103
|
- fx/stash_select.fxml
|
103
104
|
- gvcs_fx.rb
|
105
|
+
- gvcsfx.gemspec
|
104
106
|
- handlers/add_workspace_controller.rb
|
105
107
|
- handlers/event_handler.rb
|
106
108
|
- handlers/float_win_controller.rb
|