├── .document ├── .gitignore ├── .rspec ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── Rakefile ├── VERSION ├── china-express.gemspec ├── lib ├── china-express.rb └── express │ ├── company.rb │ └── result.rb └── spec ├── china-express_spec.rb ├── express └── company_spec.rb └── spec_helper.rb /.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/china-express/HEAD/.document -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/china-express/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/china-express/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/china-express/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/china-express/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/china-express/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/china-express/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/china-express/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.0.1 -------------------------------------------------------------------------------- /china-express.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/china-express/HEAD/china-express.gemspec -------------------------------------------------------------------------------- /lib/china-express.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/china-express/HEAD/lib/china-express.rb -------------------------------------------------------------------------------- /lib/express/company.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/china-express/HEAD/lib/express/company.rb -------------------------------------------------------------------------------- /lib/express/result.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/china-express/HEAD/lib/express/result.rb -------------------------------------------------------------------------------- /spec/china-express_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/china-express/HEAD/spec/china-express_spec.rb -------------------------------------------------------------------------------- /spec/express/company_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/china-express/HEAD/spec/express/company_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/china-express/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------