kirgudu_sso 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (96) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +34 -0
  5. data/app/assets/templates/kirgudu_sso/authentications/base/fonts/caecilialtstd-bold-webfont.woff +0 -0
  6. data/app/assets/templates/kirgudu_sso/authentications/base/fonts/caecilialtstd-light-webfont.woff +0 -0
  7. data/app/assets/templates/kirgudu_sso/authentications/base/fonts/gotham-bold.woff +0 -0
  8. data/app/assets/templates/kirgudu_sso/authentications/base/fonts/gotham-book.woff +0 -0
  9. data/app/assets/templates/kirgudu_sso/authentications/base/images/badge-free.png +0 -0
  10. data/app/assets/templates/kirgudu_sso/authentications/base/images/badge-free@2x.png +0 -0
  11. data/app/assets/templates/kirgudu_sso/authentications/base/images/badge-premium.png +0 -0
  12. data/app/assets/templates/kirgudu_sso/authentications/base/images/badge-premium@2x.png +0 -0
  13. data/app/assets/templates/kirgudu_sso/authentications/base/images/chevron-blue-bg.png +0 -0
  14. data/app/assets/templates/kirgudu_sso/authentications/base/images/chevron-blue-bg@2x.png +0 -0
  15. data/app/assets/templates/kirgudu_sso/authentications/base/images/error-bang.png +0 -0
  16. data/app/assets/templates/kirgudu_sso/authentications/base/images/error-bang@2x.png +0 -0
  17. data/app/assets/templates/kirgudu_sso/authentications/base/images/green-check.png +0 -0
  18. data/app/assets/templates/kirgudu_sso/authentications/base/images/green-check@2x.png +0 -0
  19. data/app/assets/templates/kirgudu_sso/authentications/base/images/header-bar.png +0 -0
  20. data/app/assets/templates/kirgudu_sso/authentications/base/images/icon-settings.png +0 -0
  21. data/app/assets/templates/kirgudu_sso/authentications/base/images/icon-settings@2x.png +0 -0
  22. data/app/assets/templates/kirgudu_sso/authentications/base/images/icon-shield-white.png +0 -0
  23. data/app/assets/templates/kirgudu_sso/authentications/base/images/icon-shield-white@2x.png +0 -0
  24. data/app/assets/templates/kirgudu_sso/authentications/base/images/kirgudu-sso-tour1@2x.png +0 -0
  25. data/app/assets/templates/kirgudu_sso/authentications/base/images/kirgudu-sso-tour2@2x.png +0 -0
  26. data/app/assets/templates/kirgudu_sso/authentications/base/images/kirgudu-sso-tour3@2x.png +0 -0
  27. data/app/assets/templates/kirgudu_sso/authentications/base/images/menu-dropdown-arrow-white (1).png +0 -0
  28. data/app/assets/templates/kirgudu_sso/authentications/base/images/menu-dropdown-arrow-white.png +0 -0
  29. data/app/assets/templates/kirgudu_sso/authentications/base/images/settings-bg.jpeg +0 -0
  30. data/app/assets/templates/kirgudu_sso/authentications/base/stylesheets/register.css +794 -0
  31. data/app/assets/templates/kirgudu_sso/authentications/base/stylesheets/sso.css +4824 -0
  32. data/app/controllers/kirgudu_sso/authentications_controller.rb +140 -0
  33. data/app/controllers/kirgudu_sso/base_controller.rb +5 -0
  34. data/app/helpers/kirgudu_sso/application_helper.rb +4 -0
  35. data/app/models/kirgudu_sso/client.rb +142 -0
  36. data/app/models/kirgudu_sso/http_error.rb +5 -0
  37. data/app/views/kirgudu_sso/application.html.erb +14 -0
  38. data/app/views/kirgudu_sso/authentications/base/authentications/confirm_email.html.erb +51 -0
  39. data/app/views/kirgudu_sso/authentications/base/authentications/login.html.erb +60 -0
  40. data/app/views/kirgudu_sso/authentications/base/authentications/register.html.erb +123 -0
  41. data/app/views/kirgudu_sso/authentications/base/authentications/register_successful.html.erb +25 -0
  42. data/app/views/kirgudu_sso/authentications/base/authentications/restore_password.html.erb +53 -0
  43. data/app/views/kirgudu_sso/authentications/base/authentications/restore_password_code.html.erb +49 -0
  44. data/app/views/kirgudu_sso/authentications/base/authentications/restore_password_success.html.erb +33 -0
  45. data/app/views/kirgudu_sso/authentications/base/layouts/application.html.erb +128 -0
  46. data/app/views/kirgudu_sso/authentications/base/mailers/authentications/confirmation_code.html.erb +21 -0
  47. data/app/views/kirgudu_sso/authentications/base/mailers/authentications/confirmation_code.text.erb +21 -0
  48. data/app/views/kirgudu_sso/authentications/base/mailers/authentications/restore_password_code.html.erb +20 -0
  49. data/app/views/kirgudu_sso/authentications/base/mailers/authentications/restore_password_code.text.erb +20 -0
  50. data/app/views/kirgudu_sso/authentications/base/mailers/authentications/restore_password_success.html.erb +12 -0
  51. data/app/views/kirgudu_sso/authentications/base/mailers/authentications/restore_password_success.text.erb +18 -0
  52. data/config/locales/chupakabra_tools.en.yml +28 -0
  53. data/config/locales/chupakabra_tools.ru.yml +28 -0
  54. data/config/locales/kirgudu_sso.en.yml +79 -0
  55. data/config/locales/kirgudu_sso.ru.yml +145 -0
  56. data/config/routes.rb +2 -0
  57. data/lib/kirgudu_sso/engine.rb +5 -0
  58. data/lib/kirgudu_sso/version.rb +3 -0
  59. data/lib/kirgudu_sso.rb +4 -0
  60. data/lib/tasks/kirgudu_sso_tasks.rake +4 -0
  61. data/test/dummy/README.rdoc +28 -0
  62. data/test/dummy/Rakefile +6 -0
  63. data/test/dummy/app/assets/javascripts/application.js +13 -0
  64. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  65. data/test/dummy/app/controllers/application_controller.rb +5 -0
  66. data/test/dummy/app/helpers/application_helper.rb +2 -0
  67. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  68. data/test/dummy/bin/bundle +3 -0
  69. data/test/dummy/bin/rails +4 -0
  70. data/test/dummy/bin/rake +4 -0
  71. data/test/dummy/config/application.rb +23 -0
  72. data/test/dummy/config/boot.rb +5 -0
  73. data/test/dummy/config/database.yml +25 -0
  74. data/test/dummy/config/environment.rb +5 -0
  75. data/test/dummy/config/environments/development.rb +37 -0
  76. data/test/dummy/config/environments/production.rb +83 -0
  77. data/test/dummy/config/environments/test.rb +39 -0
  78. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  79. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  80. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  81. data/test/dummy/config/initializers/inflections.rb +16 -0
  82. data/test/dummy/config/initializers/mime_types.rb +4 -0
  83. data/test/dummy/config/initializers/session_store.rb +3 -0
  84. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  85. data/test/dummy/config/locales/en.yml +23 -0
  86. data/test/dummy/config/routes.rb +4 -0
  87. data/test/dummy/config/secrets.yml +22 -0
  88. data/test/dummy/config.ru +4 -0
  89. data/test/dummy/public/404.html +67 -0
  90. data/test/dummy/public/422.html +67 -0
  91. data/test/dummy/public/500.html +66 -0
  92. data/test/dummy/public/favicon.ico +0 -0
  93. data/test/integration/navigation_test.rb +10 -0
  94. data/test/kirgudu_sso_test.rb +7 -0
  95. data/test/test_helper.rb +15 -0
  96. metadata +258 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 1c3fbba3cb6af31266265d124d404a518d6c22d3
