README.md in actir-1.0.0 vs README.md in actir-1.0.1

- old
+ new

@@ -1,11 +1,9 @@ # Actir -Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/actir`. To experiment with that code, run `bin/console` for an interactive prompt. +Application Concurrence Test in Ruby. -TODO: Delete this and the text above, and describe your gem - ## Installation git clone code and then execute: $ rake install @@ -20,11 +18,11 @@ 1. 对应测试工程结构如下  config -- 配置文件   |-config.yaml -- 总体配置文件,test_mode相关的配置项必须要填  elements   |-components -- 公用页面元素方法 -   |-pages -- 页面元素封装的方法.如果是Web页面,可以直接继承自Actir::WebPage,已经封装了部分公用方法 +   |-pages -- 页面元素封装的方法,可以继承自Actir::BasicPage,已经封装了部分公用方法  testcode -- 测试用例,执行之前需要初始化 Actir::Initializer.new(project_path) 2.project_path:测试工程根目录 3.Browser.new(type, *args): @@ -41,16 +39,12 @@  3中初始化出的browser对象,可以直接调用login_page方法  也可以直接调用Watir::Browser对应的所有方法  如:browser = Browser.new(type, *args)    browser.login_page.xxx (xxx为LoginPage中定义的方法) -## Development - -. - ## Contributing -1. Fork it ( https://github.com/[my-github-username]/actir/fork ) +1. Fork it ( https://github.com/hub128/actir.git ) 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Commit your changes (`git commit -am 'Add some feature'`) 4. Push to the branch (`git push origin my-new-feature`) 5. Create a new Pull Request