├── CHANGELOG.markdown ├── MIT-LICENSE ├── README.markdown ├── examples ├── routes.rb ├── users_controller.rb ├── voteable.html.erb ├── voteable.rb ├── voteables_controller.rb ├── votes │ ├── _voteable_vote.html.erb │ └── create.rjs └── votes_controller.rb ├── init.rb ├── lib ├── acts_as_voteable.rb ├── acts_as_voter.rb ├── controllers │ └── votes_controller.rb ├── generators │ ├── templates │ │ └── migration.rb │ └── vote_fu_generator.rb ├── has_karma.rb ├── models │ └── vote.rb └── vote_fu.rb ├── rails └── init.rb ├── test └── vote_fu_test.rb └── vote_fu.gemspec /CHANGELOG.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vshvedov/vote_fu_rails_3/HEAD/CHANGELOG.markdown -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vshvedov/vote_fu_rails_3/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vshvedov/vote_fu_rails_3/HEAD/README.markdown -------------------------------------------------------------------------------- /examples/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vshvedov/vote_fu_rails_3/HEAD/examples/routes.rb -------------------------------------------------------------------------------- /examples/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vshvedov/vote_fu_rails_3/HEAD/examples/users_controller.rb -------------------------------------------------------------------------------- /examples/voteable.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vshvedov/vote_fu_rails_3/HEAD/examples/voteable.html.erb -------------------------------------------------------------------------------- /examples/voteable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vshvedov/vote_fu_rails_3/HEAD/examples/voteable.rb -------------------------------------------------------------------------------- /examples/voteables_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vshvedov/vote_fu_rails_3/HEAD/examples/voteables_controller.rb -------------------------------------------------------------------------------- /examples/votes/_voteable_vote.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vshvedov/vote_fu_rails_3/HEAD/examples/votes/_voteable_vote.html.erb -------------------------------------------------------------------------------- /examples/votes/create.rjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vshvedov/vote_fu_rails_3/HEAD/examples/votes/create.rjs -------------------------------------------------------------------------------- /examples/votes_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vshvedov/vote_fu_rails_3/HEAD/examples/votes_controller.rb -------------------------------------------------------------------------------- /init.rb: -------------------------------------------------------------------------------- 1 | require 'vote_fu' 2 | -------------------------------------------------------------------------------- /lib/acts_as_voteable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vshvedov/vote_fu_rails_3/HEAD/lib/acts_as_voteable.rb -------------------------------------------------------------------------------- /lib/acts_as_voter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vshvedov/vote_fu_rails_3/HEAD/lib/acts_as_voter.rb -------------------------------------------------------------------------------- /lib/controllers/votes_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vshvedov/vote_fu_rails_3/HEAD/lib/controllers/votes_controller.rb -------------------------------------------------------------------------------- /lib/generators/templates/migration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vshvedov/vote_fu_rails_3/HEAD/lib/generators/templates/migration.rb -------------------------------------------------------------------------------- /lib/generators/vote_fu_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vshvedov/vote_fu_rails_3/HEAD/lib/generators/vote_fu_generator.rb -------------------------------------------------------------------------------- /lib/has_karma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vshvedov/vote_fu_rails_3/HEAD/lib/has_karma.rb -------------------------------------------------------------------------------- /lib/models/vote.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vshvedov/vote_fu_rails_3/HEAD/lib/models/vote.rb -------------------------------------------------------------------------------- /lib/vote_fu.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vshvedov/vote_fu_rails_3/HEAD/lib/vote_fu.rb -------------------------------------------------------------------------------- /rails/init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vshvedov/vote_fu_rails_3/HEAD/rails/init.rb -------------------------------------------------------------------------------- /test/vote_fu_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vshvedov/vote_fu_rails_3/HEAD/test/vote_fu_test.rb -------------------------------------------------------------------------------- /vote_fu.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vshvedov/vote_fu_rails_3/HEAD/vote_fu.gemspec --------------------------------------------------------------------------------