4
+ data.tar.gz: 7b5f6d5b2c1a281a3ba21c53dd5cf7426730466f
5
+ SHA512:
6
+ metadata.gz: 7fc0e5d327c055347360c143db9e2702fe800357c9d94d490695ab148c79d1d81706749973031b8b74e462aec68cf619ddfcda98285f129943ef8dda9fd1a4fc
7
+ data.tar.gz: bf85188c42b86aef0f4ce3f47f78705968271b8efc3e0d614969afaab94ed2221f4e4f5dc984a765b382ce630b4003dd1b8349c3b949ecacc7bcfc347df449aa
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright 2014 YOURNAME
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,3 @@
1
+ = KirguduSso
2
+
3
+ This project rocks and uses MIT-LICENSE.
data/Rakefile ADDED
@@ -0,0 +1,34 @@
1
+ begin
2
+ require 'bundler/setup'
3
+ rescue LoadError
4
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
+ end
6
+
7
+ require 'rdoc/task'
8
+
9
+ RDoc::Task.new(:rdoc) do |rdoc|
10
+ rdoc.rdoc_dir = 'rdoc'
11
+ rdoc.title = 'KirguduSso'
12
+ rdoc.options << '--line-numbers'
13
+ rdoc.rdoc_files.include('README.rdoc')
14
+ rdoc.rdoc_files.include('lib/**/*.rb')
15
+ end
16
+
17
+ APP_RAKEFILE = File.expand_path("../test/dummy/Rakefile", __FILE__)
18
+ load 'rails/tasks/engine.rake'
19
+
20
+
21
+
22
+ Bundler::GemHelper.install_tasks
23
+
24
+ require 'rake/testtask'
25
+
26
+ Rake::TestTask.new(:test) do |t|
27
+ t.libs << 'lib'
28
+ t.libs << 'test'
29
+ t.pattern = 'test/**/*_test.rb'
30
+ t.verbose = false
31
+ end
32
+
33
+
34
+ task default: :test