├── .gitignore ├── Appraisals ├── Gemfile ├── LICENSE-MIT ├── README.md ├── Rakefile ├── bower.json ├── changelog.md ├── gemfiles ├── rails30.gemfile └── rails30.gemfile.lock ├── jquery-atwho-rails.gemspec ├── lib ├── assets │ ├── javascripts │ │ └── jquery.atwho │ │ │ ├── index.js │ │ │ ├── jquery.atwho.js │ │ │ └── jquery.caret.js │ └── stylesheets │ │ └── jquery.atwho.css ├── generators │ └── atwho │ │ └── install_generator.rb ├── jquery-atwho-rails.rb └── jquery-atwho-rails │ └── version.rb └── spec ├── generators └── install_generator_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichord/jquery-atwho-rails/HEAD/.gitignore -------------------------------------------------------------------------------- /Appraisals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichord/jquery-atwho-rails/HEAD/Appraisals -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichord/jquery-atwho-rails/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichord/jquery-atwho-rails/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichord/jquery-atwho-rails/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichord/jquery-atwho-rails/HEAD/Rakefile -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichord/jquery-atwho-rails/HEAD/bower.json -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichord/jquery-atwho-rails/HEAD/changelog.md -------------------------------------------------------------------------------- /gemfiles/rails30.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichord/jquery-atwho-rails/HEAD/gemfiles/rails30.gemfile -------------------------------------------------------------------------------- /gemfiles/rails30.gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichord/jquery-atwho-rails/HEAD/gemfiles/rails30.gemfile.lock -------------------------------------------------------------------------------- /jquery-atwho-rails.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichord/jquery-atwho-rails/HEAD/jquery-atwho-rails.gemspec -------------------------------------------------------------------------------- /lib/assets/javascripts/jquery.atwho/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichord/jquery-atwho-rails/HEAD/lib/assets/javascripts/jquery.atwho/index.js -------------------------------------------------------------------------------- /lib/assets/javascripts/jquery.atwho/jquery.atwho.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichord/jquery-atwho-rails/HEAD/lib/assets/javascripts/jquery.atwho/jquery.atwho.js -------------------------------------------------------------------------------- /lib/assets/javascripts/jquery.atwho/jquery.caret.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichord/jquery-atwho-rails/HEAD/lib/assets/javascripts/jquery.atwho/jquery.caret.js -------------------------------------------------------------------------------- /lib/assets/stylesheets/jquery.atwho.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichord/jquery-atwho-rails/HEAD/lib/assets/stylesheets/jquery.atwho.css -------------------------------------------------------------------------------- /lib/generators/atwho/install_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichord/jquery-atwho-rails/HEAD/lib/generators/atwho/install_generator.rb -------------------------------------------------------------------------------- /lib/jquery-atwho-rails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichord/jquery-atwho-rails/HEAD/lib/jquery-atwho-rails.rb -------------------------------------------------------------------------------- /lib/jquery-atwho-rails/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichord/jquery-atwho-rails/HEAD/lib/jquery-atwho-rails/version.rb -------------------------------------------------------------------------------- /spec/generators/install_generator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichord/jquery-atwho-rails/HEAD/spec/generators/install_generator_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichord/jquery-atwho-rails/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------