montrose 0.8.1 → 0.8.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b5a8b52963ae6bea219f278406b83d675e619e52
4
- data.tar.gz: f1be3f8c5ba5b6154ff9ada19429774bb130df41
3
+ metadata.gz: 64686c4f9d89dce6369bcee10e33c33a353ed1ce
4
+ data.tar.gz: 5ab0820e474cea7b84b8f5c0e9bfa1ebb10cf738
5
5
  SHA512:
6
- metadata.gz: 52a9b066ba034e9985e6516485fecbaa1a3bd84f7b5aeb71bfda2ece9ffd421a37a69fdc57e7baf4cbf6e4818333cb6452a6f5f6d203863371416f791ce79c33
7
- data.tar.gz: e055001efa95ea285de0bcc40bb7fd868041210bf4faef22103f3af190567f2b41fec3d138bf2da4a27588febc74abd11eb19d53d1240174cb1102094ee404e2
6
+ metadata.gz: 5bec08f7aaabb73027e9627c2cd85813a199ef0a92bc9018305a06650ffb2a2a3a14dcebccc961b3bf0f238fc458860a0e1389a0e15d65fdb09026d9be264d88
7
+ data.tar.gz: c373fa0f7e8ae214950d6252a581b65630594163fb5ab3c7a09a24dd7d09d506f18998ea837b7fc5ee65881bf1fd5c09f61daccf0eb00b1c7788f7400db2c319
@@ -1,4 +1,9 @@
1
- ### 0.8.1 - (2018-05-29)
1
+ ### 0.8.2 - (2018-08-02)
2
+
3
+ * bug fixes
4
+ * Fixes use of :at when time of day earlier than :starts
5
+
6
+ ### 0.8.1 - (2018-07-27)
2
7
 
3
8
  * bug fixes
4
9
  * Fixes interval comparisons for secondly, hourly, minutely by zeroing usec
data/README.md CHANGED
@@ -3,7 +3,6 @@
3
3
  [![Build Status](https://travis-ci.org/rossta/montrose.svg?branch=master)](https://travis-ci.org/rossta/montrose)
4
4
  [![Code Climate](https://codeclimate.com/github/rossta/montrose/badges/gpa.svg)](https://codeclimate.com/github/rossta/montrose)
5
5
  [![Coverage Status](https://coveralls.io/repos/rossta/montrose/badge.svg?branch=master&service=github)](https://coveralls.io/github/rossta/montrose?branch=master)
6
- [![Dependency Status](https://gemnasium.com/rossta/montrose.svg)](https://gemnasium.com/rossta/montrose)
7
6
 
8
7
  Montrose is an easy-to-use library for defining recurring events in Ruby. It uses a simple chaining system for building recurrences, inspired heavily by the design principles of [HTTP.rb](https://github.com/httprb/http) and rule definitions available in [Recurrence](https://github.com/fnando/recurrence).
9
8
 
@@ -6,7 +6,7 @@ module Montrose
6
6
  include Montrose::Rule
7
7
 
8
8
  def self.apply_options(opts)
9
- opts[:starts]
9
+ opts[:starts] && opts.start_time
10
10
  end
11
11
 
12
12
  # Initializes rule
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Montrose
4
- VERSION = "0.8.1"
4
+ VERSION = "0.8.2"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: montrose
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.1
4
+ version: 0.8.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ross Kaffenberger
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-07-27 00:00:00.000000000 Z
11
+ date: 2018-08-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -217,7 +217,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
217
217
  version: '0'
218
218
  requirements: []
219
219
  rubyforge_project:
220
- rubygems_version: 2.6.11
220
+ rubygems_version: 2.6.13
221
221
  signing_key:
222
222
  specification_version: 4
223
223
  summary: Recurring events in Ruby