码迷,mamicode.com
首页 > 其他好文 > 详细

ruby 制作自己的gem包

时间:2017-02-09 13:47:32      阅读:446      评论:0      收藏:0      [点我收藏+]

标签:mdt   avs   db2   uri   lov   lex   tga   kth   log   

  • 在ruby工程目录下新建一个文件:crowdSystem.gemspec。需要在lib目录下存在同一名称的ruby库文件:crowdSystem.rb

         技术分享

 

  • crowdSystem.gemspec文件。写入以下内容
Gem::Specification.new do |s|  
  s.name        = crowdSystem  
  s.version     = 1.0.0  
  s.date        = 2016-09-18  
  s.summary     = "crowdSystem!"  
  s.description = "crowdSys automated test application"  
  s.authors     = ["shench"]  
  s.email       = xxxxxxx@xxxnets.com  
  s.files       = ["lib/crowdSystem.rb", "lib/crowdSysAction.rb","lib/crowdSysENV.rb","rake/Rakefile","rake/startTest.ini","rake/startTest.rb","testcase/testCase_checkList.txt"]  
  s.homepage    = http://172.17.2.44:9527/welcome/index
  s.license     = MIT  
end

     其中name+version为安装gem包后的主目录名:crowdSystem-1.0.0

  • 构建gem包。在工程目录下执行gem build crowdSystem.gemspec,将会在当前目录下生成gem包:crowdSystem-1.0.0.gem技术分享

  • 安装gem包。在gem包所在目录执行gem installcrowdSystem-1.0.0.gem

       技术分享

        检查gem列表

       技术分享

 

参考文档:http://guides.rubygems.org/make-your-own-gem/

 

ruby 制作自己的gem包

标签:mdt   avs   db2   uri   lov   lex   tga   kth   log   

原文地址:http://www.cnblogs.com/fithon/p/6381514.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!