If I use the LGPL libraries in my web application, should I provide the server side source code?

My Rails uses the SVN Rails bindings here , which are distributed under the terms of the LGPL.

Using these bindings, should I therefore redistribute the Rails project?

+4
source share
1 answer

I'm not a lawyer

but

The GPL does not require publishing your source to the public. This requires that you distribute the source along with the application if you distribute (sell, etc.) the application to someone.

LGPL doesn't even require this; it requires that you distribute the sources of the library (and any changes you make to it); not the application itself.

If users access your web browser through a browser, this is not considered distribution of the application. (there is an AGPL for this)

+6
source

Source: https://habr.com/ru/post/1303858/


All Articles