ruby_interface 0.3.0 → 0.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f41f6e65467a433d39952f9717be64151a61308e
4
- data.tar.gz: 5e8512ab821859645be604fed1f62e7752d8e492
3
+ metadata.gz: 9b0ac349110fc460c3d6f50ad6e910143119dcf5
4
+ data.tar.gz: ed173742e576328b586b8c6670f285cd58e3d922
5
5
  SHA512:
6
- metadata.gz: d6ac29d101b8044e60b3ed0b90198a364d7b4de02629e7747eb0ec225ac01d3f8cc00ba8c9d0436e1dd89ca424b084d95e4f28e3f4d73f02f0a9fc8f20ec377c
7
- data.tar.gz: 445d05ccd6176873ef5a14e7cb6271800d1844e79db1d85da22d10671bf267ad65002ba61191585fabd66c639070235919e39cb964864e9f72221d4feea0227d
6
+ metadata.gz: a160e0dd3c60f52ae5f3a4183027ea9be3a5cff3c21d3cb9d10ca7a199644d93f26b4fe89b6e0b3abbd0b3b271ea49c44503027211f7acd9511d34d81274a57e
7
+ data.tar.gz: b0eec51024d5f52c84a992e27cc892b5facd66428dc2e2cf51fa7b7c3595bfefe0550d0da572b2c4e0f76cb9e1c2f91ba986993018b9d47b84265627cd871bcc
@@ -1,3 +1,6 @@
1
+ # 0.3.1
2
+ - Allow the gem to function without `awesome_print`.
3
+
1
4
  # 0.3.0
2
5
  - Since https://bugs.ruby-lang.org/issues/12696 was resolved with a doc change:
3
6
  - Enabled checks whenever anonymous classes are defined with a block by
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ruby_interface (0.3.0)
4
+ ruby_interface (0.3.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -1,9 +1,6 @@
1
1
  # RubyInterface [![Build Status](https://travis-ci.org/kklimuk/ruby_interface.svg?branch=master)](https://travis-ci.org/kklimuk/ruby_interface)
2
2
 
3
- When a class is interpreted and does not have the required methods, it throws an error.
4
-
5
- Since classes in ruby are never closed, the check for required methods will run
6
- *only* on the *first* definition of the class body.
3
+ Allows you to create abstract classes and interfaces in Ruby.
7
4
 
8
5
  ## Installation
9
6
 
@@ -1,6 +1,5 @@
1
1
  require 'ruby_interface/version'
2
2
  require 'class'
3
- require 'awesome_print'
4
3
 
5
4
  module RubyInterface
6
5
  def self.included(klass)
@@ -1,3 +1,3 @@
1
1
  module RubyInterface
2
- VERSION = '0.3.0'
2
+ VERSION = '0.3.1'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_interface
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kirill Klimuk
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-08-24 00:00:00.000000000 Z
11
+ date: 2017-02-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler