├── .gitignore ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Procfile ├── README.md ├── Rakefile ├── app.json ├── app ├── assets │ ├── images │ │ ├── favicon.png │ │ ├── lock.png │ │ └── markdown-icon.png │ ├── javascripts │ │ └── application.js │ └── stylesheets │ │ ├── application.css.sass │ │ ├── errors.css.sass │ │ ├── global.css.sass │ │ ├── reset.css.sass │ │ └── variables.css.sass ├── controllers │ ├── application_controller.rb │ ├── concerns │ │ └── .keep │ ├── errors_controller.rb │ ├── messages_controller.rb │ └── static_pages_controller.rb ├── helpers │ └── application_helper.rb ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── concerns │ │ └── .keep │ └── message.rb └── views │ ├── errors │ ├── 404.html.slim │ ├── 422.html.slim │ └── 500.html.slim │ ├── layouts │ ├── application.html.slim │ └── errors.html.slim │ ├── messages │ ├── _form.html.slim │ ├── create.html.slim │ ├── new.html.slim │ └── show.html.slim │ ├── shared │ └── _analytics.html.slim │ └── static_pages │ └── stats.html.slim ├── bin ├── bundle ├── rails └── rake ├── config.ru ├── config ├── application.rb ├── boot.rb ├── database.yml.sample ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── secret_token.rb │ ├── session_store.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml └── routes.rb ├── cryptonote.sublime-project ├── db ├── migrate │ ├── 20130518032627_create_messages.rb │ ├── 20130518052805_add_uuid_to_messages.rb │ ├── 20130607045426_add_salt_key_password_to_users.rb │ └── 20141231230423_add_deleted_to_messages.rb ├── schema.rb └── seeds.rb ├── lib ├── assets │ └── .keep └── tasks │ └── .keep ├── log └── .keep ├── public └── robots.txt ├── test ├── controllers │ └── .keep ├── fixtures │ ├── .keep │ └── messages.yml ├── helpers │ └── .keep ├── integration │ └── .keep ├── mailers │ └── .keep ├── models │ ├── .keep │ └── message_test.rb └── test_helper.rb └── vendor └── assets ├── javascripts ├── .keep ├── jquery.autosize.js └── sjcl.js └── stylesheets └── .keep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: bundle exec puma -p $PORT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/Rakefile -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/app.json -------------------------------------------------------------------------------- /app/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/app/assets/images/favicon.png -------------------------------------------------------------------------------- /app/assets/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/app/assets/images/lock.png -------------------------------------------------------------------------------- /app/assets/images/markdown-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/app/assets/images/markdown-icon.png -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/app/assets/stylesheets/application.css.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/errors.css.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/app/assets/stylesheets/errors.css.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/global.css.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/app/assets/stylesheets/global.css.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/reset.css.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/app/assets/stylesheets/reset.css.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/variables.css.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/app/assets/stylesheets/variables.css.sass -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/errors_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/app/controllers/errors_controller.rb -------------------------------------------------------------------------------- /app/controllers/messages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/app/controllers/messages_controller.rb -------------------------------------------------------------------------------- /app/controllers/static_pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/app/controllers/static_pages_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | 3 | end 4 | -------------------------------------------------------------------------------- /app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/app/models/message.rb -------------------------------------------------------------------------------- /app/views/errors/404.html.slim: -------------------------------------------------------------------------------- 1 | #error-code 404 -------------------------------------------------------------------------------- /app/views/errors/422.html.slim: -------------------------------------------------------------------------------- 1 | #error-code 404 -------------------------------------------------------------------------------- /app/views/errors/500.html.slim: -------------------------------------------------------------------------------- 1 | #error-code 500 -------------------------------------------------------------------------------- /app/views/layouts/application.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/app/views/layouts/application.html.slim -------------------------------------------------------------------------------- /app/views/layouts/errors.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/app/views/layouts/errors.html.slim -------------------------------------------------------------------------------- /app/views/messages/_form.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/app/views/messages/_form.html.slim -------------------------------------------------------------------------------- /app/views/messages/create.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/app/views/messages/create.html.slim -------------------------------------------------------------------------------- /app/views/messages/new.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/app/views/messages/new.html.slim -------------------------------------------------------------------------------- /app/views/messages/show.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/app/views/messages/show.html.slim -------------------------------------------------------------------------------- /app/views/shared/_analytics.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/app/views/shared/_analytics.html.slim -------------------------------------------------------------------------------- /app/views/static_pages/stats.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/app/views/static_pages/stats.html.slim -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/bin/rake -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/database.yml.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/config/database.yml.sample -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- 1 | Rails.application.config.assets.precompile += %w( errors.css ) 2 | -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/config/routes.rb -------------------------------------------------------------------------------- /cryptonote.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/cryptonote.sublime-project -------------------------------------------------------------------------------- /db/migrate/20130518032627_create_messages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/db/migrate/20130518032627_create_messages.rb -------------------------------------------------------------------------------- /db/migrate/20130518052805_add_uuid_to_messages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/db/migrate/20130518052805_add_uuid_to_messages.rb -------------------------------------------------------------------------------- /db/migrate/20130607045426_add_salt_key_password_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/db/migrate/20130607045426_add_salt_key_password_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20141231230423_add_deleted_to_messages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/db/migrate/20141231230423_add_deleted_to_messages.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /messages/ -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/messages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/test/fixtures/messages.yml -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/message_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/test/models/message_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.autosize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/vendor/assets/javascripts/jquery.autosize.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/sjcl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alainmeier/cryptonote/HEAD/vendor/assets/javascripts/sjcl.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------