├── .document ├── .gitignore ├── Gemfile ├── LICENSE ├── README.markdown ├── Rakefile ├── indefinite_article.gemspec ├── lib ├── indefinite_article.rb └── indefinite_article │ └── version.rb └── test ├── helper.rb └── test_indefinite_article.rb /.document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossmeissl/indefinite_article/HEAD/.document -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | .bundle 3 | Gemfile.lock 4 | pkg/* 5 | .rvmrc 6 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossmeissl/indefinite_article/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossmeissl/indefinite_article/HEAD/LICENSE -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossmeissl/indefinite_article/HEAD/README.markdown -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossmeissl/indefinite_article/HEAD/Rakefile -------------------------------------------------------------------------------- /indefinite_article.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossmeissl/indefinite_article/HEAD/indefinite_article.gemspec -------------------------------------------------------------------------------- /lib/indefinite_article.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossmeissl/indefinite_article/HEAD/lib/indefinite_article.rb -------------------------------------------------------------------------------- /lib/indefinite_article/version.rb: -------------------------------------------------------------------------------- 1 | module IndefiniteArticle 2 | VERSION = "0.2.5" 3 | end 4 | -------------------------------------------------------------------------------- /test/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossmeissl/indefinite_article/HEAD/test/helper.rb -------------------------------------------------------------------------------- /test/test_indefinite_article.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossmeissl/indefinite_article/HEAD/test/test_indefinite_article.rb --------------------------------------------------------------------------------