oxd-ruby 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (81) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +9 -0
  3. data/.rspec +2 -0
  4. data/.travis.yml +3 -0
  5. data/CODE_OF_CONDUCT.md +13 -0
  6. data/Gemfile +4 -0
  7. data/LICENSE.txt +21 -0
  8. data/README.md +116 -0
  9. data/Rakefile +7 -0
  10. data/demosite/.gitignore +17 -0
  11. data/demosite/Gemfile +49 -0
  12. data/demosite/Gemfile.lock +190 -0
  13. data/demosite/README.md +172 -0
  14. data/demosite/Rakefile +6 -0
  15. data/demosite/app/assets/images/.keep +0 -0
  16. data/demosite/app/assets/javascripts/application.js +17 -0
  17. data/demosite/app/assets/javascripts/bootstrap.js.coffee +3 -0
  18. data/demosite/app/assets/stylesheets/application.css +16 -0
  19. data/demosite/app/assets/stylesheets/bootstrap_and_overrides.css +7 -0
  20. data/demosite/app/controllers/application_controller.rb +14 -0
  21. data/demosite/app/controllers/concerns/.keep +0 -0
  22. data/demosite/app/controllers/home_controller.rb +38 -0
  23. data/demosite/app/helpers/application_helper.rb +2 -0
  24. data/demosite/app/mailers/.keep +0 -0
  25. data/demosite/app/models/.keep +0 -0
  26. data/demosite/app/models/concerns/.keep +0 -0
  27. data/demosite/app/views/home/index.html.erb +127 -0
  28. data/demosite/app/views/layouts/application.html.erb +14 -0
  29. data/demosite/bin/bundle +3 -0
  30. data/demosite/bin/rails +9 -0
  31. data/demosite/bin/rake +9 -0
  32. data/demosite/bin/setup +29 -0
  33. data/demosite/bin/spring +15 -0
  34. data/demosite/config.ru +4 -0
  35. data/demosite/config/application.rb +26 -0
  36. data/demosite/config/boot.rb +3 -0
  37. data/demosite/config/database.yml +25 -0
  38. data/demosite/config/environment.rb +5 -0
  39. data/demosite/config/environments/development.rb +41 -0
  40. data/demosite/config/environments/production.rb +79 -0
  41. data/demosite/config/environments/test.rb +42 -0
  42. data/demosite/config/initializers/assets.rb +11 -0
  43. data/demosite/config/initializers/backtrace_silencers.rb +7 -0
  44. data/demosite/config/initializers/cookies_serializer.rb +3 -0
  45. data/demosite/config/initializers/filter_parameter_logging.rb +4 -0
  46. data/demosite/config/initializers/inflections.rb +16 -0
  47. data/demosite/config/initializers/mime_types.rb +4 -0
  48. data/demosite/config/initializers/oxd_config.rb +19 -0
  49. data/demosite/config/initializers/session_store.rb +3 -0
  50. data/demosite/config/initializers/wrap_parameters.rb +14 -0
  51. data/demosite/config/locales/en.bootstrap.yml +23 -0
  52. data/demosite/config/locales/en.yml +23 -0
  53. data/demosite/config/routes.rb +62 -0
  54. data/demosite/config/secrets.yml +22 -0
  55. data/demosite/db/seeds.rb +7 -0
  56. data/demosite/lib/assets/.keep +0 -0
  57. data/demosite/lib/tasks/.keep +0 -0
  58. data/demosite/log/.keep +0 -0
  59. data/demosite/public/404.html +67 -0
  60. data/demosite/public/422.html +67 -0
  61. data/demosite/public/500.html +66 -0
  62. data/demosite/public/favicon.ico +0 -0
  63. data/demosite/public/robots.txt +5 -0
  64. data/demosite/test/controllers/.keep +0 -0
  65. data/demosite/test/fixtures/.keep +0 -0
  66. data/demosite/test/helpers/.keep +0 -0
  67. data/demosite/test/integration/.keep +0 -0
  68. data/demosite/test/mailers/.keep +0 -0
  69. data/demosite/test/models/.keep +0 -0
  70. data/demosite/test/test_helper.rb +10 -0
  71. data/demosite/vendor/assets/javascripts/.keep +0 -0
  72. data/demosite/vendor/assets/stylesheets/.keep +0 -0
  73. data/lib/generators/oxd/config_generator.rb +22 -0
  74. data/lib/generators/oxd/templates/oxd_config.rb +19 -0
  75. data/lib/oxd-ruby.rb +11 -0
  76. data/lib/oxd/client_oxd_commands.rb +147 -0
  77. data/lib/oxd/config.rb +94 -0
  78. data/lib/oxd/oxd_connector.rb +133 -0
  79. data/lib/oxd/version.rb +4 -0
  80. data/oxd-ruby.gemspec +24 -0
  81. metadata +180 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 1f62bcf7aa49a59738e352feef3b8cd7a8484e4d
