omniauth-bancsabadell 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (75) hide show
  1. checksums.yaml +7 -0
  2. data/.DS_Store +0 -0
  3. data/CHANGELOG.md +3 -0
  4. data/Gemfile +3 -0
  5. data/Gemfile.lock +37 -0
  6. data/README.md +43 -0
  7. data/lib/.DS_Store +0 -0
  8. data/lib/omniauth/.DS_Store +0 -0
  9. data/lib/omniauth/bancsabadell/version.rb +5 -0
  10. data/lib/omniauth/bancsabadell.rb +2 -0
  11. data/lib/omniauth/strategies/bancsabadell.rb +27 -0
  12. data/lib/omniauth-bancsabadell.rb +1 -0
  13. data/omniauth-bancsabadell.gemspec +19 -0
  14. data/test_app/.gitignore +18 -0
  15. data/test_app/Gemfile +50 -0
  16. data/test_app/Gemfile.lock +179 -0
  17. data/test_app/README.rdoc +28 -0
  18. data/test_app/Rakefile +6 -0
  19. data/test_app/app/assets/images/.keep +0 -0
  20. data/test_app/app/assets/javascripts/application.js +16 -0
  21. data/test_app/app/assets/stylesheets/application.css +15 -0
  22. data/test_app/app/controllers/application_controller.rb +5 -0
  23. data/test_app/app/controllers/concerns/.keep +0 -0
  24. data/test_app/app/controllers/home_controller.rb +2 -0
  25. data/test_app/app/controllers/omniauth_controller.rb +12 -0
  26. data/test_app/app/helpers/application_helper.rb +2 -0
  27. data/test_app/app/mailers/.keep +0 -0
  28. data/test_app/app/models/.keep +0 -0
  29. data/test_app/app/models/concerns/.keep +0 -0
  30. data/test_app/app/views/home/landing.html.slim +6 -0
  31. data/test_app/app/views/layouts/application.html.erb +14 -0
  32. data/test_app/bin/bundle +3 -0
  33. data/test_app/bin/rails +8 -0
  34. data/test_app/bin/rake +8 -0
  35. data/test_app/bin/spring +18 -0
  36. data/test_app/config/app_example.yml +4 -0
  37. data/test_app/config/application.rb +23 -0
  38. data/test_app/config/boot.rb +4 -0
  39. data/test_app/config/database.yml +25 -0
  40. data/test_app/config/environment.rb +8 -0
  41. data/test_app/config/environments/development.rb +37 -0
  42. data/test_app/config/environments/production.rb +78 -0
  43. data/test_app/config/environments/test.rb +39 -0
  44. data/test_app/config/initializers/assets.rb +8 -0
  45. data/test_app/config/initializers/backtrace_silencers.rb +7 -0
  46. data/test_app/config/initializers/cookies_serializer.rb +3 -0
  47. data/test_app/config/initializers/filter_parameter_logging.rb +4 -0
  48. data/test_app/config/initializers/inflections.rb +16 -0
  49. data/test_app/config/initializers/mime_types.rb +4 -0
  50. data/test_app/config/initializers/omniauth.rb +7 -0
  51. data/test_app/config/initializers/session_store.rb +3 -0
  52. data/test_app/config/initializers/wrap_parameters.rb +14 -0
  53. data/test_app/config/locales/en.yml +23 -0
  54. data/test_app/config/routes.rb +5 -0
  55. data/test_app/config/secrets.yml +22 -0
  56. data/test_app/config.ru +4 -0
  57. data/test_app/db/seeds.rb +7 -0
  58. data/test_app/lib/assets/.keep +0 -0
  59. data/test_app/lib/tasks/.keep +0 -0
  60. data/test_app/log/.keep +0 -0
  61. data/test_app/public/404.html +67 -0
  62. data/test_app/public/422.html +67 -0
  63. data/test_app/public/500.html +66 -0
  64. data/test_app/public/favicon.ico +0 -0
  65. data/test_app/public/robots.txt +5 -0
  66. data/test_app/test/controllers/.keep +0 -0
  67. data/test_app/test/fixtures/.keep +0 -0
  68. data/test_app/test/helpers/.keep +0 -0
  69. data/test_app/test/integration/.keep +0 -0
  70. data/test_app/test/mailers/.keep +0 -0
  71. data/test_app/test/models/.keep +0 -0
  72. data/test_app/test/test_helper.rb +10 -0
  73. data/test_app/vendor/assets/javascripts/.keep +0 -0
  74. data/test_app/vendor/assets/stylesheets/.keep +0 -0
  75. metadata +131 -0
