├── .gitignore ├── .rspec ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.rdoc ├── Rakefile ├── VERSION ├── donate.png ├── gemfiles ├── mongoid-3.1.gemfile └── mongoid-3.1.gemfile.lock ├── lib └── mongoid-simple-tags.rb ├── mongoid-simple-tags.gemspec ├── mongoid.yml └── spec ├── mongoid-simple-tags_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | .bundle 3 | .rvmrc 4 | Gemfile.lock 5 | pkg/* 6 | -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --colour 2 | --format nested 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashdog/mongoid-simple-tags/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashdog/mongoid-simple-tags/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashdog/mongoid-simple-tags/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashdog/mongoid-simple-tags/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashdog/mongoid-simple-tags/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashdog/mongoid-simple-tags/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashdog/mongoid-simple-tags/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.1.3 -------------------------------------------------------------------------------- /donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashdog/mongoid-simple-tags/HEAD/donate.png -------------------------------------------------------------------------------- /gemfiles/mongoid-3.1.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashdog/mongoid-simple-tags/HEAD/gemfiles/mongoid-3.1.gemfile -------------------------------------------------------------------------------- /gemfiles/mongoid-3.1.gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashdog/mongoid-simple-tags/HEAD/gemfiles/mongoid-3.1.gemfile.lock -------------------------------------------------------------------------------- /lib/mongoid-simple-tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashdog/mongoid-simple-tags/HEAD/lib/mongoid-simple-tags.rb -------------------------------------------------------------------------------- /mongoid-simple-tags.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashdog/mongoid-simple-tags/HEAD/mongoid-simple-tags.gemspec -------------------------------------------------------------------------------- /mongoid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashdog/mongoid-simple-tags/HEAD/mongoid.yml -------------------------------------------------------------------------------- /spec/mongoid-simple-tags_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashdog/mongoid-simple-tags/HEAD/spec/mongoid-simple-tags_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashdog/mongoid-simple-tags/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------