4
+ data.tar.gz: 74257ef46a5a9037421e961f13445236d3a97ea4
5
+ SHA512:
6
+ metadata.gz: 0b078e347c16be84fe679783bf5b9fdb3c9bd309086a31dfb1d48f851213c03294e622af81a9902e312868340b405cf0b0e0956b38077260c1016140c6230ef9
7
+ data.tar.gz: dad53ad2f1da2bd6a431cfaf627871d039174bb96526a953a17be467b5603ba3b4f11141e00966c9dbbbcf8f2a9ac67f18538782812a85b620437c373f292b84
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.travis.yml ADDED
@@ -0,0 +1,3 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2.1
@@ -0,0 +1,13 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
+
5
+ We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, age, or religion.
6
+
7
+ Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8
+
9
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10
+
11
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12
+
13
+ This Code of Conduct is adapted from the [Contributor Covenant](http:contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in oxd-ruby.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 inderpal6785
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,116 @@
1
+ # Oxd Ruby
2
+ [![Gem Version](https://badge.fury.io/rb/oxd-ruby.png)](https://badge.fury.io/rb/oxd-ruby)
3
+
4
+ Ruby Client Library for the [Gluu oxD Server RP - v2.4.3](https://www.gluu.org/docs-oxd/).
5
+
6
+ **oxdruby** is a thin wrapper around the communication protocol of oxD server. This can be used to access the OpenID connect & UMA Authorization end points of the Gluu Server via the oxD RP. This library provides the function calls required by a website to access user information from a OpenID Connect Provider (OP) by using the OxD as the Relying Party (RP).
7
+
8
+ ## Using the Library in your website
9
+
10
+ > You are now on the `v2.4.3` branch. If you want to use `oxd-ruby` for production use, switch to the branch of the matching version as the `oxd-server` you are installing.
11
+
12
+ [oxD RP](https://www.gluu.org/docs-oxd/) has complete information about the Code Authorization flow and the various details about oxD RP configuration. This document provides only documentation about the oxd-ruby library.
13
+
14
+ ### Prerequisites
15
+
16
+ * Install `gluu-oxd-server`
17
+ Oxd-server needs to be running on your machine to connect with OP.
18
+
19
+ ### Installation
20
+
21
+ To install gem, add this line to your application's Gemfile:
22
+
23
+ ```ruby
24
+ gem 'oxd-ruby', '~> 0.1.3'
25
+ ```
26
+
27
+ Run bundle command to install it:
28
+ ```bash
29
+ $ bundle install
30
+ ```
31
+
32
+ ### Configuring
33
+ After you installed oxd-ruby, you need to run the generator command:
34
+ ```bash
35
+ $ rails generate oxd:config
36
+ ```
37
+
38
+ The generator will install `oxd_config.rb` initializer file in `config/initializers` directory which conatins ALL of Oxd-Ruby's global configuration options.
39
+ You must set values for `config.oxd_host_ip`, `config.oxd_host_port`, `config.authorization_redirect_uri` in config file.
40
+ Change these settings according to your website otherwise your website will not be able to communicate properly with the Oxd Server.
41
+
42
+ ## Usage
43
+
44
+ Add these lines to your application_controller.rb file:
45
+
46
+ ```ruby
47
+ require 'oxd-ruby'
48
+
49
+ before_filter :set_oxd_commands_instance
50
+ protected
51
+ def set_oxd_commands_instance
52
+ @oxd_command = Oxd::ClientOxdCommands.new
53
+ end
54
+ ```
55
+
56
+ The `ClientOxdCommands` class of the library provides all the methods required for the website to communicate with the oxD RP through sockets.
57
+
58
+ ### Website Registration
59
+
60
+ The website can be registered with the OP using the `@oxd_command.register_site` call.
61
+
62
+ ### Get Authorization URL
63
+
64
+ The first step is to generate an authorization url which the user can visit to authorize your application to use the information from the OP.
65
+
66
+ ```ruby
67
+ authorization_url = @oxd_command.get_authorization_url
68
+ ```
69
+ Using the above url the website can redirect the user for authentication at the OP.
70
+
71
+ ### Get access token
72
+
73
+ The website needs to parse the information from the callback url and pass it on to get the access token for fetching user information.
74
+
75
+ ```ruby
76
+ code = params[:code]
77
+ state = params[:state]
78
+ scopes = params[:scope].split("+")
79
+ access_token = @oxd_command.get_tokens_by_code( code, scopes, state )
80
+ ```
81
+ The values for code, scopes and state are parsed from the callback url query parameters.
82
+
83
+ ### Get user claims
84
+
85
+ Claims (user information fields) made availble by the OP can be fetched using the access token obtained above.
86
+
87
+ ```ruby
88
+ user = @oxd_command.get_user_info(access_token)
89
+ ```
90
+
91
+ ### Using the claims
92
+
93
+ Once the user data is obtained, the various claims supported by the OP can be used as required.
94
+
95
+ ```ruby
96
+ <% user.each do |field,value| %>
97
+ <%= "#{field} : #{value}" %>
98
+ <% end %>
99
+ ```
100
+ The availability of various claims are completely dependent on the OP.
101
+
102
+ ### Logging out
103
+
104
+ Once the required work is done the user can be logged out of the system.
105
+
106
+ ```ruby
107
+ logout_uri = @oxd_command.get_logout_uri(access_token, state, session_state)
108
+ ```
109
+ You can then redirect the user to obtained url to perform logout.
110
+
111
+ ### Logs
112
+ You can find `oxd-ruby.log` file in `rails_app_root/log` folder. It contains all the logs about oxd-server connections, commands/data sent to server, recieved response and all the errors and exceptions raised.
113
+
114
+ ## Demo Site
115
+
116
+ The **demosite** folder contains a demo Ruby on Rails application which uses the `oxd-ruby` library to demonstrate the usage of the library. The deployment instrctions for the demo site can be found inside the demosite's README file.
data/Rakefile ADDED
@@ -0,0 +1,7 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new
5
+
6
+ task :default => :spec
7
+ task :test => :spec
@@ -0,0 +1,17 @@
1
+ # See https://help.github.com/articles/ignoring-files for more about ignoring files.
2
+ #
3
+ # If you find yourself ignoring temporary files generated by your text editor
4
+ # or operating system, you probably want to add a global ignore instead:
5
+ # git config --global core.excludesfile '~/.gitignore_global'
6
+
7
+ # Ignore bundler config.
8
+ /.bundle
9
+
10
+ # Ignore the default SQLite database.
11
+ /db/*.sqlite3
12
+ /db/*.sqlite3-journal
13
+
14
+ # Ignore all logfiles and tempfiles.
15
+ /log/*
16
+ !/log/.keep
17
+ /tmp
data/demosite/Gemfile ADDED
@@ -0,0 +1,49 @@
1
+ source 'https://rubygems.org'
2
+ # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
3
+ gem 'rails', '4.2.6'
4
+ # Use sqlite3 as the database for Active Record
5
+ gem 'sqlite3'
6
+ # Use SCSS for stylesheets
7
+ gem 'sass-rails', '~> 5.0'
8
+ # Use Uglifier as compressor for JavaScript assets
9
+ gem 'uglifier', '>= 1.3.0'
10
+ # Use CoffeeScript for .coffee assets and views
11
+ gem 'coffee-rails', '~> 4.1.0'
12
+ # See https://github.com/rails/execjs#readme for more supported runtimes
13
+ #gem 'therubyracer'
14
+
15
+ # Use jquery as the JavaScript library
16
+ gem 'jquery-rails'
17
+ # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
18
+ gem 'turbolinks'
19
+ # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
20
+ gem 'jbuilder', '~> 2.0'
21
+ # bundle exec rake doc:rails generates the API under doc/api.
22
+ gem 'sdoc', '~> 0.4.0', group: :doc
23
+ gem "passenger"
24
+
25
+ gem "twitter-bootstrap-rails"
26
+
27
+ # Use ActiveModel has_secure_password
28
+ # gem 'bcrypt', '~> 3.1.7'
29
+
30
+ # Use Unicorn as the app server
31
+ # gem 'unicorn'
32
+
33
+ # Use Capistrano for deployment
34
+ # gem 'capistrano-rails', group: :development
35
+
36
+ gem 'oxd-ruby', '~> 0.1.3'
37
+
38
+ group :development, :test do
39
+ # Call 'byebug' anywhere in the code to stop execution and get a debugger console
40
+ gem 'byebug'
41
+ end
42
+
43
+ group :development do
44
+ # Access an IRB console on exception pages or by using <%= console %> in views
45
+ gem 'web-console', '~> 2.0'
46
+
47
+ # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
48
+ gem 'spring'
49
+ end
@@ -0,0 +1,190 @@
1
+ PATH
2
+ remote: /var/www/oxd-ruby
3
+ specs:
4
+ oxd-ruby (0.1.3)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ actionmailer (4.2.6)
10
+ actionpack (= 4.2.6)
11
+ actionview (= 4.2.6)
12
+ activejob (= 4.2.6)
13
+ mail (~> 2.5, >= 2.5.4)
14
+ rails-dom-testing (~> 1.0, >= 1.0.5)
15
+ actionpack (4.2.6)
16
+ actionview (= 4.2.6)
17
+ activesupport (= 4.2.6)
18
+ rack (~> 1.6)
19
+ rack-test (~> 0.6.2)
20
+ rails-dom-testing (~> 1.0, >= 1.0.5)
21
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
22
+ actionview (4.2.6)
23
+ activesupport (= 4.2.6)
24
+ builder (~> 3.1)
25
+ erubis (~> 2.7.0)
26
+ rails-dom-testing (~> 1.0, >= 1.0.5)
27
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
+ activejob (4.2.6)
29
+ activesupport (= 4.2.6)
30
+ globalid (>= 0.3.0)
31
+ activemodel (4.2.6)
32
+ activesupport (= 4.2.6)
33
+ builder (~> 3.1)
34
+ activerecord (4.2.6)
35
+ activemodel (= 4.2.6)
36
+ activesupport (= 4.2.6)
37
+ arel (~> 6.0)
38
+ activesupport (4.2.6)
39
+ i18n (~> 0.7)
40
+ json (~> 1.7, >= 1.7.7)
41
+ minitest (~> 5.1)
42
+ thread_safe (~> 0.3, >= 0.3.4)
43
+ tzinfo (~> 1.1)
44
+ arel (6.0.3)
45
+ binding_of_caller (0.7.2)
46
+ debug_inspector (>= 0.0.1)
47
+ builder (3.2.2)
48
+ byebug (9.0.5)
49
+ coffee-rails (4.1.1)
50
+ coffee-script (>= 2.2.0)
51
+ railties (>= 4.0.0, < 5.1.x)
52
+ coffee-script (2.4.1)
53
+ coffee-script-source
54
+ execjs
55
+ coffee-script-source (1.10.0)
56
+ commonjs (0.2.7)
57
+ concurrent-ruby (1.0.2)
58
+ daemons (1.2.3)
59
+ debug_inspector (0.0.2)
60
+ erubis (2.7.0)
61
+ eventmachine (1.0.8)
62
+ execjs (2.7.0)
63
+ globalid (0.3.6)
64
+ activesupport (>= 4.1.0)
65
+ i18n (0.7.0)
66
+ jbuilder (2.5.0)
67
+ activesupport (>= 3.0.0, < 5.1)
68
+ multi_json (~> 1.2)
69
+ jquery-rails (4.1.1)
70
+ rails-dom-testing (>= 1, < 3)
71
+ railties (>= 4.2.0)
72
+ thor (>= 0.14, < 2.0)
73
+ json (1.8.3)
74
+ less (2.6.0)
75
+ commonjs (~> 0.2.7)
76
+ less-rails (2.7.1)
77
+ actionpack (>= 4.0)
78
+ less (~> 2.6.0)
79
+ sprockets (> 2, < 4)
80
+ tilt
81
+ loofah (2.0.3)
82
+ nokogiri (>= 1.5.9)
83
+ mail (2.6.4)
84
+ mime-types (>= 1.16, < 4)
85
+ mime-types (3.1)
86
+ mime-types-data (~> 3.2015)
87
+ mime-types-data (3.2016.0521)
88
+ mini_portile2 (2.1.0)
89
+ minitest (5.9.0)
90
+ multi_json (1.12.1)
91
+ nokogiri (1.6.8)
92
+ mini_portile2 (~> 2.1.0)
93
+ pkg-config (~> 1.1.7)
94
+ passenger (5.0.28)
95
+ rack
96
+ rake (>= 0.8.1)
97
+ pkg-config (1.1.7)
98
+ rack (1.6.4)
99
+ rack-test (0.6.3)
100
+ rack (>= 1.0)
101
+ rails (4.2.6)
102
+ actionmailer (= 4.2.6)
103
+ actionpack (= 4.2.6)
104
+ actionview (= 4.2.6)
105
+ activejob (= 4.2.6)
106
+ activemodel (= 4.2.6)
107
+ activerecord (= 4.2.6)
108
+ activesupport (= 4.2.6)
109
+ bundler (>= 1.3.0, < 2.0)
110
+ railties (= 4.2.6)
111
+ sprockets-rails
112
+ rails-deprecated_sanitizer (1.0.3)
113
+ activesupport (>= 4.2.0.alpha)
114
+ rails-dom-testing (1.0.7)
115
+ activesupport (>= 4.2.0.beta, < 5.0)
116
+ nokogiri (~> 1.6.0)
117
+ rails-deprecated_sanitizer (>= 1.0.1)
118
+ rails-html-sanitizer (1.0.3)
119
+ loofah (~> 2.0)
120
+ railties (4.2.6)
121
+ actionpack (= 4.2.6)
122
+ activesupport (= 4.2.6)
123
+ rake (>= 0.8.7)
124
+ thor (>= 0.18.1, < 2.0)
125
+ rake (11.2.0)
126
+ rdoc (4.2.2)
127
+ json (~> 1.4)
128
+ sass (3.4.22)
129
+ sass-rails (5.0.4)
130
+ railties (>= 4.0.0, < 5.0)
131
+ sass (~> 3.1)
132
+ sprockets (>= 2.8, < 4.0)
133
+ sprockets-rails (>= 2.0, < 4.0)
134
+ tilt (>= 1.1, < 3)
135
+ sdoc (0.4.1)
136
+ json (~> 1.7, >= 1.7.7)
137
+ rdoc (~> 4.0)
138
+ spring (1.7.1)
139
+ sprockets (3.6.0)
140
+ concurrent-ruby (~> 1.0)
141
+ rack (> 1, < 3)
142
+ sprockets-rails (3.0.4)
143
+ actionpack (>= 4.0)
144
+ activesupport (>= 4.0)
145
+ sprockets (>= 3.0.0)
146
+ sqlite3 (1.3.11)
147
+ thin (1.7.0)
148
+ daemons (~> 1.0, >= 1.0.9)
149
+ eventmachine (~> 1.0, >= 1.0.4)
150
+ rack (>= 1, < 3)
151
+ thor (0.19.1)
152
+ thread_safe (0.3.5)
153
+ tilt (2.0.5)
154
+ turbolinks (2.5.3)
155
+ coffee-rails
156
+ twitter-bootstrap-rails (3.2.2)
157
+ actionpack (>= 3.1)
158
+ execjs (>= 2.2.2, >= 2.2)
159
+ less-rails (>= 2.5.0)
160
+ railties (>= 3.1)
161
+ tzinfo (1.2.2)
162
+ thread_safe (~> 0.1)
163
+ uglifier (3.0.0)
164
+ execjs (>= 0.3.0, < 3)
165
+ web-console (2.3.0)
166
+ activemodel (>= 4.0)
167
+ binding_of_caller (>= 0.7.2)
168
+ railties (>= 4.0)
169
+ sprockets-rails (>= 2.0, < 4.0)
170
+
171
+ PLATFORMS
172
+ ruby
173
+
174
+ DEPENDENCIES
175
+ byebug
176
+ coffee-rails (~> 4.1.0)
177
+ jbuilder (~> 2.0)
178
+ jquery-rails
179
+ oxd-ruby!
180
+ passenger
181
+ rails (= 4.2.6)
182
+ sass-rails (~> 5.0)
183
+ sdoc (~> 0.4.0)
184
+ spring
185
+ sqlite3
186
+ thin
187
+ turbolinks
188
+ twitter-bootstrap-rails
189
+ uglifier (>= 1.3.0)
190
+ web-console (~> 2.0)