Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Gemfile.lock
Commit message (Collapse)AuthorAgeFilesLines
* Reuse rots from gemsAleksey Lim2013-02-031-7/+2
|
* Upgrade to Rails 2.3.16Christian Johansen2013-01-291-30/+19
| | | | - Addresses critical security vulnerability in Rails
* Use the official Rails repo for 2.3-stableChristian Johansen2013-01-241-2/+2
|
* Depend on community fork of Rails 2Christian Johansen2013-01-221-18/+29
|
* Gitorious 2.4.5Marius Mathiesen2013-01-091-18/+18
| | | | This release fixes the vulnerability CVE-2013-0156.
* Upgrade Paperclip dependency to fix failing avatarsMarius Mathiesen2012-12-211-4/+4
| | | | | | A bug in cocaine, required from paperclip, caused attachments to fail Reference: https://github.com/thoughtbot/paperclip/issues/1038
* Replace Ultrasphinx with ThinkingSphinxMarius Mathiesen2012-10-291-7/+13
| | | | | | | | | | | | | | | | | | | | | The Ultrasphinx plugin has been abandoned, so we're switching to ThinkingSphinx instead. The good news is that we're still using the same search engine, and that all the internal indexing/searching logic has been preserved through the rewrite. However, if you maintain your own server, you will need to make a few changes. The ultrasphinx: rake tasks no longer exist, but have been replaced by thinking_sphinx tasks: - rake thinking_sphinx:config generates the Sphinx configuration file - rake thinking_sphinx:index indexes the Sphinx data rake - thinking_sphinx:rebuild stops, reindexes and starts Sphinx rake - thinking_sphinx:reindex reindexes without re-generating a configuration file - thinking_sphinx:stop stops Sphinx - thinking_sphinx:start starts Sphinx - thinking_sphinx:running_start stops Sphinx if it's running and then starts it
* Unvendor and upgrade Rails to 2.3.14Christian Johansen2012-10-251-3/+17
|
* Gemfile that works with Rails > 2.3.6Christian Johansen2012-10-251-30/+30
|
* Seems we've been rolling with a really antique LDAP libraryMarius Mathiesen2012-10-081-2/+2
|
* Update the gemfile.lockThomas Kjeldahl Nilsson2012-10-031-2/+2
|
* Start using our new just_paginate gem instead of will_paginateThomas Kjeldahl Nilsson2012-10-031-0/+2
| | | | | | We do the project index controller first, get around to the rest of them as time permits. Goal is to rip out will_paginate altogether as it's turned into multiple bugs over time.
* Adding Unicorn to gemfileMarius Mathiesen2012-10-011-0/+7
| | | | | | | | | | Also including some starting points: - A wrapper in script/unicorn, which spawns a Unicorn process with the correct environment and will not need to fork twice (which confuses Upstart) - A default Unicorn configuration file - An Upstart recipe for controlling Unicorn
* Update to latest version of capillary.rbMarius Mathiesen2012-05-181-2/+2
|
* Merge branch 'private-repos'Christian Johansen2012-04-181-45/+53
|\ | | | | | | | | | | | | | | | | | | | | Conflicts: Gemfile Gemfile.lock app/controllers/merge_requests_controller.rb app/helpers/application_helper.rb app/models/user.rb test/unit/repository_test.rb test/unit/user_test.rb
| * Updated Gemfile.lockChristian Johansen2012-03-031-0/+5
| |
| * Freeze Gem versionsChristian Johansen2012-02-281-47/+43
| | | | | | | | | | | | | | Conflicts: Gemfile Gemfile.lock
* | Add a Procfile for dead simple development setupMarius Mathiesen2012-03-301-4/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | You can now start (and stop) all (most) Gitorious components with a single command: foreman. If you include Bundler's binstubs, bundle install --binstubs you'll end up with all Gem binaries in the current environment inside (by default) bin/. There you'll find the foreman command too, which you can invoke like this: foreman start Once you do that, a set of processes will be started for you, including a Stomp server and a script/poller instance. Each process will have its output colored by Foreman so you can easily see what comes from where. Once you're done, simply Ctrl-C in the terminal, and all services will be gone. Foreman also lets you export Upstart tasks, which may make sense in your environment. Have a look at http://blog.daviddollar.org/2011/05/06/introducing-foreman.html for the details.
* | Add a development group in Gemfile to support developing with foremanMarius Mathiesen2012-03-301-0/+17
| | | | | | | | | | Since Gitorious uses Bundler, all required gems need to be in the Gemfile, also for development. Adding those dependencies here.
* | Remove troublesome and unused dependencyChristian Johansen2012-02-281-7/+0
|/
* Update paperclipChristian Johansen2012-02-281-2/+7
|
* Atlassian Crowd SupportChristian Johansen2011-12-061-0/+1
| | | | | | - Not yet 100% complete - Rails throws reload errors in development mode - See authentication.sample.yml for instructions on use
* BundlerChristian Johansen2011-11-231-0/+5
|
* Resolve merge conflictChristian Johansen2011-10-141-4/+4
|\
| * Render tags and heads (branches) differently on the log graphChristian Johansen2011-08-311-2/+2
| |
| * Ref names in the log graphChristian Johansen2011-08-301-2/+2
| |
| * Update Capillary, display commit messages as markupChristian Johansen2011-08-241-2/+2
| |
| * Use --graph log out put for Capillary. Allow log from specific branch.Christian Johansen2011-08-231-2/+2
| |
| * Add graphs controller to visualize commit history in a graphChristian Johansen2011-08-221-2/+2
| |
* | Configure LDAP Authentication with sensible defaultsMarius Mathiesen2011-09-191-0/+2
| | | | | | | | Also adding ruby-net-ldap requirement
* | Add OpenID integration testRodrigo Rosenfeld Rosas2011-09-141-0/+35
|/
* Requiring the latest and greatest Capillary versionMarius Mathiesen2011-07-151-2/+2
|
* Adding a controller which generates Capillary JSON log data for a repositoryMarius Mathiesen2011-07-151-2/+2
| | | | | | | - Mapped under the /api namespace - Shells out to git via Gitorious::GitShell - Times out after 10 seconds, returns an empty array if this happens - Graphs with --all -50
* Prepare for git tree renderingMarius Mathiesen2011-07-141-3/+6
| | | | | - reserve the /api namespace - require the Capillary gem
* Resolve merge conflict from masterChristian Johansen2011-07-111-0/+13
|\
| * refactoring: replace vendored hodel_3000_compliant_logger with its gemRodrigo Rosenfeld Rosas2011-06-231-0/+2
| |
| * Fix Gemfile.lockRodrigo Rosenfeld Rosas2011-06-231-0/+5
| |
| * Merge branch 'master' of gitorious.org:gitorious/mainlineChristian Johansen2011-06-151-1/+2
| |\
| | * Prepare for JRuby compatibilityMarius Mathiesen2011-06-141-1/+2
| | | | | | | | | | | | | | | - Require activerecord JDBC on JRuby - Update to latest RDiscount, which works on JRuby 1.6
| * | Add tuxml for xml test output to GemfileChristian Johansen2011-06-151-0/+4
| |/
* | Refactor the stomp poller so it works without Rails environmentChristian Johansen2011-05-301-0/+3
| | | | | | | | | | | | - Put gems in groups corresponding to adapters in Gemfile - Load the correct group in the post-receive hook - Unvendor the activemessaging plugin, use the gem instead
* | TMPChristian Johansen2011-05-271-2/+2
| |
* | Add Resque adapter for new messaging APIChristian Johansen2011-05-161-0/+15
|/
* refactoring: Replaces vendored will_paginate plugin with its gemRodrigo Rosenfeld Rosas2011-05-151-0/+2
|
* refactoring: Replaces vendored ssl_requirement plugin with its gemRodrigo Rosenfeld Rosas2011-05-151-0/+2
|
* refactoring: Replaces vendored exception_notifier plugin its gemRodrigo Rosenfeld Rosas2011-05-141-0/+2
|
*