CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Thu, 07 Aug 2025 18:56:47 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100214005838
location: https://web.archive.org/web/20100214005838/https://github.com/josh/tinder
server-timing: captures_list;dur=1.078494, exclusion.robots;dur=0.033336, exclusion.robots.policy;dur=0.017243, esindex;dur=0.016388, cdx.remote;dur=384.556821, LoadShardBlock;dur=443.252269, PetaboxLoader3.datanode;dur=234.835904, PetaboxLoader3.resolve;dur=148.782011
x-app-server: wwwb-app211
x-ts: 302
x-tr: 888
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app211; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Thu, 07 Aug 2025 18:56:50 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Sun, 14 Feb 2010 00:58:38 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "d8d7f5a330f09359325126cc68a9e7a6"
x-archive-orig-x-runtime: 147ms
x-archive-orig-content-length: 26631
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Sun, 14 Feb 2010 00:58:38 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Sun, 14 Feb 2010 00:58:38 GMT", ; rel="memento"; datetime="Sun, 14 Feb 2010 00:58:38 GMT", ; rel="last memento"; datetime="Sun, 14 Feb 2010 00:58:38 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: TLA-20100213232338-00790-00798-ia360906-20100214094536-00000-c/TLA-20100214005321-00792-ia360906.us.archive.org.warc.gz
server-timing: captures_list;dur=1.461282, exclusion.robots;dur=0.021681, exclusion.robots.policy;dur=0.010941, esindex;dur=0.009907, cdx.remote;dur=458.787112, LoadShardBlock;dur=369.242005, PetaboxLoader3.datanode;dur=232.766557, PetaboxLoader3.resolve;dur=1512.622656, load_resource;dur=1571.054678
x-app-server: wwwb-app211
x-ts: 200
x-tr: 2496
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
josh's tinder at master - GitHub
This service is courtesy of Pledgie.
josh / tinder forked from collectiveidea/tinder
- Source
- Commits
- Network (28)
- Graphs
-
Branch:
master
click here to add a description
click here to add a homepage
-
Branches (2)
- master ✓
- official_api
- Tags (5)
Sending Request…
Enable Donations
Pledgie Donations
Once activated, we'll place the following badge in your repository's detail box:
Tinder is an Ruby API for interfacing with Campfire, the 37Signals chat application. — Read more
tinder /
name | age | message | |
---|---|---|---|
![]() |
.gitignore | Fri Sep 11 22:45:25 -0700 2009 | Convert to Jewel and clean some things up [brandon] |
![]() |
CHANGELOG.txt | Thu Aug 27 04:54:32 -0700 2009 | Update changelog and bump version [brandon] |
![]() |
Manifest.txt | Wed Jan 28 18:47:39 -0800 2009 | Preparing for release 1.2.0 release and fix ver... [brandon] |
![]() |
README.txt | Loading commit data... ![]() |
|
![]() |
Rakefile | ||
![]() |
VERSION | Fri Sep 11 22:45:25 -0700 2009 | Convert to Jewel and clean some things up [brandon] |
![]() |
init.rb | Tue Jan 23 16:20:48 -0800 2007 | moved stuff around added contributions from Ter... [brandon] |
![]() |
lib/ | ||
![]() |
site/ | ||
![]() |
spec/ | Tue Dec 15 09:51:08 -0800 2009 | Make use of load paths [josh] |
![]() |
test/ | Tue Dec 15 09:51:08 -0800 2009 | Make use of load paths [josh] |
![]() |
tinder.gemspec |
README.txt
= Tinder - get the Campfire started Tinder is a library for interfacing with Campfire, the chat application from 37Signals. Unlike Marshmallow, it is designed to be a full-featured API (since 37Signals doesn't provide a real one), allowing you to programatically manage and speak/listen in chat rooms. == Usage campfire = Tinder::Campfire.new 'mysubdomain' campfire.login 'myemail@example.com', 'mypassword' room = campfire.create_room 'New Room', 'My new campfire room to test tinder' room.rename 'New Room Name' room.speak 'Hello world!' room.paste "my pasted\ncode" room.destroy room = campfire.find_room_by_guest_hash 'abc123', 'John Doe' room.speak 'Hello world!' See the RDoc for more details. == Installation Tinder can be installed as a gem or a Rails plugin: gem install tinder script/plugin install git://github.com/collectiveidea/tinder.git == How to contribute If you find what looks like a bug: 1. Check the GitHub issue tracker to see if anyone else has had the same issue. https://github.com/collectiveidea/tinder/issues/ 2. If you don't see anything, create an issue with information on how to reproduce it. If you want to contribute an enhancement or a fix: 1. Fork the project on github. https://github.com/collectiveidea/tinder 2. Make your changes with tests. 3. Commit the changes without making changes to the Rakefile, VERSION, or any other files that aren't related to your enhancement or fix 4. Send a pull request. == ToDo * Tests! (unit and remote) * Marshmallow-style integration scripts for exception notification and continuous integration