cinebase 3.0.0 → 3.0.1

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: 1e15a6b86181649097a37463d21069b24aad261d
4
- data.tar.gz: c6a7188cb0f92db9be02d5d399606ddcf36d82ab
3
+ metadata.gz: a6b07917480fbb7f1c27c7fde65423aa751de8fa
4
+ data.tar.gz: 10b6a66e678721db63e783cc73523d677db561a3
5
5
  SHA512:
6
- metadata.gz: 616c12682d08c399e26442e8b3b4777712f0e8f7bd61557a2482ebc35c03855f9b8ab689be91f5022b2b9244840fbb44c36cbfe189f7a2320d708cf5c9689738
7
- data.tar.gz: 558793b508d866c0beadd26f3024315625979346e16b1104359f12f80a2fecc98a8f1b0c3d56489d836c0414424b97626813ef7f05f7292400edd1ddef0dc949
6
+ metadata.gz: 1e6d70f3f1f2ddce9977e317b271b9d8e504f6c897212b8e7f296670ce6564622f34ee5c523668e7b171034934f441a9a23f88a713464ecc9461d5ee62fe7db2
7
+ data.tar.gz: 997bcfaa0bd8432cb3d7a74cb9722b9356249550beae526aa412c8976c9d30e8df63041c2f89e081dc54e9aee78bfab31c2cb4088e6e9c121abc636d300c6d21
@@ -1,6 +1,5 @@
1
1
  before_install: gem install bundler --pre
2
2
  language: ruby
3
3
  rvm:
4
- - 2.1.8
5
4
  - 2.2.4
6
5
  - 2.3.0
@@ -2,6 +2,19 @@
2
2
  All notable changes to this project will be documented in this file.
3
3
  This project adheres to [Semantic Versioning](http://semver.org/).
4
4
 
5
+ ## [3.0.1]
6
+ ### Fixed
7
+ - `Cinema#address` is now a method call, alias_method was always pointing at the
8
+ superclass
9
+
10
+ ## [3.0.0]
11
+ ### Changed
12
+ - screening_at for a Performance is always in UTC
13
+
14
+ ## [2.0.0]
15
+ ### Changed
16
+ - Screenings are now Performances
17
+
5
18
  ## [1.1.0]
6
19
  ### Changed
7
20
  - It is expected that the `Cinema#adr` method is redefined on the subclass and
@@ -21,7 +21,10 @@ module Cinebase
21
21
  country_name: nil
22
22
  }
23
23
  end
24
- alias_method :address, :adr
24
+
25
+ def address
26
+ adr
27
+ end
25
28
 
26
29
  def country_name
27
30
  adr[:country_name].to_s
@@ -1,4 +1,4 @@
1
1
  # Cinebase version
2
2
  module Cinebase
3
- VERSION = '3.0.0'
3
+ VERSION = '3.0.1'
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cinebase
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andy Croll
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-02-03 00:00:00.000000000 Z
11
+ date: 2016-02-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler