Sha256: dca6a2b0cc588d141ec6b43e3ffe456afda72c969776d0703519fe8cf9bfc195

Contents?: true

Size: 1.87 KB

Versions: 22

Compression:

Stored size: 1.87 KB

Contents

# NOTE: This is a work in progress. As of July 24, it applies only to dm-core.

# Contributing to Edge DataMapper

We have now implemented Hoe throughout the DataMapper suite, so there will be a 
handful of new procedures for contributing to our git repositories. I'll give 
you a run through of how to set up your machine, and then provide a few 
commands that should be run before committing or pushing changes.

## Installing and configuring Hoe

The first step is to install hoe. You'll need at least version 1.7.0.

    (sudo) gem install hoe --include-dependencies
    
Now you'll need to configure hoe. You'll need to run this from inside of 
dm-core, or one of the other DataMapper projects.

    rake config_hoe
    
The only thing you should need to change is the exclude regular expression, 
which needs to look like this:

    exclude: !ruby/regexp /tmp$|CVS|\.svn|\.git|.+\.gemspec/
    
Now you have the correct setup for contributing.

## Before committing changes

Before you commit changes, you must verify that `Manifest.txt` (the file which 
contains the names of every file to be included in a gem release) and 
`[project-name].gemspec` are up to date. We have create a rake task to make 
this easy:

    rake gemspec
    
This will check `Manifest.txt` (using Hoe's `rake check_manifest`) to ensure 
there are no differences between the files in the project, and those listed in 
the manifest. If there is a difference, it will display a warning and a list of 
the differences in `diff` format.

If the changes in the diff are correct, then you can run the following command 
to update the manifest.

    rake check_manifest | patch
    
If there are files you do not want added to the manifest, then you should 
remove the files from the project, and then run `rake gemspec` again.

If `rake gemspec` says it was successful, then you can proceed with committing 
and pushing your changes.

Version data entries

22 entries across 22 versions & 5 rubygems

Version Path
datamapper-dm-core-0.10.0 CONTRIBUTING
datamapper-dm-core-0.10.1 CONTRIBUTING
datamapper-dm-core-0.9.11 CONTRIBUTING
joevandyk-dm-core-0.9.6 CONTRIBUTING
rpbertp13-dm-core-0.9.11.1 CONTRIBUTING
rpbertp13-dm-core-0.9.11.2 CONTRIBUTING
sam-dm-core-0.9.10 CONTRIBUTING
sam-dm-core-0.9.11 CONTRIBUTING
sam-dm-core-0.9.6 CONTRIBUTING
sam-dm-core-0.9.7 CONTRIBUTING
sam-dm-core-0.9.8 CONTRIBUTING
sam-dm-core-0.9.9 CONTRIBUTING
dm-core-0.10.1 CONTRIBUTING
dm-core-0.10.0 CONTRIBUTING
dm-core-0.9.11 CONTRIBUTING
dm-core-0.9.10 CONTRIBUTING
dm-core-0.9.4 CONTRIBUTING
dm-core-0.9.7 CONTRIBUTING
dm-core-0.9.6 CONTRIBUTING
dm-core-0.9.5 CONTRIBUTING