pour 0.0.1.0 → 0.0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +6 -4
  3. data/README.md +8 -8
  4. data/lib/pour/gem.rb +58 -58
  5. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5ef5ad8bbb4b854fa418d20e93e7ecbcdab07776
4
- data.tar.gz: 2b8ca3aa0a4d9037afdb4858e5aa57b3d7332c3d
3
+ metadata.gz: e913502c1480108ff5c4507e962f0b1942cad854
4
+ data.tar.gz: c0a7002bce433cd57b7dc5991d33bd4ad196bc64
5
5
  SHA512:
6
- metadata.gz: fe51850bfc230fb1d9dd0440d61c4abb310bb2a32a8e5ae446167f71d4e9fbd335bb3d8c1e125fe03659553e9adc87471e5c461c5930006aebebb07b069ff667
7
- data.tar.gz: 8a94f44016ea6bb93fbc02d7f7c8b89c120baef6b70718303e8fc0835958300dafec2777c819b64f806472c1fa92e82ec001a8dfdcc32cf662694d753d40ec9f
6
+ metadata.gz: 18c66d5fc0cf2c61c66b5b19369d8c920cfc76814a04e970c40270f01f64a0da18fe837a87dedd1f5b241196f609d051285ce99b59b9b3d657f60d4463b89be6
7
+ data.tar.gz: ed13cc3654fc013b894406abbe1af802c82cb20519b559f841224231ff322a6b7c1ea4bee2bd1de57a3801bbdb22823a117d5a435fcfa71e55c68d0731a8fd28
data/Gemfile.lock CHANGED
@@ -1,16 +1,17 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- pour (0.0.0.0)
4
+ pour (0.0.1.0)
5
5
  typespec
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- aruba (0.10.2)
10
+ aruba (0.11.2)
11
11
  childprocess (~> 0.5.6)
12
12
  contracts (~> 0.9)
13
13
  cucumber (>= 1.3.19)
14
+ event-bus (~> 0.2)
14
15
  ffi (~> 1.9.10)
15
16
  rspec-expectations (>= 2.99)
16
17
  thor (~> 0.19)
@@ -25,9 +26,10 @@ GEM
25
26
  gherkin3 (~> 3.1.0)
26
27
  multi_json (>= 1.7.5, < 2.0)
27
28
  multi_test (>= 0.1.2)
28
- cucumber-core (1.3.0)
29
+ cucumber-core (1.3.1)
29
30
  gherkin3 (~> 3.1.0)
30
31
  diff-lcs (1.2.5)
32
+ event-bus (0.2.2)
31
33
  ffi (1.9.10-x86-mingw32)
32
34
  gherkin3 (3.1.2)
33
35
  multi_json (1.11.2)
@@ -46,7 +48,7 @@ GEM
46
48
  rspec-support (~> 3.4.0)
47
49
  rspec-support (3.4.1)
48
50
  thor (0.19.1)
49
- typespec (0.1.0.6)
51
+ typespec (0.1.0.7)
50
52
 
51
53
  PLATFORMS
