tdb.gemspec: fix license field name
[ruby-tdb.git] / HACKING
blob5c3857808e7be3cc45b6b9a9b90602691d3762d9
1 = Ruby TDB Hacker's Guide
3 === Code Compatibility
5 We target C Ruby 1.9.3+ and (time permitting) Rubinius and their respective C
6 APIs.
8 All of our C code should be compatible with all reasonably modern Unices
9 and should run on compilers supported by the versions of Ruby we target.
11 We will NEVER support non-Free platforms under any circumstances.
13 Our C code follows K&R indentation style (hard tabs, tabs are always 8
14 characters wide) and NOT the indentation style of Matz Ruby.
16 == Contributing
18 Contributions are welcome in the form of patches, pull requests, code
19 review, testing, documentation, user support or any other feedback.  The
20 {Ruby TDB mailing list}[mailto:ruby.tdb@librelist.org] is the central
21 coordination point for all user and developer feedback and bug reports.
23 === Submitting Patches
25 Follow conventions already established in the code and do not exceed 80
26 characters per line.
28 Inline patches (from "git format-patch -M") to the mailing list are
29 preferred because they allow code review and comments in the reply to
30 the patch.
32 We will adhere to mostly the same conventions for patch submissions as
33 git itself.  See the Documentation/SubmittingPatches document
34 distributed with git on on patch submission guidelines to follow.  Just
35 don't email the git mailing list or maintainer with Ruby TDB patches :)
37 === Mailing list rules
39 * Do not {top post}[http://catb.org/jargon/html/T/top-post.html] in replies
40 * Quote only the relevant portions of the message you're replying to
41 * Do not send HTML mail, they will be mercilessly deleted.
43 When referencing mailing list posts, use
44 "http://mid.gmane.org/$MESSAGE_ID" if possible since the Message-ID
45 remains searchable even if Gmane becomes unavailable.
47 == Running Development Versions
49 It is easy to install the contents of your git working directory:
51 Via RubyGems (RubyGems 1.3.5+ recommended for prerelease versions):
53   gmake install-gem
55 Without RubyGems (via setup.rb):
57   gmake install
59 It is not at all recommended to mix a RubyGems installation with an
60 installation done without RubyGems, however.