Skip to content

Commit

Permalink
Fixed to typos and changed date in gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
stefankroes committed Oct 29, 2009
1 parent 48441fb commit 22c43f4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.rdoc
Expand Up @@ -46,7 +46,7 @@ To navigate an Ancestry model, use the following methods on any instance / recor
is_root? Returns true if the record is a root node, false otherwise
ancestor_ids Returns a list of ancestor ids, starting with the root id and ending with the parent id
ancestors Scopes the model on ancestors of the record
path_ids Returns a list the path ids, starting with the root is and ending with the node's own id
path_ids Returns a list the path ids, starting with the root id and ending with the node's own id
path Scopes model on path records of the record
children Scopes the model on children of the record
child_ids Returns a list of child ids
Expand Down Expand Up @@ -212,7 +212,7 @@ The materialised path pattern requires Ancestry to use a 'like' condition in ord

= Version history

The latest and recommended version of ancestry is 1.1.0. The three numbers of each version numbers are respectively the major, minor and patch versions. We started with major version 1 because it looks so much better and ancestry was already quite mature and complete when it was published. The major version is only bumped when backwards compatibility is broken. The minor version is bumped when new features are added. The patch version is bumped when bugs are fixed.
The latest and recommended version of ancestry is 1.1.1. The three numbers of each version numbers are respectively the major, minor and patch versions. We started with major version 1 because it looks so much better and ancestry was already quite mature and complete when it was published. The major version is only bumped when backwards compatibility is broken. The minor version is bumped when new features are added. The patch version is bumped when bugs are fixed.

- Version 1.1.1 (2009-10-28)
- Fixed some parentheses warnings that where reported
Expand Down
2 changes: 1 addition & 1 deletion ancestry.gemspec
Expand Up @@ -6,7 +6,7 @@ Gem::Specification.new do |s|
s.summary = 'Ancestry allows the records of a ActiveRecord model to be organised in a tree structure, using a single, intuitively formatted database column. It exposes all the standard tree structure relations (ancestors, parent, root, children, siblings, descendants) and all of them can be fetched in a single sql query. Additional features are named_scopes, integrity checking, integrity restoration, arrangement of (sub)tree into hashes and different strategies for dealing with orphaned records.'

s.version = '1.1.1'
s.date = '2009-10-22'
s.date = '2009-10-29'

s.author = 'Stefan Kroes'
s.email = 's.a.kroes@gmail.com'
Expand Down

0 comments on commit 22c43f4

Please sign in to comment.