Sha256: cf9d360cae423924fedfec16e418c193ed0c159a853ded1c9f3269312b2a1735

Contents?: true

Size: 1.32 KB

Versions: 2

Compression:

Stored size: 1.32 KB

Contents

# Date Supercharger

A nice shortcut for date queries.

`date_supercharger` adds `_after`, `_after_or_at`, `_before` and `_before_or_at` methods to every date/datetime field of Active Record models.

[![Build Status](https://travis-ci.org/simon0191/date_supercharger.svg)](https://travis-ci.org/simon0191/date_supercharger)
[![Code Climate](https://codeclimate.com/github/simon0191/date_supercharger/badges/gpa.svg)](https://codeclimate.com/github/simon0191/date_supercharger)
[![Test Coverage](https://codeclimate.com/github/simon0191/date_supercharger/badges/coverage.svg)](https://codeclimate.com/github/simon0191/date_supercharger/coverage)
## Usage

```ruby
Visit.created_at_after(DateTime.now)
```

instead of

```ruby
Visit.where("created_at > ?",DateTime.now)
```

## Installation

Add this line to your application’s Gemfile:

```ruby
gem 'date_supercharger'
```

And then execute:

```sh
bundle
```

## History

View the [changelog](https://github.com/simon0191/date_supercharger/blob/master/CHANGELOG.md)

## Contributing

Everyone is encouraged to help improve this project. Here are a few ways you can help:

- [Report bugs](https://github.com/simon0191/date_supercharger/issues)
- Fix bugs and [submit pull requests](https://github.com/simon0191/date_supercharger/pulls)
- Write, clarify, or fix documentation
- Suggest or add new features

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
date_supercharger-0.1.0 README.md
date_supercharger-0.0.2 README.md