├── .gitignore ├── .ruby-gemset ├── .ruby-version ├── .sass-cache └── 789c1ce25d351232b3d065230775cfd9e579bee7 │ └── bootstrap_mods.css.scssc ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── app ├── assets │ ├── images │ │ ├── cross_scratches.png │ │ ├── feed-icon.svg │ │ ├── gridme.png │ │ ├── groovepaper.png │ │ ├── handmadepaper.png │ │ ├── noise_pattern_with_crosslines.png │ │ ├── project_papper.png │ │ └── rails.png │ ├── javascripts │ │ ├── application.js │ │ ├── bits.js.coffee │ │ ├── init.js.coffee │ │ ├── sessions.js.coffee │ │ ├── users.js.coffee │ │ └── welcome.js.coffee │ └── stylesheets │ │ ├── application.css │ │ ├── bits.css.scss │ │ ├── bootstrap_mods.css.scss │ │ ├── global.css.scss │ │ ├── sessions.css.scss │ │ ├── users.css.scss │ │ └── welcome.css.scss ├── controllers │ ├── application_controller.rb │ ├── bits_controller.rb │ ├── sessions_controller.rb │ ├── users_controller.rb │ └── welcome_controller.rb ├── helpers │ ├── application_helper.rb │ ├── bits_helper.rb │ ├── sessions_helper.rb │ ├── users_helper.rb │ └── welcome_helper.rb ├── mailers │ └── .gitkeep ├── models │ ├── .gitkeep │ ├── ability.rb │ ├── bit.rb │ ├── comment.rb │ ├── user.rb │ └── vote.rb └── views │ ├── bits │ ├── _bit.html.haml │ ├── _form.html.haml │ ├── _tags.html.erb │ ├── edit.html.haml │ ├── index.html.haml │ ├── index.rss.builder │ ├── new.html.haml │ └── show.html.haml │ ├── kaminari │ ├── _first_page.html.haml │ ├── _gap.html.haml │ ├── _last_page.html.haml │ ├── _next_page.html.haml │ ├── _page.html.haml │ ├── _paginator.html.haml │ └── _prev_page.html.haml │ ├── layouts │ └── application.html.haml │ ├── opinio │ └── comments │ │ ├── _comment.html.haml │ │ ├── _comments.html.haml │ │ ├── _new.html.haml │ │ ├── create.js.erb │ │ ├── destroy.js.erb │ │ ├── index.html.erb │ │ └── reply.js.erb │ ├── sessions │ └── new.html.haml │ ├── users │ ├── _form.html.haml │ ├── edit.html.haml │ ├── new.html.haml │ └── show.html.haml │ └── welcome │ ├── about.html.haml │ └── index.html.haml ├── config.ru ├── config ├── application.rb ├── boot.rb ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── backtrace_silencers.rb │ ├── inflections.rb │ ├── kaminari_config.rb │ ├── mime_types.rb │ ├── opinio.rb │ ├── secret_token.rb │ ├── session_store.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml └── routes.rb ├── db ├── migrate │ ├── 20120205001120_create_users.rb │ ├── 20120205030600_create_bits.rb │ ├── 20120205220532_thumbs_up_migration.rb │ ├── 20120208075747_create_comments.rb │ ├── 20120211215741_acts_as_taggable_on_migration.rb │ ├── 20120222072844_add_admin_to_user.rb │ └── 20120227031349_convert_bit_types.rb ├── schema.rb └── seeds.rb ├── doc └── README_FOR_APP ├── lib ├── assets │ └── .gitkeep └── tasks │ └── .gitkeep ├── log └── .gitkeep ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico ├── robots.txt └── welcome │ └── index.html ├── script └── rails ├── test ├── fixtures │ ├── .gitkeep │ ├── bits.yml │ └── users.yml ├── functional │ ├── .gitkeep │ ├── bits_controller_test.rb │ ├── sessions_controller_test.rb │ ├── users_controller_test.rb │ └── welcome_controller_test.rb ├── integration │ └── .gitkeep ├── performance │ └── browsing_test.rb ├── test_helper.rb └── unit │ ├── .gitkeep │ ├── bit_test.rb │ ├── helpers │ ├── bits_helper_test.rb │ ├── sessions_helper_test.rb │ ├── users_helper_test.rb │ └── welcome_helper_test.rb │ └── user_test.rb └── vendor ├── assets ├── javascripts │ ├── .gitkeep │ ├── google-code-prettify │ │ ├── lang-apollo.js │ │ ├── lang-clj.js │ │ ├── lang-css.js │ │ ├── lang-go.js │ │ ├── lang-hs.js │ │ ├── lang-lisp.js │ │ ├── lang-lua.js │ │ ├── lang-ml.js │ │ ├── lang-n.js │ │ ├── lang-proto.js │ │ ├── lang-scala.js │ │ ├── lang-sql.js │ │ ├── lang-tex.js │ │ ├── lang-vb.js │ │ ├── lang-vhdl.js │ │ ├── lang-wiki.js │ │ ├── lang-xq.js │ │ ├── lang-yaml.js │ │ └── prettify.js │ └── textext.jquery.js └── stylesheets │ ├── .gitkeep │ └── google-code-prettify │ └── prettify.css └── plugins └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-gemset: -------------------------------------------------------------------------------- 1 | vimbits 2 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-1.9.3-p448 2 | -------------------------------------------------------------------------------- /.sass-cache/789c1ce25d351232b3d065230775cfd9e579bee7/bootstrap_mods.css.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/.sass-cache/789c1ce25d351232b3d065230775cfd9e579bee7/bootstrap_mods.css.scssc -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/images/cross_scratches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/assets/images/cross_scratches.png -------------------------------------------------------------------------------- /app/assets/images/feed-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/assets/images/feed-icon.svg -------------------------------------------------------------------------------- /app/assets/images/gridme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/assets/images/gridme.png -------------------------------------------------------------------------------- /app/assets/images/groovepaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/assets/images/groovepaper.png -------------------------------------------------------------------------------- /app/assets/images/handmadepaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/assets/images/handmadepaper.png -------------------------------------------------------------------------------- /app/assets/images/noise_pattern_with_crosslines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/assets/images/noise_pattern_with_crosslines.png -------------------------------------------------------------------------------- /app/assets/images/project_papper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/assets/images/project_papper.png -------------------------------------------------------------------------------- /app/assets/images/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/assets/images/rails.png -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/bits.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/assets/javascripts/bits.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/init.js.coffee: -------------------------------------------------------------------------------- 1 | $( ()-> 2 | prettyPrint() 3 | ) 4 | -------------------------------------------------------------------------------- /app/assets/javascripts/sessions.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/assets/javascripts/sessions.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/users.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/assets/javascripts/users.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/welcome.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/assets/javascripts/welcome.js.coffee -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/assets/stylesheets/bits.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/assets/stylesheets/bits.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/bootstrap_mods.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/assets/stylesheets/bootstrap_mods.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/global.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/assets/stylesheets/global.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/sessions.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/assets/stylesheets/sessions.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/users.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/assets/stylesheets/users.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/welcome.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/assets/stylesheets/welcome.css.scss -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/bits_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/controllers/bits_controller.rb -------------------------------------------------------------------------------- /app/controllers/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/controllers/sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /app/controllers/welcome_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/controllers/welcome_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/bits_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/helpers/bits_helper.rb -------------------------------------------------------------------------------- /app/helpers/sessions_helper.rb: -------------------------------------------------------------------------------- 1 | module SessionsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/users_helper.rb: -------------------------------------------------------------------------------- 1 | module UsersHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/welcome_helper.rb: -------------------------------------------------------------------------------- 1 | module WelcomeHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/mailers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/ability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/models/ability.rb -------------------------------------------------------------------------------- /app/models/bit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/models/bit.rb -------------------------------------------------------------------------------- /app/models/comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/models/comment.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/models/vote.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/models/vote.rb -------------------------------------------------------------------------------- /app/views/bits/_bit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/views/bits/_bit.html.haml -------------------------------------------------------------------------------- /app/views/bits/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/views/bits/_form.html.haml -------------------------------------------------------------------------------- /app/views/bits/_tags.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/views/bits/_tags.html.erb -------------------------------------------------------------------------------- /app/views/bits/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/views/bits/edit.html.haml -------------------------------------------------------------------------------- /app/views/bits/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/views/bits/index.html.haml -------------------------------------------------------------------------------- /app/views/bits/index.rss.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/views/bits/index.rss.builder -------------------------------------------------------------------------------- /app/views/bits/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/views/bits/new.html.haml -------------------------------------------------------------------------------- /app/views/bits/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/views/bits/show.html.haml -------------------------------------------------------------------------------- /app/views/kaminari/_first_page.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/views/kaminari/_first_page.html.haml -------------------------------------------------------------------------------- /app/views/kaminari/_gap.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/views/kaminari/_gap.html.haml -------------------------------------------------------------------------------- /app/views/kaminari/_last_page.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/views/kaminari/_last_page.html.haml -------------------------------------------------------------------------------- /app/views/kaminari/_next_page.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/views/kaminari/_next_page.html.haml -------------------------------------------------------------------------------- /app/views/kaminari/_page.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/views/kaminari/_page.html.haml -------------------------------------------------------------------------------- /app/views/kaminari/_paginator.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/views/kaminari/_paginator.html.haml -------------------------------------------------------------------------------- /app/views/kaminari/_prev_page.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/views/kaminari/_prev_page.html.haml -------------------------------------------------------------------------------- /app/views/layouts/application.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/views/layouts/application.html.haml -------------------------------------------------------------------------------- /app/views/opinio/comments/_comment.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/views/opinio/comments/_comment.html.haml -------------------------------------------------------------------------------- /app/views/opinio/comments/_comments.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/views/opinio/comments/_comments.html.haml -------------------------------------------------------------------------------- /app/views/opinio/comments/_new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/views/opinio/comments/_new.html.haml -------------------------------------------------------------------------------- /app/views/opinio/comments/create.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/views/opinio/comments/create.js.erb -------------------------------------------------------------------------------- /app/views/opinio/comments/destroy.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/views/opinio/comments/destroy.js.erb -------------------------------------------------------------------------------- /app/views/opinio/comments/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/views/opinio/comments/index.html.erb -------------------------------------------------------------------------------- /app/views/opinio/comments/reply.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/views/opinio/comments/reply.js.erb -------------------------------------------------------------------------------- /app/views/sessions/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/views/sessions/new.html.haml -------------------------------------------------------------------------------- /app/views/users/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/views/users/_form.html.haml -------------------------------------------------------------------------------- /app/views/users/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/views/users/edit.html.haml -------------------------------------------------------------------------------- /app/views/users/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/views/users/new.html.haml -------------------------------------------------------------------------------- /app/views/users/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/views/users/show.html.haml -------------------------------------------------------------------------------- /app/views/welcome/about.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/views/welcome/about.html.haml -------------------------------------------------------------------------------- /app/views/welcome/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/app/views/welcome/index.html.haml -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/kaminari_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/config/initializers/kaminari_config.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/opinio.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/config/initializers/opinio.rb -------------------------------------------------------------------------------- /config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/config/routes.rb -------------------------------------------------------------------------------- /db/migrate/20120205001120_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/db/migrate/20120205001120_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20120205030600_create_bits.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/db/migrate/20120205030600_create_bits.rb -------------------------------------------------------------------------------- /db/migrate/20120205220532_thumbs_up_migration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/db/migrate/20120205220532_thumbs_up_migration.rb -------------------------------------------------------------------------------- /db/migrate/20120208075747_create_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/db/migrate/20120208075747_create_comments.rb -------------------------------------------------------------------------------- /db/migrate/20120211215741_acts_as_taggable_on_migration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/db/migrate/20120211215741_acts_as_taggable_on_migration.rb -------------------------------------------------------------------------------- /db/migrate/20120222072844_add_admin_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/db/migrate/20120222072844_add_admin_to_user.rb -------------------------------------------------------------------------------- /db/migrate/20120227031349_convert_bit_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/db/migrate/20120227031349_convert_bit_types.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /doc/README_FOR_APP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/doc/README_FOR_APP -------------------------------------------------------------------------------- /lib/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/welcome/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/public/welcome/index.html -------------------------------------------------------------------------------- /script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/script/rails -------------------------------------------------------------------------------- /test/fixtures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/bits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/test/fixtures/bits.yml -------------------------------------------------------------------------------- /test/fixtures/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/test/fixtures/users.yml -------------------------------------------------------------------------------- /test/functional/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/functional/bits_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/test/functional/bits_controller_test.rb -------------------------------------------------------------------------------- /test/functional/sessions_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/test/functional/sessions_controller_test.rb -------------------------------------------------------------------------------- /test/functional/users_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/test/functional/users_controller_test.rb -------------------------------------------------------------------------------- /test/functional/welcome_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/test/functional/welcome_controller_test.rb -------------------------------------------------------------------------------- /test/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/performance/browsing_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/test/performance/browsing_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unit/bit_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/test/unit/bit_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/bits_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/test/unit/helpers/bits_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/sessions_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/test/unit/helpers/sessions_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/users_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/test/unit/helpers/users_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/welcome_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/test/unit/helpers/welcome_helper_test.rb -------------------------------------------------------------------------------- /test/unit/user_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/test/unit/user_test.rb -------------------------------------------------------------------------------- /vendor/assets/javascripts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/javascripts/google-code-prettify/lang-apollo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/vendor/assets/javascripts/google-code-prettify/lang-apollo.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/google-code-prettify/lang-clj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/vendor/assets/javascripts/google-code-prettify/lang-clj.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/google-code-prettify/lang-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/vendor/assets/javascripts/google-code-prettify/lang-css.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/google-code-prettify/lang-go.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/vendor/assets/javascripts/google-code-prettify/lang-go.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/google-code-prettify/lang-hs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/vendor/assets/javascripts/google-code-prettify/lang-hs.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/google-code-prettify/lang-lisp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/vendor/assets/javascripts/google-code-prettify/lang-lisp.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/google-code-prettify/lang-lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/vendor/assets/javascripts/google-code-prettify/lang-lua.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/google-code-prettify/lang-ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/vendor/assets/javascripts/google-code-prettify/lang-ml.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/google-code-prettify/lang-n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/vendor/assets/javascripts/google-code-prettify/lang-n.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/google-code-prettify/lang-proto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/vendor/assets/javascripts/google-code-prettify/lang-proto.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/google-code-prettify/lang-scala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/vendor/assets/javascripts/google-code-prettify/lang-scala.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/google-code-prettify/lang-sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/vendor/assets/javascripts/google-code-prettify/lang-sql.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/google-code-prettify/lang-tex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/vendor/assets/javascripts/google-code-prettify/lang-tex.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/google-code-prettify/lang-vb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/vendor/assets/javascripts/google-code-prettify/lang-vb.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/google-code-prettify/lang-vhdl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/vendor/assets/javascripts/google-code-prettify/lang-vhdl.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/google-code-prettify/lang-wiki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/vendor/assets/javascripts/google-code-prettify/lang-wiki.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/google-code-prettify/lang-xq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/vendor/assets/javascripts/google-code-prettify/lang-xq.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/google-code-prettify/lang-yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/vendor/assets/javascripts/google-code-prettify/lang-yaml.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/google-code-prettify/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/vendor/assets/javascripts/google-code-prettify/prettify.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/textext.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/vendor/assets/javascripts/textext.jquery.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/google-code-prettify/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkuchta/Vimbits/HEAD/vendor/assets/stylesheets/google-code-prettify/prettify.css -------------------------------------------------------------------------------- /vendor/plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------