vkhater-social_stream-documents 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (174) hide show
  1. data/.gitignore +15 -0
  2. data/.rspec +1 -0
  3. data/Gemfile +5 -0
  4. data/MIT-LICENSE +20 -0
  5. data/README.rdoc +6 -0
  6. data/Rakefile +26 -0
  7. data/app/assets/flash/Jplayer.swf +0 -0
  8. data/app/assets/images/16/audio.png +0 -0
  9. data/app/assets/images/16/btn_documents.png +0 -0
  10. data/app/assets/images/16/default.png +0 -0
  11. data/app/assets/images/16/doc.png +0 -0
  12. data/app/assets/images/16/mpeg.png +0 -0
  13. data/app/assets/images/16/pdf.png +0 -0
  14. data/app/assets/images/16/photo.png +0 -0
  15. data/app/assets/images/16/plain.png +0 -0
  16. data/app/assets/images/16/ppt.png +0 -0
  17. data/app/assets/images/16/rar.png +0 -0
  18. data/app/assets/images/16/video.png +0 -0
  19. data/app/assets/images/16/xls.png +0 -0
  20. data/app/assets/images/16/zip.png +0 -0
  21. data/app/assets/images/48/audio.png +0 -0
  22. data/app/assets/images/48/default.png +0 -0
  23. data/app/assets/images/48/excel.png +0 -0
  24. data/app/assets/images/48/mpeg.png +0 -0
  25. data/app/assets/images/48/pdf.png +0 -0
  26. data/app/assets/images/48/ppt.png +0 -0
  27. data/app/assets/images/48/rar.png +0 -0
  28. data/app/assets/images/48/resource.png +0 -0
  29. data/app/assets/images/48/video.png +0 -0
  30. data/app/assets/images/48/word.png +0 -0
  31. data/app/assets/images/48/zip.png +0 -0
  32. data/app/assets/images/btn/btn_audio.png +0 -0
  33. data/app/assets/images/btn/btn_document.png +0 -0
  34. data/app/assets/images/btn/btn_excel.png +0 -0
  35. data/app/assets/images/btn/btn_pdf.png +0 -0
  36. data/app/assets/images/btn/btn_picture.png +0 -0
  37. data/app/assets/images/btn/btn_resource.png +0 -0
  38. data/app/assets/images/btn/btn_video.png +0 -0
  39. data/app/assets/images/btn/btn_word.png +0 -0
  40. data/app/assets/images/btn/document.png +0 -0
  41. data/app/assets/javascripts/documents.js.erb +71 -0
  42. data/app/assets/javascripts/social_stream-documents.js +3 -0
  43. data/app/assets/stylesheets/documents.css.scss +271 -0
  44. data/app/assets/stylesheets/show.css.scss +111 -0
  45. data/app/assets/stylesheets/social_stream-documents.css +6 -0
  46. data/app/controllers/audios_controller.rb +2 -0
  47. data/app/controllers/documents_controller.rb +97 -0
  48. data/app/controllers/pictures_controller.rb +2 -0
  49. data/app/controllers/videos_controller.rb +2 -0
  50. data/app/helpers/documents_helper.rb +30 -0
  51. data/app/models/audio.rb +24 -0
  52. data/app/models/document.rb +78 -0
  53. data/app/models/picture.rb +30 -0
  54. data/app/models/video.rb +29 -0
  55. data/app/views/audios/_audio.html.erb +27 -0
  56. data/app/views/audios/_audio_focus_search.html.erb +3 -0
  57. data/app/views/audios/_audio_global_search.html.erb +3 -0
  58. data/app/views/audios/_audio_processed.html.erb +45 -0
  59. data/app/views/audios/_audio_processing.html.erb +7 -0
  60. data/app/views/audios/_audio_show.html.erb +62 -0
  61. data/app/views/audios/_audio_with_details.html.erb +3 -0
  62. data/app/views/audios/_new.html.erb +1 -0
  63. data/app/views/audios/destroy.js.erb +1 -0
  64. data/app/views/audios/index.html.erb +1 -0
  65. data/app/views/audios/show.html.erb +2 -0
  66. data/app/views/common_documents/_document_info.html.erb +48 -0
  67. data/app/views/common_documents/_edit_form.html.erb +57 -0
  68. data/app/views/common_documents/_headers.html.erb +72 -0
  69. data/app/views/common_documents/_index.html.erb +68 -0
  70. data/app/views/common_documents/_show.html.erb +34 -0
  71. data/app/views/documents/_document.html.erb +15 -0
  72. data/app/views/documents/_document_focus_search.html.erb +2 -0
  73. data/app/views/documents/_document_global_search.html.erb +2 -0
  74. data/app/views/documents/_document_show.html.erb +7 -0
  75. data/app/views/documents/_document_with_details.html.erb +13 -0
  76. data/app/views/documents/_new_activity.html.erb +1 -0
  77. data/app/views/documents/_new_activity_fields.html.erb +1 -0
  78. data/app/views/documents/destroy.js.erb +1 -0
  79. data/app/views/documents/index.html.erb +1 -0
  80. data/app/views/documents/show.html.erb +2 -0
  81. data/app/views/pictures/_new.html.erb +1 -0
  82. data/app/views/pictures/_picture.html.erb +42 -0
  83. data/app/views/pictures/_picture_focus_search.html.erb +2 -0
  84. data/app/views/pictures/_picture_global_search.html.erb +2 -0
  85. data/app/views/pictures/_picture_show.html.erb +26 -0
  86. data/app/views/pictures/_picture_with_details.html.erb +2 -0
  87. data/app/views/pictures/destroy.js.erb +1 -0
  88. data/app/views/pictures/index.html.erb +1 -0
  89. data/app/views/pictures/show.html.erb +2 -0
  90. data/app/views/videos/_new.html.erb +1 -0
  91. data/app/views/videos/_video.html.erb +29 -0
  92. data/app/views/videos/_video_focus_search.html.erb +2 -0
  93. data/app/views/videos/_video_global_search.html.erb +2 -0
  94. data/app/views/videos/_video_processed.html.erb +50 -0
  95. data/app/views/videos/_video_processing.html.erb +7 -0
  96. data/app/views/videos/_video_show.html.erb +64 -0
  97. data/app/views/videos/_video_with_details.html.erb +2 -0
  98. data/app/views/videos/destroy.js.erb +1 -0
  99. data/app/views/videos/index.html.erb +1 -0
  100. data/app/views/videos/show.html.erb +2 -0
  101. data/app/worker/audioencoder.rb +7 -0
  102. data/app/worker/videoencoder.rb +7 -0
  103. data/config/locales/en.yml +67 -0
  104. data/config/locales/es.yml +67 -0
  105. data/config/routes.rb +22 -0
  106. data/db/migrate/20110615143707_create_social_stream_documents.rb +24 -0
  107. data/db/migrate/20110922173707_add_file_processing_to_document.rb +9 -0
  108. data/db/migrate/20111005112707_add_title_and_description_to_document.rb +11 -0
  109. data/lib/generators/social_stream/documents/install_generator.rb +24 -0
  110. data/lib/social_stream-documents.rb +25 -0
  111. data/lib/social_stream/documents/engine.rb +46 -0
  112. data/lib/social_stream/documents/version.rb +5 -0
  113. data/lib/social_stream/migrations/documents.rb +9 -0
  114. data/lib/social_stream/toolbar_config/documents.rb +27 -0
  115. data/social_stream-documents.gemspec +30 -0
  116. data/spec/controllers/documents_controller_spec.rb +118 -0
  117. data/spec/controllers/pictures_controller_spec.rb +80 -0
  118. data/spec/dummy/.gitignore +1 -0
  119. data/spec/dummy/Rakefile +7 -0
  120. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  121. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  122. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  123. data/spec/dummy/config.ru +4 -0
  124. data/spec/dummy/config/application.rb +45 -0
  125. data/spec/dummy/config/boot.rb +10 -0
  126. data/spec/dummy/config/database.yml +22 -0
  127. data/spec/dummy/config/environment.rb +5 -0
  128. data/spec/dummy/config/environments/development.rb +25 -0
  129. data/spec/dummy/config/environments/production.rb +49 -0
  130. data/spec/dummy/config/environments/test.rb +37 -0
  131. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  132. data/spec/dummy/config/initializers/devise.rb +176 -0
  133. data/spec/dummy/config/initializers/inflections.rb +10 -0
  134. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  135. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  136. data/spec/dummy/config/initializers/session_store.rb +8 -0
  137. data/spec/dummy/config/locales/en.yml +5 -0
  138. data/spec/dummy/config/navigation.rb +0 -0
  139. data/spec/dummy/config/relations.yml +39 -0
  140. data/spec/dummy/config/routes.rb +60 -0
  141. data/spec/dummy/db/.gitkeep +0 -0
  142. data/spec/dummy/public/404.html +26 -0
  143. data/spec/dummy/public/422.html +26 -0
  144. data/spec/dummy/public/500.html +26 -0
  145. data/spec/dummy/public/favicon.ico +0 -0
  146. data/spec/dummy/public/javascripts/application.js +2 -0
  147. data/spec/dummy/public/javascripts/controls.js +965 -0
  148. data/spec/dummy/public/javascripts/dragdrop.js +974 -0
  149. data/spec/dummy/public/javascripts/effects.js +1123 -0
  150. data/spec/dummy/public/javascripts/prototype.js +6001 -0
  151. data/spec/dummy/public/javascripts/rails.js +191 -0
  152. data/spec/dummy/public/stylesheets/.gitkeep +0 -0
  153. data/spec/dummy/script/rails +6 -0
  154. data/spec/factories/document.rb +20 -0
  155. data/spec/factories/files/privado.png +0 -0
  156. data/spec/factories/files/rails.png +0 -0
  157. data/spec/factories/files/small.pdf +157 -0
  158. data/spec/factories/picture.rb +21 -0
  159. data/spec/integration/navigation_spec.rb +9 -0
  160. data/spec/models/video_spec.rb +9 -0
  161. data/spec/socialstream_documents_spec.rb +7 -0
  162. data/spec/spec_helper.rb +46 -0
  163. data/spec/support/cancan.rb +1 -0
  164. data/spec/support/db.rb +8 -0
  165. data/spec/support/devise.rb +4 -0
  166. data/spec/support/mock.rb +4 -0
  167. data/vendor/assets/javascripts/jquery.jplayer.js +78 -0
  168. data/vendor/assets/stylesheets/jplayer.blue.monday.css +448 -0
  169. data/vendor/assets/stylesheets/jplayer.blue.monday.jpg +0 -0
  170. data/vendor/assets/stylesheets/jplayer.blue.monday.video.play.hover.png +0 -0
  171. data/vendor/assets/stylesheets/jplayer.blue.monday.video.play.png +0 -0
  172. data/vendor/assets/stylesheets/jquery.lightbox.css +101 -0
  173. data/vendor/assets/stylesheets/pbar-ani.gif +0 -0
  174. metadata +322 -0
