Module: XZGit

Defined in:
lib/mrbin.rb,
lib/mrbin/config.rb,
lib/mrbin/command.rb,
lib/mrbin/gemversion.rb,
lib/mrbin/xzcommand/xzmr.rb

Defined Under Namespace

Classes: Command, XZMr

Constant Summary collapse

VERSION =
'1.0.0'.freeze
@@usermap =
{'wangkongfei' => 189,'baoyewei' => 178, 'mengxianpu' => 69, 'qieyanhong' => 36, 'cuibing' => 203, 'pengyuyao' => 92 ,'lixiaoyu' => 181,'liushuhua' => 71,'wangshuai' => 201, 'cuixinle' => 204, 'wangzhiming' => 4}
@@token =
''
@@project =
''

Class Method Summary collapse

Class Method Details

.projectObject



25
26
27
# File 'lib/mrbin/config.rb', line 25

def self.project()
    @@project
end

.setproject(val) ⇒ Object



21
22
23
# File 'lib/mrbin/config.rb', line 21

def self.setproject(val)
    @@project = val
end

.settoken(val) ⇒ Object



5
6
7
# File 'lib/mrbin/config.rb', line 5

def self.settoken(val)
    @@token = val
end

.setusermap(val) ⇒ Object



13
14
15
# File 'lib/mrbin/config.rb', line 13

def self.setusermap(val)
    @@usermap = val
end

.tokenObject



9
10
11
# File 'lib/mrbin/config.rb', line 9

def self.token()
    @@token
end

.usermapObject



17
18
19
# File 'lib/mrbin/config.rb', line 17

def self.usermap()
    @@usermap
end