52
54
  x86-mingw32
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
- # [Pour](http://mtwilliams.github.io/pour)
2
-
3
- [![Gem Version](https://img.shields.io/gem/v/pour.svg)](https://rubygems.org/gems/pour)
4
- [![Build Status](https://img.shields.io/travis/mtwilliams/pour/master.svg)](https://travis-ci.org/mtwilliams/pour)
5
- [![Code Climate](https://img.shields.io/codeclimate/github/mtwilliams/pour.svg)](https://codeclimate.com/github/mtwilliams/pour)
6
- [![Dependency Status](https://img.shields.io/gemnasium/mtwilliams/pour.svg)](https://gemnasium.com/mtwilliams/pour)
7
-
8
- :construction: Allow time to cure!
1
+ # [Pour](http://mtwilliams.github.io/pour)
2
+
3
+ [![Gem Version](https://img.shields.io/gem/v/pour.svg)](https://rubygems.org/gems/pour)
4
+ [![Build Status](https://img.shields.io/travis/mtwilliams/pour/master.svg)](https://travis-ci.org/mtwilliams/pour)
5
+ [![Code Climate](https://img.shields.io/codeclimate/github/mtwilliams/pour.svg)](https://codeclimate.com/github/mtwilliams/pour)
6
+ [![Dependency Status](https://img.shields.io/gemnasium/mtwilliams/pour.svg)](https://gemnasium.com/mtwilliams/pour)
7
+
8
+ :construction: Allow time to cure!
data/lib/pour/gem.rb CHANGED
@@ -1,58 +1,58 @@
1
- require 'ostruct'
2
-
3
- module Pour
4
- module Gem
5
- # The name of this Gem.
6
- def self.name
7
- "pour"
8
- end
9
-
10
- # The name and email address of the primary author.
11
- def self.author
12
- self.authors.first
13
- end
14
-
15
- # The name and email addresses of all authors.
16
- def self.authors
17
- [["Michael Williams", "m.t.williams@live.com"]].map do |author|
18
- name, email = author
19
- OpenStruct.new(name: name, email: email)
20
- end
21
- end
22
-
23
- # This Gem's homepage URL.
24
- def self.homepage
25
- "http://mtwilliams.github.io/#{self.name}"
26
- end
27
-
28
- # This Gem's URL.
29
- def self.url
30
- "https://rubygems.org/gems/#{self.name}"
31
- end
32
-
33
- # A short summary of this Gem.
34
- def self.summary
35
- "Easily compose type-safe, concrete classes."
36
- end
37
-
38
- # A full description of this Gem.
39
- def self.description
40
- "Pour lets you to easily compose type-safe, concrete classes."
41
- end
42
-
43
- module VERSION #:nodoc:
44
- MAJOR, MINOR, PATCH, PRE = [0, 0, 1, 0]
45
- STRING = [MAJOR, MINOR, PATCH, PRE].compact.join('.')
46
- end
47
-
48
- # The semantic version of the this Gem.
49
- def self.version
50
- Gem::VERSION::STRING
51
- end
52
-
53
- # The license covering this Gem.
54
- def self.license
55
- "Public Domain"
56
- end
57
- end
58
- end
1
+ require 'ostruct'
2
+
3
+ module Pour
4
+ module Gem
5
+ # The name of this Gem.
6
+ def self.name
7
+ "pour"
8
+ end
9
+
10
+ # The name and email address of the primary author.
11
+ def self.author
12
+ self.authors.first
13
+ end
14
+
15
+ # The name and email addresses of all authors.
16
+ def self.authors
17
+ [["Michael Williams", "m.t.williams@live.com"]].map do |author|
18
+ name, email = author
19
+ OpenStruct.new(name: name, email: email)
20
+ end
21
+ end
22
+
23
+ # This Gem's homepage URL.
24
+ def self.homepage
25
+ "http://mtwilliams.github.io/#{self.name}"
26
+ end
27
+
28
+ # This Gem's URL.
29
+ def self.url
30
+ "https://rubygems.org/gems/#{self.name}"
31
+ end
32
+
33
+ # A short summary of this Gem.
34
+ def self.summary
35
+ "Easily compose type-safe, concrete classes."
36
+ end
37
+
38
+ # A full description of this Gem.
39
+ def self.description
40
+ "Pour lets you to easily compose type-safe, concrete classes."
41
+ end
42
+
43
+ module VERSION #:nodoc:
44
+ MAJOR, MINOR, PATCH, PRE = [0, 0, 2, 0]
45
+ STRING = [MAJOR, MINOR, PATCH, PRE].compact.join('.')
46
+ end
47
+
48
+ # The semantic version of the this Gem.
49
+ def self.version
50
+ Gem::VERSION::STRING
51
+ end
52
+
53
+ # The license covering this Gem.
54
+ def self.license
55
+ "Public Domain"
56
+ end
57
+ end
58
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pour
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1.0
4
+ version: 0.0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Williams