<feed xmlns='http://www.w3.org/2005/Atom'>
<title>leap_web.git/users/lib/leap_web_users, branch master</title>
<subtitle>[leap_web] 
</subtitle>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/'/>
<entry>
<title>move users: config and lib</title>
<updated>2014-04-08T12:30:07+00:00</updated>
<author>
<name>Azul</name>
<email>azul@leap.se</email>
</author>
<published>2014-04-08T12:22:56+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=9776dd10fc60efde38946588d0955c406f6c1f5e'/>
<id>9776dd10fc60efde38946588d0955c406f6c1f5e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>moving all of core into toplevel, tests fail.</title>
<updated>2014-04-08T07:12:37+00:00</updated>
<author>
<name>Azul</name>
<email>azul@leap.se</email>
</author>
<published>2014-04-08T07:12:37+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=53808b073f539ba2b442738b6abf97228488e311'/>
<id>53808b073f539ba2b442738b6abf97228488e311</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>some basic webfinger routes, controller, presenters, views</title>
<updated>2013-01-22T12:06:37+00:00</updated>
<author>
<name>Azul</name>
<email>azul@leap.se</email>
</author>
<published>2013-01-22T11:02:18+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=de48efcf2a6b5fb096fd209b1efea482f743c19c'/>
<id>de48efcf2a6b5fb096fd209b1efea482f743c19c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>seperated the warden classes from the initializer</title>
<updated>2012-11-09T15:45:54+00:00</updated>
<author>
<name>Azul</name>
<email>azul@leap.se</email>
</author>
<published>2012-11-09T15:45:54+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=5b300b554682c232c0955bdb0dd3d8263dde901e'/>
<id>5b300b554682c232c0955bdb0dd3d8263dde901e</id>
<content type='text'>
also commented the sessions controller test a bit and fixed it
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
also commented the sessions controller test a bit and fixed it
</pre>
</div>
</content>
</entry>
<entry>
<title>using rails_warden bit of refactoring</title>
<updated>2012-10-30T13:42:04+00:00</updated>
<author>
<name>Azul</name>
<email>azul@leap.se</email>
</author>
<published>2012-10-30T13:42:04+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=bcc0f11caeef1b09712b9b62e1607237885d1af5'/>
<id>bcc0f11caeef1b09712b9b62e1607237885d1af5</id>
<content type='text'>
without rails_warden the failure app action was not getting set properly.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
without rails_warden the failure app action was not getting set properly.
</pre>
</div>
</content>
</entry>
<entry>
<title>adding in warden with a basic strategy</title>
<updated>2012-10-30T11:32:10+00:00</updated>
<author>
<name>Azul</name>
<email>azul@leap.se</email>
</author>
<published>2012-10-30T11:32:10+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=194e924cb7c36eafa01b68c74774505e170e47ac'/>
<id>194e924cb7c36eafa01b68c74774505e170e47ac</id>
<content type='text'>
currently failing because we are not setting the content-type header.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
currently failing because we are not setting the content-type header.
</pre>
</div>
</content>
</entry>
<entry>
<title>moved core dependency into */Gemfile with :path</title>
<updated>2012-10-11T08:22:34+00:00</updated>
<author>
<name>Azul</name>
<email>azul@leap.se</email>
</author>
<published>2012-10-11T08:22:34+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=add8d015c87a00626b739080bd75c7e7aeb9c1df'/>
<id>add8d015c87a00626b739080bd75c7e7aeb9c1df</id>
<content type='text'>
In order to get the rails generators and the like to work properly in engines we need to require all the dependencies in the engine.rb file.

Since I want to keep that list of engines in a centralized place we still need core and we need to require it from the other engines.

We don't want to require the core gem to be installed so I added it with :path option to the Gemfile.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In order to get the rails generators and the like to work properly in engines we need to require all the dependencies in the engine.rb file.

Since I want to keep that list of engines in a centralized place we still need core and we need to require it from the other engines.

We don't want to require the core gem to be installed so I added it with :path option to the Gemfile.
</pre>
</div>
</content>
</entry>
<entry>
<title>first steps at reducing core</title>
<updated>2012-10-11T08:15:40+00:00</updated>
<author>
<name>Azul</name>
<email>azul@leap.se</email>
</author>
<published>2012-10-10T17:56:35+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=00b7b36516d1d07300870029ad5190f06122a493'/>
<id>00b7b36516d1d07300870029ad5190f06122a493</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>added in leap web users - one repo to rule them all</title>
<updated>2012-09-27T20:39:08+00:00</updated>
<author>
<name>Azul</name>
<email>azul@riseup.net</email>
</author>
<published>2012-09-27T20:39:08+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_web.git/commit/?id=ebbfe3d77efddbe8f97fa82c171632ac4cfcf6da'/>
<id>ebbfe3d77efddbe8f97fa82c171632ac4cfcf6da</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
