Sha256: 36921ff672b601be036c72b0a112deb8d17fc896cc5464e1b14d94a54b968b79

Contents?: true

Size: 894 Bytes

Versions: 1

Compression:

Stored size: 894 Bytes

Contents

# CreativeRailsUtilities

Defines extensions, useful and convenient methods on Ruby and Rails base classes.  

## Installation

`gem 'creative_rails_utilities'` and `bundle`

## Usage

Feel free to read the source under `/lib/creative_rails_utilities/`  

##### Numeric

```ruby
# integer into letters
1.to_s26 #=> "a"
28.to_s26 #=> "ab"
```

##### String

```ruby
# letters into integer
"z".to_i26 #=> 26
"apple".to_i26 #=> 749325
```

## Development

1. Write specs
2. Make specs fail
3. Write feature
4. Make tests pass
5. Update README.md with examples
6. Update CHANGELOG.md with changes/fixes/additions.
7. Bump version and `rake release`

## Contributing

Bug reports and pull requests are welcome on [GitHub](https://github.com/CreativePublisher/rails_utilities)

## License

The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
creative_rails_utilities-0.1.0 README.md