CARVIEW |
technomancy / conspire
- Source
- Commits
- Network (0)
- Issues (0)
- Downloads (1)
- Wiki (2)
- Graphs
-
Branch:
master
click here to add a description
click here to add a homepage
-
Branches (1)
- master ✓
- Tags (1)
Pledgie Donations
Once activated, we'll place the following badge in your repository's detail box:
A real-time collaborative editing platform built on Git. — Read more
name | age | message | |
---|---|---|---|
![]() |
.gitignore | Thu Jul 24 17:20:15 -0700 2008 | tweaking gemspec so emacs support is included [technomancy] |
![]() |
COPYING | Wed Jul 23 09:22:55 -0700 2008 | ...and add those files that got left out [technomancy] |
![]() |
History.txt | Fri Jul 25 20:06:51 -0700 2008 | documentation updates; version 0.1.1 [technomancy] |
![]() |
Manifest.txt | Fri Jul 25 17:39:27 -0700 2008 | wide-ranging minor refactorings [technomancy] |
![]() |
README.rdoc | Tue Aug 12 14:17:50 -0700 2008 | add version command, release 0.1.2 [technomancy] |
![]() |
Rakefile | Tue Aug 12 14:17:50 -0700 2008 | add version command, release 0.1.2 [technomancy] |
![]() |
bin/ | Tue Aug 12 14:17:50 -0700 2008 | add version command, release 0.1.2 [technomancy] |
![]() |
conspire.gemspec | Tue Aug 12 14:17:50 -0700 2008 | add version command, release 0.1.2 [technomancy] |
![]() |
lib/ | Tue Aug 12 14:17:50 -0700 2008 | add version command, release 0.1.2 [technomancy] |
![]() |
test/ | Fri Jul 25 17:39:27 -0700 2008 | wide-ranging minor refactorings [technomancy] |
conspire
© 2008 Phil Hagelberg github.com/technomancy/conspire
Conspire is a real-time collaborative editing platform using Git as a transport layer.
Installation
You’ll need git 1.5.5 or higher. Ubuntu 8.04 has an older git, but MacPorts’ version is OK. You’ll also need the package libavahi-compat-libdnssd-dev on Debian-based systems.
$ sudo gem install roastbeef; roastbeef install git $ sudo apt-get install libavahi-compat-libdnssd-dev
Once prerequisites are met:
$ sudo gem install technomancy-conspire --source=https://gems.github.com
Usage
Conspiracy sessions operate around repositories rather than single files like other collaborative editors. See lib/conspire/support to see which editors are supported. In Emacs, first install conspire.el, then visit the file you want to edit and invoke M-x conspire-mode.
Repository history is cleared in between conspiracy sessions.
You can manually use conspire if you want to try it out without an editor. Just launch conspire with a directory as its only argument, and it will initialize a new git repository in there and launch a conspiracy session. You will have to manually "git add" new files you want to introduce to the session.
For testing purposes, you can run two or more conspiracies on the same machine; you just have to specify an alternate port and name for the others. Names should always include the string "conspiracy" to distinguish them from other gitjour repositories.
$ conspire repo -p 7457 -n conspiracy2
Set the DEBUG environment variable to get more information on the console.
Bugs
- Conflict resolution remains entirely unhandled.
- Emacs is the only supported editor; see below.
- When using Avahi for your ZeroConf implementation, you will not be able to do anything unless you have an active network connection. So disconnected conspirancy sessions are not possible without bringing up an ad-hoc network to trick Avahi into activating. You’ll also see a big fat warning, which should be ignored.
Contributing
Patches are welcome via github or email. Adding support for more editors would probably be the most useful contributions, though anything is appreciated.
Editors must support:
- Saving on an interval
- Committing files to the repo
- Refreshing internal buffers
Edits should not be allowed in between these steps. Editors may be able to support launching the conspire executable for added convenience.