@@ -0,0 +1 @@
1
+ documents
@@ -0,0 +1,7 @@
1
+ # Add your own tasks in files placed in lib/tasks ending in .rake,
2
+ # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3
+
4
+ require File.expand_path('../config/application', __FILE__)
5
+ require 'rake'
6
+
7
+ Dummy::Application.load_tasks
@@ -0,0 +1,3 @@
1
+ class ApplicationController < ActionController::Base
2
+ protect_from_forgery
3
+ end
@@ -0,0 +1,2 @@
1
+ module ApplicationHelper
2
+ end
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Dummy</title>
5
+ <%= stylesheet_link_tag :all %>
6
+ <%= javascript_include_tag :defaults %>
7
+ <%= csrf_meta_tag %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Dummy::Application
@@ -0,0 +1,45 @@
1
+ require File.expand_path('../boot', __FILE__)
2
+
3
+ require "active_model/railtie"
4
+ require "active_record/railtie"
5
+ require "action_controller/railtie"
6
+ require "action_view/railtie"
7
+ require "action_mailer/railtie"
8
+
9
+ Bundler.require
10
+ require "social_stream-documents"
11
+
12
+ module Dummy
13
+ class Application < Rails::Application
14
+ # Settings in config/environments/* take precedence over those specified here.
15
+ # Application configuration should go into files in config/initializers
16
+ # -- all .rb files in that directory are automatically loaded.
17
+
18
+ # Custom directories with classes and modules you want to be autoloadable.
19
+ # config.autoload_paths += %W(#{config.root}/extras)
20
+
21
+ # Only load the plugins named here, in the order given (default is alphabetical).
22
+ # :all can be used as a placeholder for all plugins not explicitly named.
23
+ # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
24
+
25
+ # Activate observers that should always be running.
26
+ # config.active_record.observers = :cacher, :garbage_collector, :forum_observer
27
+
28
+ # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
29
+ # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
30
+ # config.time_zone = 'Central Time (US & Canada)'
31
+
32
+ # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
33
+ # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
34
+ # config.i18n.default_locale = :de
35
+
36
+ # JavaScript files you want as :defaults (application.js is always included).
37
+ # config.action_view.javascript_expansions[:defaults] = %w(jquery rails)
38
+
39
+ # Configure the default encoding used in templates for Ruby 1.9.
40
+ config.encoding = "utf-8"
41
+
42
+ # Configure sensitive parameters which will be filtered from the log file.
43
+ config.filter_parameters += [:password]
44
+ end
45
+ end
@@ -0,0 +1,10 @@
1
+ require 'rubygems'
2
+ gemfile = File.expand_path('../../../../Gemfile', __FILE__)
3
+
4
+ if File.exist?(gemfile)
5
+ ENV['BUNDLE_GEMFILE'] = gemfile
6
+ require 'bundler'
7
+ Bundler.setup
8
+ end
9
+
10
+ $:.unshift File.expand_path('../../../../lib', __FILE__)
@@ -0,0 +1,22 @@
1
+ # SQLite version 3.x
2
+ # gem install sqlite3
3
+ development:
4
+ adapter: sqlite3
5
+ database: db/development.sqlite3
6
+ pool: 5
7
+ timeout: 5000
8
+
9
+ # Warning: The database defined as "test" will be erased and
10
+ # re-generated from your development database when you run "rake".
11
+ # Do not set this db to the same as development or production.
12
+ test:
13
+ adapter: sqlite3
14
+ database: db/test.sqlite3
15
+ pool: 5
16
+ timeout: 5000
17
+
18
+ production:
19
+ adapter: sqlite3
20
+ database: db/production.sqlite3
21
+ pool: 5
22
+ timeout: 5000
@@ -0,0 +1,5 @@
1
+ # Load the rails application
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the rails application
5
+ Dummy::Application.initialize!
@@ -0,0 +1,25 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # In the development environment your application's code is reloaded on
5
+ # every request. This slows down response time but is perfect for development
6
+ # since you don't have to restart the webserver when you make code changes.
7
+ config.cache_classes = false
8
+
9
+ # Log error messages when you accidentally call methods on nil.
10
+ config.whiny_nils = true
11
+
12
+ # Show full error reports and disable caching
13
+ config.consider_all_requests_local = true
14
+ config.action_controller.perform_caching = false
15
+
16
+ # Don't care if the mailer can't send
17
+ config.action_mailer.raise_delivery_errors = false
18
+
19
+ # Print deprecation notices to the Rails logger
20
+ config.active_support.deprecation = :log
21
+
22
+ # Only use best-standards-support built into browsers
23
+ config.action_dispatch.best_standards_support = :builtin
24
+ end
25
+
@@ -0,0 +1,49 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # The production environment is meant for finished, "live" apps.
5
+ # Code is not reloaded between requests
6
+ config.cache_classes = true
7
+
8
+ # Full error reports are disabled and caching is turned on
9
+ config.consider_all_requests_local = false
10
+ config.action_controller.perform_caching = true
11
+
12
+ # Specifies the header that your server uses for sending files
13
+ config.action_dispatch.x_sendfile_header = "X-Sendfile"
14
+
15
+ # For nginx:
16
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect'
17
+
18
+ # If you have no front-end server that supports something like X-Sendfile,
19
+ # just comment this out and Rails will serve the files
20
+
21
+ # See everything in the log (default is :info)
22
+ # config.log_level = :debug
23
+
24
+ # Use a different logger for distributed setups
25
+ # config.logger = SyslogLogger.new
26
+
27
+ # Use a different cache store in production
28
+ # config.cache_store = :mem_cache_store
29
+
30
+ # Disable Rails's static asset server
31
+ # In production, Apache or nginx will already do this
32
+ config.serve_static_assets = false
33
+
34
+ # Enable serving of images, stylesheets, and javascripts from an asset server
35
+ # config.action_controller.asset_host = "http://assets.example.com"
36
+
37
+ # Disable delivery errors, bad email addresses will be ignored
38
+ # config.action_mailer.raise_delivery_errors = false
39
+
40
+ # Enable threaded mode
41
+ # config.threadsafe!
42
+
43
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
44
+ # the I18n.default_locale when a translation can not be found)
45
+ config.i18n.fallbacks = true
46
+
47
+ # Send deprecation notices to registered listeners
48
+ config.active_support.deprecation = :notify
49
+ end
@@ -0,0 +1,37 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Log error messages when you accidentally call methods on nil.
11
+ config.whiny_nils = true
12
+
13
+ # Show full error reports and disable caching
14
+ config.consider_all_requests_local = true
15
+ config.action_controller.perform_caching = false
16
+
17
+ # Raise exceptions instead of rendering exception templates
18
+ config.action_dispatch.show_exceptions = false
19
+
20
+ # Disable request forgery protection in test environment
21
+ config.action_controller.allow_forgery_protection = false
22
+
23
+ # Tell Action Mailer not to deliver emails to the real world.
24
+ # The :test delivery method accumulates sent emails in the
25
+ # ActionMailer::Base.deliveries array.
26
+ config.action_mailer.delivery_method = :test
27
+
28
+ # Use SQL instead of Active Record's schema dumper when creating the test database.
29
+ # This is necessary if your schema can't be completely dumped by the schema dumper,
30
+ # like if you have constraints or database-specific column types
31
+ # config.active_record.schema_format = :sql
32
+
33
+ # Print deprecation notices to the stderr
34
+ config.active_support.deprecation = :stderr
35
+
36
+ config.assets.enabled = true
37
+ end
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,176 @@
1
+ # Use this hook to configure devise mailer, warden hooks and so forth. The first
2
+ # four configuration values can also be set straight in your models.
3
+ Devise.setup do |config|
4
+ # ==> Mailer Configuration
5
+ # Configure the e-mail address which will be shown in DeviseMailer.
6
+ config.mailer_sender = "please-change-me@config-initializers-devise.com"
7
+
8
+ # Configure the class responsible to send e-mails.
9
+ # config.mailer = "Devise::Mailer"
10
+
11
+ # ==> ORM configuration
12
+ # Load and configure the ORM. Supports :active_record (default) and
13
+ # :mongoid (bson_ext recommended) by default. Other ORMs may be
14
+ # available as additional gems.
15
+ require 'devise/orm/active_record'
16
+
17
+ # ==> Configuration for any authentication mechanism
18
+ # Configure which keys are used when authenticating a user. The default is
19
+ # just :email. You can configure it to use [:username, :subdomain], so for
20
+ # authenticating a user, both parameters are required. Remember that those
21
+ # parameters are used only when authenticating and not when retrieving from
22
+ # session. If you need permissions, you should implement that in a before filter.
23
+ # You can also supply a hash where the value is a boolean determining whether
24
+ # or not authentication should be aborted when the value is not present.
25
+ # config.authentication_keys = [ :email ]
26
+
27
+ # Configure parameters from the request object used for authentication. Each entry
28
+ # given should be a request method and it will automatically be passed to the
29
+ # find_for_authentication method and considered in your model lookup. For instance,
30
+ # if you set :request_keys to [:subdomain], :subdomain will be used on authentication.
31
+ # The same considerations mentioned for authentication_keys also apply to request_keys.
32
+ # config.request_keys = []
33
+
34
+ # Configure which authentication keys should be case-insensitive.
35
+ # These keys will be downcased upon creating or modifying a user and when used
36
+ # to authenticate or find a user. Default is :email.
37
+ # config.case_insensitive_keys = [ :email ]
38
+
39
+ # Tell if authentication through request.params is enabled. True by default.
40
+ # config.params_authenticatable = true
41
+
42
+ # Tell if authentication through HTTP Basic Auth is enabled. False by default.
43
+ # config.http_authenticatable = false
44
+
45
+ # If http headers should be returned for AJAX requests. True by default.
46
+ # config.http_authenticatable_on_xhr = true
47
+
48
+ # The realm used in Http Basic Authentication. "Application" by default.
49
+ # config.http_authentication_realm = "Application"
50
+
51
+ # ==> Configuration for :database_authenticatable
52
+ # For bcrypt, this is the cost for hashing the password and defaults to 10. If
53
+ # using other encryptors, it sets how many times you want the password re-encrypted.
54
+ config.stretches = 10
55
+
56
+ # ==> Configuration for :confirmable
57
+ # The time you want to give your user to confirm his account. During this time
58
+ # he will be able to access your application without confirming. Default is 0.days
59
+ # When confirm_within is zero, the user won't be able to sign in without confirming.
60
+ # You can use this to let your user access some features of your application
61
+ # without confirming the account, but blocking it after a certain period
62
+ # (ie 2 days).
63
+ # config.confirm_within = 2.days
64
+
65
+ # ==> Configuration for :rememberable
66
+ # The time the user will be remembered without asking for credentials again.
67
+ # config.remember_for = 2.weeks
68
+
69
+ # If true, a valid remember token can be re-used between multiple browsers.
70
+ # config.remember_across_browsers = true
71
+
72
+ # If true, extends the user's remember period when remembered via cookie.
73
+ # config.extend_remember_period = false
74
+
75
+ # If true, uses the password salt as remember token. This should be turned
76
+ # to false if you are not using database authenticatable.
77
+ config.use_salt_as_remember_token = true
78
+
79
+ # ==> Configuration for :validatable
80
+ # Range for password length. Default is 6..20.
81
+ # config.password_length = 6..20
82
+
83
+ # Regex to use to validate the email address
84
+ # config.email_regexp = /^([\w\.%\+\-]+)@([\w\-]+\.)+([\w]{2,})$/i
85
+
86
+ # ==> Configuration for :timeoutable
87
+ # The time you want to timeout the user session without activity. After this
88
+ # time the user will be asked for credentials again. Default is 30 minutes.
89
+ # config.timeout_in = 30.minutes
90
+
91
+ # ==> Configuration for :lockable
92
+ # Defines which strategy will be used to lock an account.
93
+ # :failed_attempts = Locks an account after a number of failed attempts to sign in.
94
+ # :none = No lock strategy. You should handle locking by yourself.
95
+ # config.lock_strategy = :failed_attempts
96
+
97
+ # Defines which strategy will be used to unlock an account.
98
+ # :email = Sends an unlock link to the user email
99
+ # :time = Re-enables login after a certain amount of time (see :unlock_in below)
100
+ # :both = Enables both strategies
101
+ # :none = No unlock strategy. You should handle unlocking by yourself.
102
+ # config.unlock_strategy = :both
103
+
104
+ # Number of authentication tries before locking an account if lock_strategy
105
+ # is failed attempts.
106
+ # config.maximum_attempts = 20
107
+
108
+ # Time interval to unlock the account if :time is enabled as unlock_strategy.
109
+ # config.unlock_in = 1.hour
110
+
111
+ # ==> Configuration for :encryptable
112
+ # Allow you to use another encryption algorithm besides bcrypt (default). You can use
113
+ # :sha1, :sha512 or encryptors from others authentication tools as :clearance_sha1,
114
+ # :authlogic_sha512 (then you should set stretches above to 20 for default behavior)
115
+ # and :restful_authentication_sha1 (then you should set stretches to 10, and copy
116
+ # REST_AUTH_SITE_KEY to pepper)
117
+ # config.encryptor = :sha512
118
+
119
+ # Setup a pepper to generate the encrypted password.
120
+ # config.pepper = "6efecaefd488a07abded679d45be30dc97935d74c44825b647149a6fa30ee8cd5e05bb3a426ce8a87fcd75b04079b1bac68a079acdcc175800c4131dde7961f0"
121
+
122
+ # ==> Configuration for :token_authenticatable
123
+ # Defines name of the authentication token params key
124
+ # config.token_authentication_key = :auth_token
125
+
126
+ # If true, authentication through token does not store user in session and needs
127
+ # to be supplied on each request. Useful if you are using the token as API token.
128
+ # config.stateless_token = false
129
+
130
+ # ==> Scopes configuration
131
+ # Turn scoped views on. Before rendering "sessions/new", it will first check for
132
+ # "users/sessions/new". It's turned off by default because it's slower if you
133
+ # are using only default views.
134
+ # config.scoped_views = false
135
+
136
+ # Configure the default scope given to Warden. By default it's the first
137
+ # devise role declared in your routes (usually :user).
138
+ # config.default_scope = :user
139
+
140
+ # Configure sign_out behavior.
141
+ # Sign_out action can be scoped (i.e. /users/sign_out affects only :user scope).
142
+ # The default is true, which means any logout action will sign out all active scopes.
143
+ # config.sign_out_all_scopes = true
144
+
145
+ # ==> Navigation configuration
146
+ # Lists the formats that should be treated as navigational. Formats like
147
+ # :html, should redirect to the sign in page when the user does not have
148
+ # access, but formats like :xml or :json, should return 401.
149
+ #
150
+ # If you have any extra navigational formats, like :iphone or :mobile, you
151
+ # should add them to the navigational formats lists.
152
+ #
153
+ # The :"*/*" format below is required to match Internet Explorer requests.
154
+ # config.navigational_formats = [:"*/*", :html]
155
+
156
+ # The default HTTP method used to sign out a resource. Default is :get.
157
+ # config.sign_out_via = :get
158
+
159
+ # ==> OmniAuth
160
+ # Add a new OmniAuth provider. Check the wiki for more information on setting
161
+ # up on your models and hooks.
162
+ # config.omniauth :github, 'APP_ID', 'APP_SECRET', :scope => 'user,public_repo'
163
+ config.omniauth :linked_in, "ekxfXU8nueVSMQ9fc5KJAryBkyztUlCBYMW3DoQPzbE79WhivvzhQloRNHCHgPeB", "WYiHFT-KKFgjd45W3-pEAficmXRHmN6_6DGwj1C_ZILJlSO1gBvv6VNYXU9tybGY"
164
+
165
+ config.omniauth :facebook, "129571360447856","eef39dce5e20e76f77495c59623bdb38"
166
+
167
+ # ==> Warden configuration
168
+ # If you want to use other strategies, that are not supported by Devise, or
169
+ # change the failure app, you can configure them inside the config.warden block.
170
+ #
171
+ # config.warden do |manager|
172
+ # manager.failure_app = AnotherApp
173
+ # manager.intercept_401 = false
174
+ # manager.default_strategies(:scope => :user).unshift :some_external_strategy
175
+ # end
176
+ end
@@ -0,0 +1,10 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format
4
+ # (all these examples are active by default):
5
+ # ActiveSupport::Inflector.inflections do |inflect|
6
+ # inflect.plural /^(ox)$/i, '\1en'
7
+ # inflect.singular /^(ox)en/i, '\1'
8
+ # inflect.irregular 'person', 'people'
9
+ # inflect.uncountable %w( fish sheep )
10
+ # end