├── .gitignore ├── .rspec ├── .travis.yml ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── lib ├── CHANGELOG.md ├── CONTRIBUTORS.md ├── terrier.rb └── terrier │ ├── doi_data.rb │ ├── html_data.rb │ └── version.rb ├── spec ├── doi_data_spec.rb ├── html_data_spec.rb ├── spec_helper.rb └── terrier_spec.rb └── terrier.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Authorea/terrier/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --colour 2 | --profile 3 | --order rand 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Authorea/terrier/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Authorea/terrier/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Authorea/terrier/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Authorea/terrier/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Authorea/terrier/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Authorea/terrier/HEAD/lib/CHANGELOG.md -------------------------------------------------------------------------------- /lib/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Authorea/terrier/HEAD/lib/CONTRIBUTORS.md -------------------------------------------------------------------------------- /lib/terrier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Authorea/terrier/HEAD/lib/terrier.rb -------------------------------------------------------------------------------- /lib/terrier/doi_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Authorea/terrier/HEAD/lib/terrier/doi_data.rb -------------------------------------------------------------------------------- /lib/terrier/html_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Authorea/terrier/HEAD/lib/terrier/html_data.rb -------------------------------------------------------------------------------- /lib/terrier/version.rb: -------------------------------------------------------------------------------- 1 | class Terrier 2 | VERSION = "1.0.2" 3 | end 4 | -------------------------------------------------------------------------------- /spec/doi_data_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Authorea/terrier/HEAD/spec/doi_data_spec.rb -------------------------------------------------------------------------------- /spec/html_data_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Authorea/terrier/HEAD/spec/html_data_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Authorea/terrier/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/terrier_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Authorea/terrier/HEAD/spec/terrier_spec.rb -------------------------------------------------------------------------------- /terrier.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Authorea/terrier/HEAD/terrier.gemspec --------------------------------------------------------------------------------