metadata ADDED
@@ -0,0 +1,131 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: omniauth-bancsabadell
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Albert Bellonch
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-10-11 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: omniauth-oauth2
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.2'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.2'
27
+ description:
28
+ email:
29
+ - albert@getquipu.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - ".DS_Store"
35
+ - CHANGELOG.md
36
+ - Gemfile
37
+ - Gemfile.lock
38
+ - README.md
39
+ - lib/.DS_Store
40
+ - lib/omniauth-bancsabadell.rb
41
+ - lib/omniauth/.DS_Store
42
+ - lib/omniauth/bancsabadell.rb
43
+ - lib/omniauth/bancsabadell/version.rb
44
+ - lib/omniauth/strategies/bancsabadell.rb
45
+ - omniauth-bancsabadell.gemspec
46
+ - test_app/.gitignore
47
+ - test_app/Gemfile
48
+ - test_app/Gemfile.lock
49
+ - test_app/README.rdoc
50
+ - test_app/Rakefile
51
+ - test_app/app/assets/images/.keep
52
+ - test_app/app/assets/javascripts/application.js
53
+ - test_app/app/assets/stylesheets/application.css
54
+ - test_app/app/controllers/application_controller.rb
55
+ - test_app/app/controllers/concerns/.keep
56
+ - test_app/app/controllers/home_controller.rb
57
+ - test_app/app/controllers/omniauth_controller.rb
58
+ - test_app/app/helpers/application_helper.rb
59
+ - test_app/app/mailers/.keep
60
+ - test_app/app/models/.keep
61
+ - test_app/app/models/concerns/.keep
62
+ - test_app/app/views/home/landing.html.slim
63
+ - test_app/app/views/layouts/application.html.erb
64
+ - test_app/bin/bundle
65
+ - test_app/bin/rails
66
+ - test_app/bin/rake
67
+ - test_app/bin/spring
68
+ - test_app/config.ru
69
+ - test_app/config/app_example.yml
70
+ - test_app/config/application.rb
71
+ - test_app/config/boot.rb
72
+ - test_app/config/database.yml
73
+ - test_app/config/environment.rb
74
+ - test_app/config/environments/development.rb
75
+ - test_app/config/environments/production.rb
76
+ - test_app/config/environments/test.rb
77
+ - test_app/config/initializers/assets.rb
78
+ - test_app/config/initializers/backtrace_silencers.rb
79
+ - test_app/config/initializers/cookies_serializer.rb
80
+ - test_app/config/initializers/filter_parameter_logging.rb
81
+ - test_app/config/initializers/inflections.rb
82
+ - test_app/config/initializers/mime_types.rb
83
+ - test_app/config/initializers/omniauth.rb
84
+ - test_app/config/initializers/session_store.rb
85
+ - test_app/config/initializers/wrap_parameters.rb
86
+ - test_app/config/locales/en.yml
87
+ - test_app/config/routes.rb
88
+ - test_app/config/secrets.yml
89
+ - test_app/db/seeds.rb
90
+ - test_app/lib/assets/.keep
91
+ - test_app/lib/tasks/.keep
92
+ - test_app/log/.keep
93
+ - test_app/public/404.html
94
+ - test_app/public/422.html
95
+ - test_app/public/500.html
96
+ - test_app/public/favicon.ico
97
+ - test_app/public/robots.txt
98
+ - test_app/test/controllers/.keep
99
+ - test_app/test/fixtures/.keep
100
+ - test_app/test/helpers/.keep
101
+ - test_app/test/integration/.keep
102
+ - test_app/test/mailers/.keep
103
+ - test_app/test/models/.keep
104
+ - test_app/test/test_helper.rb
105
+ - test_app/vendor/assets/javascripts/.keep
106
+ - test_app/vendor/assets/stylesheets/.keep
107
+ homepage: https://getquipu.com
108
+ licenses:
109
+ - MIT
110
+ metadata: {}
111
+ post_install_message:
112
+ rdoc_options: []
113
+ require_paths:
114
+ - lib
115
+ required_ruby_version: !ruby/object:Gem::Requirement
116
+ requirements:
117
+ - - ">="
118
+ - !ruby/object:Gem::Version
119
+ version: '0'
120
+ required_rubygems_version: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ requirements: []
126
+ rubyforge_project:
127
+ rubygems_version: 2.2.2
128
+ signing_key:
129
+ specification_version: 4
130
+ summary: BancSabadell OAuth2 Strategy for OmniAuth
131
+ test_files: []