custom_boolean 0.1.3 → 0.1.4

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.
data/CHANGELOG CHANGED
@@ -1,3 +1,5 @@
1
+ 28/9/10 version 0.1.4
2
+ * improved README
1
3
  28/9/10 version 0.1.2
2
4
  * added YARD documentation
3
5
  * added more examples and tests
@@ -122,6 +122,7 @@ Customizable truthiness
122
122
  else {
123
123
  puts 'reached else'
124
124
  }
125
+ # => 'reached else
125
126
 
126
127
  if!(:horse) {
127
128
  puts 'evaluates to true'
@@ -129,7 +130,7 @@ Customizable truthiness
129
130
  else {
130
131
  puts 'reached else'
131
132
  }
132
-
133
+ #=> 'evaluates to true'
133
134
 
134
135
  Boolean operators
135
136
  -----------------
@@ -1,3 +1,3 @@
1
1
  class CustomBoolean
2
- VERSION = "0.1.3"
2
+ VERSION = "0.1.4"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: custom_boolean
3
3
  version: !ruby/object:Gem::Version
4
- hash: 29
4
+ hash: 19
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 3
10
- version: 0.1.3
9
+ - 4
10
+ version: 0.1.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - John Mair (banisterfiend)