nov-ruby-openid 2.1.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (203) hide show
  1. data/CHANGELOG +215 -0
  2. data/CHANGES-2.1.0 +36 -0
  3. data/INSTALL +47 -0
  4. data/LICENSE +210 -0
  5. data/NOTICE +2 -0
  6. data/README +81 -0
  7. data/Rakefile +98 -0
  8. data/UPGRADE +127 -0
  9. data/VERSION +1 -0
  10. data/contrib/google/ruby-openid-apps-discovery-1.0.gem +0 -0
  11. data/contrib/google/ruby-openid-apps-discovery-1.01.gem +0 -0
  12. data/examples/README +32 -0
  13. data/examples/active_record_openid_store/README +58 -0
  14. data/examples/active_record_openid_store/XXX_add_open_id_store_to_db.rb +24 -0
  15. data/examples/active_record_openid_store/XXX_upgrade_open_id_store.rb +26 -0
  16. data/examples/active_record_openid_store/init.rb +8 -0
  17. data/examples/active_record_openid_store/lib/association.rb +10 -0
  18. data/examples/active_record_openid_store/lib/nonce.rb +3 -0
  19. data/examples/active_record_openid_store/lib/open_id_setting.rb +4 -0
  20. data/examples/active_record_openid_store/lib/openid_ar_store.rb +57 -0
  21. data/examples/active_record_openid_store/test/store_test.rb +212 -0
  22. data/examples/discover +49 -0
  23. data/examples/rails_openid/README +153 -0
  24. data/examples/rails_openid/Rakefile +10 -0
  25. data/examples/rails_openid/app/controllers/application.rb +4 -0
  26. data/examples/rails_openid/app/controllers/consumer_controller.rb +122 -0
  27. data/examples/rails_openid/app/controllers/login_controller.rb +45 -0
  28. data/examples/rails_openid/app/controllers/server_controller.rb +265 -0
  29. data/examples/rails_openid/app/helpers/application_helper.rb +3 -0
  30. data/examples/rails_openid/app/helpers/login_helper.rb +2 -0
  31. data/examples/rails_openid/app/helpers/server_helper.rb +9 -0
  32. data/examples/rails_openid/app/views/consumer/index.rhtml +81 -0
  33. data/examples/rails_openid/app/views/layouts/server.rhtml +68 -0
  34. data/examples/rails_openid/app/views/login/index.rhtml +56 -0
  35. data/examples/rails_openid/app/views/server/decide.rhtml +26 -0
  36. data/examples/rails_openid/config/boot.rb +19 -0
  37. data/examples/rails_openid/config/database.yml +74 -0
  38. data/examples/rails_openid/config/environment.rb +54 -0
  39. data/examples/rails_openid/config/environments/development.rb +19 -0
  40. data/examples/rails_openid/config/environments/production.rb +19 -0
  41. data/examples/rails_openid/config/environments/test.rb +19 -0
  42. data/examples/rails_openid/config/routes.rb +24 -0
  43. data/examples/rails_openid/doc/README_FOR_APP +2 -0
  44. data/examples/rails_openid/public/.htaccess +40 -0
  45. data/examples/rails_openid/public/404.html +8 -0
  46. data/examples/rails_openid/public/500.html +8 -0
  47. data/examples/rails_openid/public/dispatch.cgi +12 -0
  48. data/examples/rails_openid/public/dispatch.fcgi +26 -0
  49. data/examples/rails_openid/public/dispatch.rb +12 -0
  50. data/examples/rails_openid/public/favicon.ico +0 -0
  51. data/examples/rails_openid/public/images/openid_login_bg.gif +0 -0
  52. data/examples/rails_openid/public/javascripts/controls.js +750 -0
  53. data/examples/rails_openid/public/javascripts/dragdrop.js +584 -0
  54. data/examples/rails_openid/public/javascripts/effects.js +854 -0
  55. data/examples/rails_openid/public/javascripts/prototype.js +1785 -0
  56. data/examples/rails_openid/public/robots.txt +1 -0
  57. data/examples/rails_openid/script/about +3 -0
  58. data/examples/rails_openid/script/breakpointer +3 -0
  59. data/examples/rails_openid/script/console +3 -0
  60. data/examples/rails_openid/script/destroy +3 -0
  61. data/examples/rails_openid/script/generate +3 -0
  62. data/examples/rails_openid/script/performance/benchmarker +3 -0
  63. data/examples/rails_openid/script/performance/profiler +3 -0
  64. data/examples/rails_openid/script/plugin +3 -0
  65. data/examples/rails_openid/script/process/reaper +3 -0
  66. data/examples/rails_openid/script/process/spawner +3 -0
  67. data/examples/rails_openid/script/process/spinner +3 -0
  68. data/examples/rails_openid/script/runner +3 -0
  69. data/examples/rails_openid/script/server +3 -0
  70. data/examples/rails_openid/test/functional/login_controller_test.rb +18 -0
  71. data/examples/rails_openid/test/functional/server_controller_test.rb +18 -0
  72. data/examples/rails_openid/test/test_helper.rb +28 -0
  73. data/lib/hmac/hmac.rb +112 -0
  74. data/lib/hmac/sha1.rb +11 -0
  75. data/lib/hmac/sha2.rb +25 -0
  76. data/lib/openid.rb +20 -0
  77. data/lib/openid/association.rb +249 -0
  78. data/lib/openid/consumer.rb +395 -0
  79. data/lib/openid/consumer/associationmanager.rb +344 -0
  80. data/lib/openid/consumer/checkid_request.rb +186 -0
  81. data/lib/openid/consumer/discovery.rb +497 -0
  82. data/lib/openid/consumer/discovery_manager.rb +123 -0
  83. data/lib/openid/consumer/html_parse.rb +134 -0
  84. data/lib/openid/consumer/idres.rb +523 -0
  85. data/lib/openid/consumer/responses.rb +148 -0
  86. data/lib/openid/cryptutil.rb +115 -0
  87. data/lib/openid/dh.rb +89 -0
  88. data/lib/openid/extension.rb +39 -0
  89. data/lib/openid/extensions/ax.rb +539 -0
  90. data/lib/openid/extensions/oauth.rb +91 -0
  91. data/lib/openid/extensions/pape.rb +179 -0
  92. data/lib/openid/extensions/sreg.rb +277 -0
  93. data/lib/openid/extensions/ui.rb +53 -0
  94. data/lib/openid/extras.rb +11 -0
  95. data/lib/openid/fetchers.rb +258 -0
  96. data/lib/openid/kvform.rb +136 -0
  97. data/lib/openid/kvpost.rb +58 -0
  98. data/lib/openid/message.rb +553 -0
  99. data/lib/openid/protocolerror.rb +8 -0
  100. data/lib/openid/server.rb +1544 -0
  101. data/lib/openid/store/filesystem.rb +271 -0
  102. data/lib/openid/store/interface.rb +75 -0
  103. data/lib/openid/store/memcache.rb +107 -0
  104. data/lib/openid/store/memory.rb +84 -0
  105. data/lib/openid/store/nonce.rb +68 -0
  106. data/lib/openid/trustroot.rb +349 -0
  107. data/lib/openid/urinorm.rb +75 -0
  108. data/lib/openid/util.rb +110 -0
  109. data/lib/openid/yadis/accept.rb +148 -0
  110. data/lib/openid/yadis/constants.rb +21 -0
  111. data/lib/openid/yadis/discovery.rb +153 -0
  112. data/lib/openid/yadis/filters.rb +205 -0
  113. data/lib/openid/yadis/htmltokenizer.rb +305 -0
  114. data/lib/openid/yadis/parsehtml.rb +45 -0
  115. data/lib/openid/yadis/services.rb +42 -0
  116. data/lib/openid/yadis/xrds.rb +155 -0
  117. data/lib/openid/yadis/xri.rb +90 -0
  118. data/lib/openid/yadis/xrires.rb +99 -0
  119. data/setup.rb +1551 -0
  120. data/test/data/accept.txt +124 -0
  121. data/test/data/dh.txt +29 -0
  122. data/test/data/example-xrds.xml +14 -0
  123. data/test/data/linkparse.txt +587 -0
  124. data/test/data/n2b64 +650 -0
  125. data/test/data/test1-discover.txt +137 -0
  126. data/test/data/test1-parsehtml.txt +152 -0
  127. data/test/data/test_discover/malformed_meta_tag.html +19 -0
  128. data/test/data/test_discover/openid.html +11 -0
  129. data/test/data/test_discover/openid2.html +11 -0
  130. data/test/data/test_discover/openid2_xrds.xml +12 -0
  131. data/test/data/test_discover/openid2_xrds_no_local_id.xml +11 -0
  132. data/test/data/test_discover/openid_1_and_2.html +11 -0
  133. data/test/data/test_discover/openid_1_and_2_xrds.xml +16 -0
  134. data/test/data/test_discover/openid_1_and_2_xrds_bad_delegate.xml +17 -0
  135. data/test/data/test_discover/openid_and_yadis.html +12 -0
  136. data/test/data/test_discover/openid_no_delegate.html +10 -0
  137. data/test/data/test_discover/openid_utf8.html +11 -0
  138. data/test/data/test_discover/yadis_0entries.xml +12 -0
  139. data/test/data/test_discover/yadis_2_bad_local_id.xml +15 -0
  140. data/test/data/test_discover/yadis_2entries_delegate.xml +22 -0
  141. data/test/data/test_discover/yadis_2entries_idp.xml +21 -0
  142. data/test/data/test_discover/yadis_another_delegate.xml +14 -0
  143. data/test/data/test_discover/yadis_idp.xml +12 -0
  144. data/test/data/test_discover/yadis_idp_delegate.xml +13 -0
  145. data/test/data/test_discover/yadis_no_delegate.xml +11 -0
  146. data/test/data/test_xrds/=j3h.2007.11.14.xrds +25 -0
  147. data/test/data/test_xrds/README +12 -0
  148. data/test/data/test_xrds/delegated-20060809-r1.xrds +34 -0
  149. data/test/data/test_xrds/delegated-20060809-r2.xrds +34 -0
  150. data/test/data/test_xrds/delegated-20060809.xrds +34 -0
  151. data/test/data/test_xrds/no-xrd.xml +7 -0
  152. data/test/data/test_xrds/not-xrds.xml +2 -0
  153. data/test/data/test_xrds/prefixsometimes.xrds +34 -0
  154. data/test/data/test_xrds/ref.xrds +109 -0
  155. data/test/data/test_xrds/sometimesprefix.xrds +34 -0
  156. data/test/data/test_xrds/spoof1.xrds +25 -0
  157. data/test/data/test_xrds/spoof2.xrds +25 -0
  158. data/test/data/test_xrds/spoof3.xrds +37 -0
  159. data/test/data/test_xrds/status222.xrds +9 -0
  160. data/test/data/test_xrds/subsegments.xrds +58 -0
  161. data/test/data/test_xrds/valid-populated-xrds.xml +39 -0
  162. data/test/data/trustroot.txt +153 -0
  163. data/test/data/urinorm.txt +79 -0
  164. data/test/discoverdata.rb +131 -0
  165. data/test/test_accept.rb +170 -0
  166. data/test/test_association.rb +266 -0
  167. data/test/test_associationmanager.rb +917 -0
  168. data/test/test_ax.rb +690 -0
  169. data/test/test_checkid_request.rb +294 -0
  170. data/test/test_consumer.rb +257 -0
  171. data/test/test_cryptutil.rb +119 -0
  172. data/test/test_dh.rb +86 -0
  173. data/test/test_discover.rb +852 -0
  174. data/test/test_discovery_manager.rb +262 -0
  175. data/test/test_extension.rb +46 -0
  176. data/test/test_extras.rb +35 -0
  177. data/test/test_fetchers.rb +565 -0
  178. data/test/test_filters.rb +270 -0
  179. data/test/test_idres.rb +963 -0
  180. data/test/test_kvform.rb +165 -0
  181. data/test/test_kvpost.rb +65 -0
  182. data/test/test_linkparse.rb +101 -0
  183. data/test/test_message.rb +1116 -0
  184. data/test/test_nonce.rb +89 -0
  185. data/test/test_oauth.rb +175 -0
  186. data/test/test_openid_yadis.rb +178 -0
  187. data/test/test_pape.rb +247 -0
  188. data/test/test_parsehtml.rb +80 -0
  189. data/test/test_responses.rb +63 -0
  190. data/test/test_server.rb +2457 -0
  191. data/test/test_sreg.rb +479 -0
  192. data/test/test_stores.rb +298 -0
  193. data/test/test_trustroot.rb +113 -0
  194. data/test/test_ui.rb +93 -0
  195. data/test/test_urinorm.rb +35 -0
  196. data/test/test_util.rb +145 -0
  197. data/test/test_xrds.rb +169 -0
  198. data/test/test_xri.rb +48 -0
  199. data/test/test_xrires.rb +63 -0
  200. data/test/test_yadis_discovery.rb +220 -0
  201. data/test/testutil.rb +127 -0
  202. data/test/util.rb +53 -0
  203. metadata +336 -0
@@ -0,0 +1,3 @@
1
+ # Methods added to this helper will be available to all templates in the application.
2
+ module ApplicationHelper
3
+ end
@@ -0,0 +1,2 @@
1
+ module LoginHelper
2
+ end
@@ -0,0 +1,9 @@
1
+
2
+ module ServerHelper
3
+
4
+ def url_for_user
5
+ url_for :controller => 'user', :action => session[:username]
6
+ end
7
+
8
+ end
9
+
@@ -0,0 +1,81 @@
1
+ <html>
2
+ <head>
3
+ <title>Rails OpenID Example Relying Party</title>
4
+ </head>
5
+ <style type="text/css">
6
+ * {
7
+ font-family: verdana,sans-serif;
8
+ }
9
+ body {
10
+ width: 50em;
11
+ margin: 1em;
12
+ }
13
+ div {
14
+ padding: .5em;
15
+ }
16
+ .alert {
17
+ border: 1px solid #e7dc2b;
18
+ background: #fff888;
19
+ }
20
+ .error {
21
+ border: 1px solid #ff0000;
22
+ background: #ffaaaa;
23
+ }
24
+ .success {
25
+ border: 1px solid #00ff00;
26
+ background: #aaffaa;
27
+ }
28
+ #verify-form {
29
+ border: 1px solid #777777;
30
+ background: #dddddd;
31
+ margin-top: 1em;
32
+ padding-bottom: 0em;
33
+ }
34
+ input.openid {
35
+ background: url( /images/openid_login_bg.gif ) no-repeat;
36
+ background-position: 0 50%;
37
+ background-color: #fff;
38
+ padding-left: 18px;
39
+ }
40
+ </style>
41
+ <body>
42
+ <h1>Rails OpenID Example Relying Party</h1>
43
+ <% if flash[:alert] %>
44
+ <div class='alert'>
45
+ <%= h(flash[:alert]) %>
46
+ </div>
47
+ <% end %>
48
+ <% if flash[:error] %>
49
+ <div class='error'>
50
+ <%= h(flash[:error]) %>
51
+ </div>
52
+ <% end %>
53
+ <% if flash[:success] %>
54
+ <div class='success'>
55
+ <%= h(flash[:success]) %>
56
+ </div>
57
+ <% end %>
58
+ <% if flash[:sreg_results] %>
59
+ <div class='alert'>
60
+ <%= flash[:sreg_results] %>
61
+ </div>
62
+ <% end %>
63
+ <% if flash[:pape_results] %>
64
+ <div class='alert'>
65
+ <%= flash[:pape_results] %>
66
+ </div>
67
+ <% end %>
68
+ <div id="verify-form">
69
+ <form method="get" accept-charset="UTF-8"
70
+ action='<%= url_for :action => 'start' %>'>
71
+ Identifier:
72
+ <input type="text" class="openid" name="openid_identifier" />
73
+ <input type="submit" value="Verify" /><br />
74
+ <input type="checkbox" name="immediate" id="immediate" /><label for="immediate">Use immediate mode</label><br/>
75
+ <input type="checkbox" name="use_sreg" id="use_sreg" /><label for="use_sreg">Request registration data</label><br/>
76
+ <input type="checkbox" name="use_pape" id="use_pape" /><label for="use_pape">Request phishing-resistent auth policy (PAPE)</label><br/>
77
+ <input type="checkbox" name="force_post" id="force_post" /><label for="force_post">Force the transaction to use POST by adding 2K of extra data</label>
78
+ </form>
79
+ </div>
80
+ </body>
81
+ </html>
@@ -0,0 +1,68 @@
1
+ <html>
2
+ <head><title>OpenID Server Example</title></head>
3
+ <style type="text/css">
4
+ * {
5
+ font-family: verdana,sans-serif;
6
+ }
7
+ body {
8
+ width: 50em;
9
+ margin: 1em;
10
+ }
11
+ div {
12
+ padding: .5em;
13
+ }
14
+ table {
15
+ margin: none;
16
+ padding: none;
17
+ }
18
+ .notice {
19
+ border: 1px solid #60964f;
20
+ background: #b3dca7;
21
+ }
22
+ .error {
23
+ border: 1px solid #ff0000;
24
+ background: #ffaaaa;
25
+ }
26
+ #login-form {
27
+ border: 1px solid #777777;
28
+ background: #dddddd;
29
+ margin-top: 1em;
30
+ padding-bottom: 0em;
31
+ }
32
+ table {
33
+ padding: 1em;
34
+ }
35
+ li {margin-bottom: .5em;}
36
+ span.openid:before {
37
+ content: url(<%= @base_url %>images/openid_login_bg.gif) ;
38
+ }
39
+ span.openid {
40
+ font-size: smaller;
41
+ }
42
+ </style>
43
+ <body>
44
+
45
+
46
+
47
+ <% if session[:username] %>
48
+ <div style="float:right;">
49
+ Welcome, <%= session[:username] %> | <%= link_to('Log out', :controller => 'login', :action => 'logout') %><br />
50
+ <span class="openid"><%= @base_url %>user/<%= session[:username] %></span>
51
+ </div>
52
+ <% end %>
53
+
54
+ <h3>Ruby OpenID Server Example</h3>
55
+
56
+ <hr/>
57
+
58
+ <% if flash[:notice] or flash[:error] %>
59
+ <div class="<%= flash[:notice].nil? ? 'error' : 'notice' %>">
60
+ <%= flash[:error] or flash[:notice] %>
61
+ </div>
62
+ <% end %>
63
+
64
+ <%= @content_for_layout %>
65
+
66
+
67
+ </body>
68
+ </html>
@@ -0,0 +1,56 @@
1
+
2
+
3
+ <% if session[:username].nil? %>
4
+
5
+ <div id="login-form">
6
+ <form method="get" action="<%= url_for :controller => 'login', :action => 'submit' %>">
7
+ Type a username:
8
+ <input type="text" name="username" />
9
+ <input type="submit" value="Log In" />
10
+ </form>
11
+
12
+ </div>
13
+
14
+ <% end %>
15
+
16
+ <p> Welcome to the Ruby OpenID example. This code is a starting point
17
+ for developers wishing to implement an OpenID provider or relying
18
+ party. We've used the <a href="http://rubyonrails.org/">Rails</a>
19
+ platform to demonstrate, but the library code is not Rails specific.</p>
20
+
21
+ <h2>To use the example provider</h2>
22
+ <p>
23
+ <ol>
24
+
25
+ <li>Enter a username in the form above. You will be "Logged In"
26
+ to the server, at which point you may authenticate using an OpenID
27
+ consumer. Your OpenID URL will be displayed after you log
28
+ in.<p>The server will automatically create an identity page for
29
+ you at <%= @base_url %>user/<i>name</i></p></li>
30
+
31
+ <li><p>Because WEBrick can only handle one thing at a time, you'll need to
32
+ run another instance of the example on another port if you want to use
33
+ a relying party to use with this example provider:</p>
34
+ <blockquote>
35
+ <code>script/server --port=3001</code>
36
+ </blockquote>
37
+
38
+ <p>(The RP needs to be able to access the provider, so unless you're
39
+ running this example on a public IP, you can't use the live example
40
+ at <a href="http://openidenabled.com/">openidenabled.com</a> on
41
+ your local provider.)</p>
42
+ </li>
43
+
44
+ <li>Point your browser to this new instance and follow the directions
45
+ below.</li>
46
+ <!-- Fun fact: 'url_for :port => 3001' doesn't work very well. -->
47
+ </ol>
48
+
49
+ </p>
50
+
51
+ <h2>To use the example relying party</h2>
52
+
53
+ <p>Visit <a href="<%= url_for :controller => 'consumer' %>">/consumer</a>
54
+ and enter your OpenID.</p>
55
+ </p>
56
+
@@ -0,0 +1,26 @@
1
+ <form method="post" action="<%= url_for :controller => 'server', :action => 'decision' %>">
2
+
3
+ <table>
4
+ <tr><td>Site:</td><td><%= @oidreq.trust_root %></td></tr>
5
+
6
+ <% if @oidreq.id_select %>
7
+ <tr>
8
+ <td colspan="2">
9
+ You entered the server identifier at the relying party.
10
+ You'll need to send an identifier of your choosing. Enter a
11
+ username below.
12
+ </td>
13
+ </tr>
14
+ <tr>
15
+ <td>Identity to send:</td>
16
+ <td><input type="text" name="id_to_send" size="25" /></td>
17
+ </tr>
18
+ <% else %>
19
+ <tr><td>Identity:</td><td><%= @oidreq.identity %></td></tr>
20
+ <% end %>
21
+ </table>
22
+
23
+ <input type="submit" name="yes" value="yes" />
24
+ <input type="submit" name="no" value="no" />
25
+
26
+ </form>
@@ -0,0 +1,19 @@
1
+ # Don't change this file. Configuration is done in config/environment.rb and config/environments/*.rb
2
+
3
+ unless defined?(RAILS_ROOT)
4
+ root_path = File.join(File.dirname(__FILE__), '..')
5
+ unless RUBY_PLATFORM =~ /mswin32/
6
+ require 'pathname'
7
+ root_path = Pathname.new(root_path).cleanpath(true).to_s
8
+ end
9
+ RAILS_ROOT = root_path
10
+ end
11
+
12
+ if File.directory?("#{RAILS_ROOT}/vendor/rails")
13
+ require "#{RAILS_ROOT}/vendor/rails/railties/lib/initializer"
14
+ else
15
+ require 'rubygems'
16
+ require 'initializer'
17
+ end
18
+
19
+ Rails::Initializer.run(:set_load_path)
@@ -0,0 +1,74 @@
1
+ # MySQL (default setup). Versions 4.1 and 5.0 are recommended.
2
+ #
3
+ # Get the fast C bindings:
4
+ # gem install mysql
5
+ # (on OS X: gem install mysql -- --include=/usr/local/lib)
6
+ # And be sure to use new-style password hashing:
7
+ # http://dev.mysql.com/doc/refman/5.0/en/old-client.html
8
+ development:
9
+ adapter: sqlite3
10
+ database: db/development.sqlite3
11
+
12
+ # Warning: The database defined as 'test' will be erased and
13
+ # re-generated from your development database when you run 'rake'.
14
+ # Do not set this db to the same as development or production.
15
+ test:
16
+ adapter: sqlite3
17
+ database: ":memory:"
18
+
19
+ production:
20
+ adapter: mysql
21
+ database: rails_server_production
22
+ username: root
23
+ password:
24
+ socket: /path/to/your/mysql.sock
25
+
26
+
27
+ # PostgreSQL versions 7.4 - 8.1
28
+ #
29
+ # Get the C bindings:
30
+ # gem install postgres
31
+ # or use the pure-Ruby bindings on Windows:
32
+ # gem install postgres-pr
33
+ postgresql_example:
34
+ adapter: postgresql
35
+ database: rails_server_development
36
+ username: rails_server
37
+ password:
38
+
39
+ # Connect on a TCP socket. Omitted by default since the client uses a
40
+ # domain socket that doesn't need configuration.
41
+ #host: remote-database
42
+ #port: 5432
43
+
44
+ # Schema search path. The server defaults to $user,public
45
+ #schema_search_path: myapp,sharedapp,public
46
+
47
+ # Character set encoding. The server defaults to sql_ascii.
48
+ #encoding: UTF8
49
+
50
+ # Minimum log levels, in increasing order:
51
+ # debug5, debug4, debug3, debug2, debug1,
52
+ # info, notice, warning, error, log, fatal, or panic
53
+ # The server defaults to notice.
54
+ #min_messages: warning
55
+
56
+
57
+ # SQLite version 2.x
58
+ # gem install sqlite-ruby
59
+ sqlite_example:
60
+ adapter: sqlite
61
+ database: db/development.sqlite2
62
+
63
+
64
+ # SQLite version 3.x
65
+ # gem install sqlite3-ruby
66
+ sqlite3_example:
67
+ adapter: sqlite3
68
+ database: db/development.sqlite3
69
+
70
+
71
+ # In-memory SQLite 3 database. Useful for tests.
72
+ sqlite3_in_memory_example:
73
+ adapter: sqlite3
74
+ database: ":memory:"
@@ -0,0 +1,54 @@
1
+ # Be sure to restart your web server when you modify this file.
2
+
3
+ # Uncomment below to force Rails into production mode when
4
+ # you don't control web/app server and can't set it the proper way
5
+ # ENV['RAILS_ENV'] ||= 'production'
6
+
7
+ # Bootstrap the Rails environment, frameworks, and default configuration
8
+ require File.join(File.dirname(__FILE__), 'boot')
9
+
10
+ Rails::Initializer.run do |config|
11
+ # Settings in config/environments/* take precedence those specified here
12
+
13
+ # Skip frameworks you're not going to use
14
+ # config.frameworks -= [ :action_web_service, :action_mailer ]
15
+
16
+ # Add additional load paths for your own custom dirs
17
+ # config.load_paths += %W( #{RAILS_ROOT}/extras )
18
+
19
+ # Force all environments to use the same logger level
20
+ # (by default production uses :info, the others :debug)
21
+ # config.log_level = :debug
22
+
23
+ # Use the database for sessions instead of the file system
24
+ # (create the session table with 'rake create_sessions_table')
25
+ # config.action_controller.session_store = :active_record_store
26
+
27
+ # Enable page/fragment caching by setting a file-based store
28
+ # (remember to create the caching directory and make it readable to the application)
29
+ # config.action_controller.fragment_cache_store = :file_store, "#{RAILS_ROOT}/cache"
30
+
31
+ # Activate observers that should always be running
32
+ # config.active_record.observers = :cacher, :garbage_collector
33
+
34
+ # Make Active Record use UTC-base instead of local time
35
+ # config.active_record.default_timezone = :utc
36
+
37
+ # Use Active Record's schema dumper instead of SQL when creating the test database
38
+ # (enables use of different database adapters for development and test environments)
39
+ # config.active_record.schema_format = :ruby
40
+
41
+ # See Rails::Configuration for more options
42
+ end
43
+
44
+ # Add new inflection rules using the following format
45
+ # (all these examples are active by default):
46
+ # Inflector.inflections do |inflect|
47
+ # inflect.plural /^(ox)$/i, '\1en'
48
+ # inflect.singular /^(ox)en/i, '\1'
49
+ # inflect.irregular 'person', 'people'
50
+ # inflect.uncountable %w( fish sheep )
51
+ # end
52
+
53
+ # Include your application configuration below
54
+ ActionController::CgiRequest::DEFAULT_SESSION_OPTIONS[:session_key] = '_session_id_2'
@@ -0,0 +1,19 @@
1
+ # Settings specified here will take precedence over those in config/environment.rb
2
+
3
+ # In the development environment your application's code is reloaded on
4
+ # every request. This slows down response time but is perfect for development
5
+ # since you don't have to restart the webserver when you make code changes.
6
+ config.cache_classes = false
7
+
8
+ # Log error messages when you accidentally call methods on nil.
9
+ config.whiny_nils = true
10
+
11
+ # Enable the breakpoint server that script/breakpointer connects to
12
+ config.breakpoint_server = true
13
+
14
+ # Show full error reports and disable caching
15
+ config.action_controller.consider_all_requests_local = true
16
+ config.action_controller.perform_caching = false
17
+
18
+ # Don't care if the mailer can't send
19
+ config.action_mailer.raise_delivery_errors = false
@@ -0,0 +1,19 @@
1
+ # Settings specified here will take precedence over those in config/environment.rb
2
+
3
+ # The production environment is meant for finished, "live" apps.
4
+ # Code is not reloaded between requests
5
+ config.cache_classes = true
6
+
7
+ # Use a different logger for distributed setups
8
+ # config.logger = SyslogLogger.new
9
+
10
+
11
+ # Full error reports are disabled and caching is turned on
12
+ config.action_controller.consider_all_requests_local = false
13
+ config.action_controller.perform_caching = true
14
+
15
+ # Enable serving of images, stylesheets, and javascripts from an asset server
16
+ # config.action_controller.asset_host = "http://assets.example.com"
17
+
18
+ # Disable delivery errors if you bad email addresses should just be ignored
19
+ # config.action_mailer.raise_delivery_errors = false