forked from xmpp4r/xmpp4r
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request xmpp4r#3 from coderhs/master
Updated Information
- Loading branch information
Showing
5 changed files
with
122 additions
and
346 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,45 @@ | ||
= XMPP4R | ||
|
||
A XMPP/Jabber library for ruby | ||
|
||
|
||
== Project Home | ||
|
||
You can find info about the xmpp4r project and how to contribute | ||
at the project home page: | ||
|
||
http://home.gna.org/xmpp4r/ | ||
http://xmpp4r.github.io | ||
|
||
If you need to ask questions, or want feedback on proposed changes | ||
please feel free to ask them on the '[email protected]' mailing | ||
list. You can join or view archives of the mailing list at: | ||
please feel free to ask them on the github issues tracker. | ||
|
||
https://gna.org/mail/?group=xmpp4r | ||
https://github.com/xmpp4r/xmpp4r/issues | ||
|
||
If you are having a problem and would like to report it | ||
to the mailing list please include a protocol dump | ||
please include a protocol dump | ||
which can be enabled in your code with: | ||
|
||
Jabber::debug = true | ||
|
||
|
||
== Contributors | ||
|
||
Lucas Nussbaum <[email protected]> | ||
Stephan Maka <[email protected]> | ||
Kirill A. Shutemov <[email protected]> | ||
Glenn Rempe <[email protected]> | ||
Jacob Burkhart <[email protected]> | ||
Yuki Mitsui | ||
Peter Schrammel | ||
Olli | ||
Vojtech Vobr | ||
Andreas Wiese | ||
Chris Zelenak | ||
Matthew Wood | ||
Sam Ruby | ||
Tim Carey-Smith | ||
Scott Lillibridge | ||
Joshua Sierles | ||
Ripta Pasay <[email protected]> | ||
Seth Fitzsimmons | ||
=== Present Maintainers | ||
|
||
Harisankar P S ([email protected]) | ||
Manu S Ajith ([email protected]) | ||
|
||
=== List of Contributors | ||
|
||
http://github.com/xmpp4r/xmpp4r/contributors | ||
|
||
|
||
== Source Code | ||
|
||
The source for xmpp4r is managed using the Git SCM and can be | ||
found in our GitHub.com project page: | ||
|
||
http://github.com/ln/xmpp4r/tree/master | ||
http://github.com/xmpp4r/xmpp4r/tree/master | ||
|
||
|
||
== Installation | ||
|
@@ -57,17 +49,10 @@ on your needs and the methods you prefer. | |
|
||
=== Install over the network using RubyGems | ||
|
||
You can install the current release of the xmpp4r library from a stable | ||
release gem on RubyForge using RubyGems: | ||
You can install the current release of the xmpp4r library via rubygems: | ||
|
||
sudo gem install xmpp4r | ||
|
||
=== Install over the network using a Debian package | ||
|
||
You can install the current release of the xmpp4r library from a stable release copy | ||
on your .deb friendly linux system (e.g. Debian or Ubuntu) using apt: | ||
|
||
sudo apt-get install libxmpp4r-ruby | ||
|
||
=== Install from local source code (Developers Only) | ||
|
||
|
@@ -77,15 +62,11 @@ need to get a local copy. | |
|
||
Clone the Git repository (recommended): | ||
|
||
git clone git://github.com/ln/xmpp4r.git | ||
|
||
OR download a stable release tarball from: | ||
|
||
http://download.gna.org/xmpp4r/xmpp4r-0.3.2.tgz | ||
git clone git://github.com/xmpp4r/xmpp4r.git | ||
|
||
OR download a snapshot of the latest source in .tar.gz format from: | ||
|
||
http://github.com/ln/xmpp4r/tarball/master | ||
http://github.com/xmpp4r/xmpp4r/tarball/master | ||
|
||
==== Install : Using Rake | ||
|
||
|
@@ -105,9 +86,19 @@ require RubyGems to be installed. | |
./setup.rb | ||
|
||
|
||
== Contributing | ||
|
||
1. Fork it | ||
2. Create your feature branch (`git checkout -b my-new-feature`) | ||
3. Commit your changes (`git commit -am 'Add some feature'`) | ||
4. Push to the branch (`git push origin my-new-feature`) | ||
5. Create new Pull Request | ||
|
||
== License | ||
|
||
XMPP4R is released under the Ruby license (see the LICENSE file), which is | ||
compatible with the GNU GPL (see the COPYING file) via an explicit | ||
dual-licensing clause. | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,12 +10,12 @@ require "xmpp4r" | |
# OPTIONS | ||
############################################################################## | ||
|
||
PKG_NAME = 'mad-p-xmpp4r' | ||
PKG_NAME = 'xmpp4r' | ||
PKG_VERSION = Jabber::XMPP4R_VERSION | ||
AUTHORS = ['Lucas Nussbaum', 'Stephan Maka', 'Glenn Rempe', 'Kaoru Maeda'] | ||
EMAIL = "[email protected]" | ||
HOMEPAGE = "https://github.com/mad-p/xmpp4r" | ||
SUMMARY = "This is a fork from XMPP4R (https://github.com/ln/xmpp4r), fixing BOSH" | ||
AUTHORS = ['Lucas Nussbaum', 'Stephan Maka', 'Glenn Rempe', 'Kaoru Maeda', 'Harisankar P S'] | ||
EMAIL = "[email protected]" | ||
HOMEPAGE = "https://xmpp4r.github.io" | ||
SUMMARY = "XMPP/Jabber library for ruby" | ||
|
||
# These are the common rdoc options that are shared between generation of | ||
# rdoc files using BOTH 'rake rdoc' and the installation by users of a | ||
|
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.