Permalink
Please sign in to comment.
Showing
with
6,366 additions
and 0 deletions.
- +15 −0 .gitignore
- +1 −0 .rspec
- +33 −0 Gemfile
- +114 −0 Gemfile.lock
- +261 −0 README.rdoc
- +7 −0 Rakefile
- BIN app/assets/images/l.png
- BIN app/assets/images/rails.png
- BIN app/assets/images/select2.png
- BIN app/assets/images/superblock.png
- +149 −0 app/assets/javascripts/application.js
- +64 −0 app/assets/javascripts/jquery_class.js
- +1,578 −0 app/assets/javascripts/select2.js
- +866 −0 app/assets/stylesheets/application.css
- +456 −0 app/assets/stylesheets/select2.css
- +29 −0 app/controllers/application_controller.rb
- +75 −0 app/controllers/comments_controller.rb
- +50 −0 app/controllers/home_controller.rb
- +68 −0 app/controllers/login_controller.rb
- +107 −0 app/controllers/messages_controller.rb
- +59 −0 app/controllers/signup_controller.rb
- +225 −0 app/controllers/stories_controller.rb
- +51 −0 app/controllers/users_controller.rb
- +2 −0 app/helpers/application_helper.rb
- 0 app/mailers/.gitkeep
- +11 −0 app/mailers/password_reset.rb
- 0 app/models/.gitkeep
- +58 −0 app/models/comment.rb
- +43 −0 app/models/keystore.rb
- +186 −0 app/models/story.rb
- +2 −0 app/models/tag.rb
- +4 −0 app/models/tagging.rb
- +40 −0 app/models/user.rb
- +102 −0 app/models/vote.rb
- +2 −0 app/views/global/_footer.html.erb
- +43 −0 app/views/global/_header.html.erb
- +10 −0 app/views/home/index.html.erb
- +28 −0 app/views/layouts/application.html.erb
- +24 −0 app/views/login/forgot_password.html.erb
- +36 −0 app/views/login/index.html.erb
- +32 −0 app/views/login/set_new_password.html.erb
- +30 −0 app/views/messages/_list.phtml
- +23 −0 app/views/messages/compose.phtml
- +13 −0 app/views/messages/index.phtml
- +69 −0 app/views/messages/show.phtml
- +7 −0 app/views/password_reset/password_reset_link.text.erb
- +42 −0 app/views/signup/index.html.erb
- +41 −0 app/views/stories/_comment.html.erb
- +23 −0 app/views/stories/_commentbox.html.erb
- +84 −0 app/views/stories/_form.html.erb
- +55 −0 app/views/stories/_listdetail.html.erb
- +13 −0 app/views/stories/edit.phtml
- +2 −0 app/views/stories/manage.phtml
- +15 −0 app/views/stories/new.html.erb
- +23 −0 app/views/stories/show.html.erb
- +51 −0 app/views/users/settings.phtml
- +24 −0 app/views/users/show.phtml
- +4 −0 config.ru
- +59 −0 config/application.rb
- +6 −0 config/boot.rb
- +5 −0 config/environment.rb
- +37 −0 config/environments/development.rb
- +67 −0 config/environments/production.rb
- +37 −0 config/environments/test.rb
- +7 −0 config/initializers/backtrace_silencers.rb
- +15 −0 config/initializers/inflections.rb
- +5 −0 config/initializers/mime_types.rb
- +9 −0 config/initializers/session_store.rb
- +14 −0 config/initializers/wrap_parameters.rb
- +5 −0 config/locales/en.yml
- +35 −0 config/routes.rb
- +100 −0 db/schema.rb
- +7 −0 db/seeds.rb
- +144 −0 extras/markdowner.rb
- +217 −0 extras/sponge.rb
- +16 −0 extras/utils.rb
- 0 log/.gitkeep
- +26 −0 public/404.html
- +26 −0 public/422.html
- +25 −0 public/500.html
- BIN public/favicon.ico
- +5 −0 public/robots.txt
- +6 −0 script/rails
- +104 −0 spec/models/markdowner_spec.rb
- +32 −0 spec/spec_helper.rb
- +7 −0 spec/support/blueprints.rb
- 0 vendor/assets/javascripts/.gitkeep
- 0 vendor/assets/stylesheets/.gitkeep
- 0 vendor/plugins/.gitkeep
| @@ -0,0 +1,15 @@ | ||
| # See http://help.github.com/ignore-files/ for more about ignoring files. | ||
| # | ||
| # If you find yourself ignoring temporary files generated by your text editor | ||
| # or operating system, you probably want to add a global ignore instead: | ||
| # git config --global core.excludesfile ~/.gitignore_global | ||
| # Ignore bundler config | ||
| /.bundle | ||
| # Ignore the default SQLite database. | ||
| /db/*.sqlite3 | ||
| # Ignore all logfiles and tempfiles. | ||
| /log/*.log | ||
| /tmp |
| @@ -0,0 +1 @@ | ||
| --no-colour |
| @@ -0,0 +1,33 @@ | ||
| source 'https://rubygems.org' | ||
| gem 'rails', '3.2.2' | ||
| # Bundle edge Rails instead: | ||
| # gem 'rails', :git => 'git://github.com/rails/rails.git' | ||
| gem "mysql2" | ||
| gem 'jquery-rails' | ||
| # To use ActiveModel has_secure_password | ||
| gem 'bcrypt-ruby', '~> 3.0.0' | ||
| gem "dynamic_form" | ||
| group :test, :development do | ||
| gem "rspec-rails", "~> 2.6" | ||
| gem "machinist" | ||
| gem "sqlite3" | ||
| end | ||
| # To use Jbuilder templates for JSON | ||
| # gem 'jbuilder' | ||
| # Use unicorn as the app server | ||
| # gem 'unicorn' | ||
| # Deploy with Capistrano | ||
| # gem 'capistrano' | ||
| # To use debugger | ||
| # gem 'ruby-debug19', :require => 'ruby-debug' |
| @@ -0,0 +1,114 @@ | ||
| GEM | ||
| remote: https://rubygems.org/ | ||
| specs: | ||
| actionmailer (3.2.2) | ||
| actionpack (= 3.2.2) | ||
| mail (~> 2.4.0) | ||
| actionpack (3.2.2) | ||
| activemodel (= 3.2.2) | ||
| activesupport (= 3.2.2) | ||
| builder (~> 3.0.0) | ||
| erubis (~> 2.7.0) | ||
| journey (~> 1.0.1) | ||
| rack (~> 1.4.0) | ||
| rack-cache (~> 1.1) | ||
| rack-test (~> 0.6.1) | ||
| sprockets (~> 2.1.2) | ||
| activemodel (3.2.2) | ||
| activesupport (= 3.2.2) | ||
| builder (~> 3.0.0) | ||
| activerecord (3.2.2) | ||
| activemodel (= 3.2.2) | ||
| activesupport (= 3.2.2) | ||
| arel (~> 3.0.2) | ||
| tzinfo (~> 0.3.29) | ||
| activeresource (3.2.2) | ||
| activemodel (= 3.2.2) | ||
| activesupport (= 3.2.2) | ||
| activesupport (3.2.2) | ||
| i18n (~> 0.6) | ||
| multi_json (~> 1.0) | ||
| arel (3.0.2) | ||
| bcrypt-ruby (3.0.1) | ||
| builder (3.0.0) | ||
| diff-lcs (1.1.3) | ||
| dynamic_form (1.1.4) | ||
| erubis (2.7.0) | ||
| hike (1.2.1) | ||
| i18n (0.6.0) | ||
| journey (1.0.3) | ||
| jquery-rails (2.0.1) | ||
| railties (>= 3.2.0, < 5.0) | ||
| thor (~> 0.14) | ||
| json (1.6.5) | ||
| machinist (2.0) | ||
| mail (2.4.4) | ||
| i18n (>= 0.4.0) | ||
| mime-types (~> 1.16) | ||
| treetop (~> 1.4.8) | ||
| mime-types (1.18) | ||
| multi_json (1.1.0) | ||
| mysql2 (0.3.11) | ||
| polyglot (0.3.3) | ||
| rack (1.4.1) | ||
| rack-cache (1.2) | ||
| rack (>= 0.4) | ||
| rack-ssl (1.3.2) | ||
| rack | ||
| rack-test (0.6.1) | ||
| rack (>= 1.0) | ||
| rails (3.2.2) | ||
| actionmailer (= 3.2.2) | ||
| actionpack (= 3.2.2) | ||
| activerecord (= 3.2.2) | ||
| activeresource (= 3.2.2) | ||
| activesupport (= 3.2.2) | ||
| bundler (~> 1.0) | ||
| railties (= 3.2.2) | ||
| railties (3.2.2) | ||
| actionpack (= 3.2.2) | ||
| activesupport (= 3.2.2) | ||
| rack-ssl (~> 1.3.2) | ||
| rake (>= 0.8.7) | ||
| rdoc (~> 3.4) | ||
| thor (~> 0.14.6) | ||
| rake (0.9.2.2) | ||
| rdoc (3.12) | ||
| json (~> 1.4) | ||
| rspec (2.9.0) | ||
| rspec-core (~> 2.9.0) | ||
| rspec-expectations (~> 2.9.0) | ||
| rspec-mocks (~> 2.9.0) | ||
| rspec-core (2.9.0) | ||
| rspec-expectations (2.9.0) | ||
| diff-lcs (~> 1.1.3) | ||
| rspec-mocks (2.9.0) | ||
| rspec-rails (2.9.0) | ||
| actionpack (>= 3.0) | ||
| activesupport (>= 3.0) | ||
| railties (>= 3.0) | ||
| rspec (~> 2.9.0) | ||
| sprockets (2.1.2) | ||
| hike (~> 1.2) | ||
| rack (~> 1.0) | ||
| tilt (~> 1.1, != 1.3.0) | ||
| sqlite3 (1.3.6) | ||
| thor (0.14.6) | ||
| tilt (1.3.3) | ||
| treetop (1.4.10) | ||
| polyglot | ||
| polyglot (>= 0.3.1) | ||
| tzinfo (0.3.32) | ||
| PLATFORMS | ||
| ruby | ||
| DEPENDENCIES | ||
| bcrypt-ruby (~> 3.0.0) | ||
| dynamic_form | ||
| jquery-rails | ||
| machinist | ||
| mysql2 | ||
| rails (= 3.2.2) | ||
| rspec-rails (~> 2.6) | ||
| sqlite3 |
Oops, something went wrong.
0 comments on commit
093747b