gjar 0.0.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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: dccffe9cdcd00b3a05b5b33652f8951d5d4d4d95
4
+ data.tar.gz: 206ee789a175c47ed687155c2bf6ec4c4528e2b2
5
+ SHA512:
6
+ metadata.gz: 4a395ced92d8930db937894f5c3ae22441aa6c5bec400cabf0331c225d2ac7c1ea3d592a814acc438f143f7d0259551306396307a70e1364013f24dfb0ab0d11
7
+ data.tar.gz: 731928f6501e8719f4ca7999b3c0da271802e5e2e375a123ba2f15121a8f5bcffd689c9df99f6997b2b285ff3286a5c3351fd007a8a822b82a7127f8f8c3871a
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in gjar.gemspec
4
+ gemspec
5
+
6
+ gem 'net-sftp'
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 mj
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,21 @@
1
+ # Gjar 一个简单的jar包同步工具
2
+
3
+ ## install
4
+
5
+ 1. 安转ruby
6
+ 2. gem install gjar
7
+
8
+ ## 上传或者下载包
9
+
10
+ ```ruby
11
+ host 'ip'
12
+ username 'ubuntu'
13
+ password 'adsfasdf'
14
+ remote_path '/home/ubuntu/jar' # 服务器地址
15
+
16
+ jar_path './libs' # jar包下载地址
17
+
18
+ jar 'test', '1.0.1' # jar 包的名字和版本
19
+
20
+ upload_path './build' # 上传的地址 jar包命名 test-1_1_1.jar
21
+ ```
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,59 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ # coding: utf-8
4
+ require 'net/sftp'
5
+
6
+ class Gjar
7
+
8
+ def initialize
9
+ @jar_list = []
10
+ eval(File.read './Jarfile')
11
+ download_jar
12
+ end
13
+
14
+ def host name
15
+ @host_name = name
16
+ end
17
+
18
+ def username name
19
+ @username = name
20
+ end
21
+
22
+ def password pw
23
+ @password = pw
24
+ end
25
+
26
+ def remote_path path
27
+ @remote_path = path
28
+ end
29
+
30
+ def jar_path path
31
+ @path = path
32
+ end
33
+
34
+ def jar package_name, version
35
+ @jar_list << [package_name, version]
36
+ end
37
+
38
+ def upload_path (path)
39
+ Net::SFTP.start(@host_name, @username, password: @password) do |sftp|
40
+ Dir[path+ "/*.jar"].each do |name|
41
+ puts "start upload #{name}"
42
+ sftp.upload! name, "#{@remote_path}/#{name.split('/').last}"
43
+ end
44
+ end
45
+ end
46
+
47
+ def download_jar
48
+ Net::SFTP.start(@host_name, @username, password: @password) do |sftp|
49
+ @jar_list.each { |jar|
50
+ name = "#{jar[0]}-#{jar[1].gsub(/\./, '_')}.jar"
51
+ puts "start download #{name}"
52
+ sftp.download! "#{@remote_path}/#{name}", "#{@path}/#{name}"
53
+ }
54
+ end
55
+ end
56
+
57
+ end
58
+
59
+ Gjar.new
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'gjar/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "gjar"
8
+ spec.version = Gjar::VERSION
9
+ spec.authors = ["mj"]
10
+ spec.email = ["tywf91@gmail.com"]
11
+ spec.summary = %q{同步jar包的工具}
12
+ spec.description = %q{同步jar包的工具}
13
+ spec.homepage = "https://github.com/mjason/gjar"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.5"
22
+ spec.add_development_dependency "rake"
23
+ end
@@ -0,0 +1,5 @@
1
+ require "gjar/version"
2
+
3
+ module Gjar
4
+ # Your code goes here...
5
+ end
@@ -0,0 +1,3 @@
1
+ module Gjar
2
+ VERSION = "0.0.1"
3
+ end
metadata ADDED
@@ -0,0 +1,82 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: gjar
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - mj
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-04-20 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.5'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.5'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: "同步jar包的工具"
42
+ email:
43
+ - tywf91@gmail.com
44
+ executables:
45
+ - gjar
46
+ extensions: []
47
+ extra_rdoc_files: []
48
+ files:
49
+ - ".gitignore"
50
+ - Gemfile
51
+ - LICENSE.txt
52
+ - README.md
53
+ - Rakefile
54
+ - bin/gjar
55
+ - gjar.gemspec
56
+ - lib/gjar.rb
57
+ - lib/gjar/version.rb
58
+ homepage: https://github.com/mjason/gjar
59
+ licenses:
60
+ - MIT
61
+ metadata: {}
62
+ post_install_message:
63
+ rdoc_options: []
64
+ require_paths:
65
+ - lib
66
+ required_ruby_version: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - ">="
69
+ - !ruby/object:Gem::Version
70
+ version: '0'
71
+ required_rubygems_version: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ requirements: []
77
+ rubyforge_project:
78
+ rubygems_version: 2.2.2
79
+ signing_key:
80
+ specification_version: 4
81
+ summary: "同步jar包的工具"
82
+ test_files: []