interrogate 0.0.2a → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -1,7 +1,6 @@
1
1
  # Interrogate [![Build Status](https://secure.travis-ci.org/mhgbrown/interrogate.png)](http://travis-ci.org/mhgbrown/interrogate)
2
2
  Interrogate attempts to bring Scheme-like class predication to Ruby. It provides an alternate syntax using `Module#===`.
3
3
 
4
- >> require "interrogate"
5
4
  >> String?("Hello")
6
5
  >> trues
7
6
  >> Symbol?(:World)
data/interrogate.gemspec CHANGED
@@ -7,7 +7,7 @@ Gem::Specification.new do |s|
7
7
  s.version = Interrogate::VERSION
8
8
  s.authors = ["Morgan Brown"]
9
9
  s.email = ["brown.mhg@gmail.com"]
10
- s.homepage = "https://github.com/discom4rt/interrogate"
10
+ s.homepage = "https://github.com/mhgbrown/interrogate"
11
11
  s.summary = "Scheme-like class predication for Ruby"
12
12
  s.description = "String?(\"Hello\") Interrogate attempts to bring Scheme-like class predication to Ruby. It provides an alternate syntax using Module#==="
13
13
 
@@ -1,3 +1,3 @@
1
1
  module Interrogate
2
- VERSION = "0.0.2a"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: interrogate
3
3
  version: !ruby/object:Gem::Version
4
- hash: 34
5
- prerelease: 5
4
+ hash: 27
5
+ prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
9
  - 2
10
- - a
11
- version: 0.0.2a
10
+ version: 0.0.2
12
11
  platform: ruby
13
12
  authors:
14
13
  - Morgan Brown
@@ -16,7 +15,7 @@ autorequire:
16
15
  bindir: bin
17
16
  cert_chain: []
18
17
 
19
- date: 2012-03-29 00:00:00 Z
18
+ date: 2012-01-17 00:00:00 Z
20
19
  dependencies:
21
20
  - !ruby/object:Gem::Dependency
22
21
  name: rake
@@ -59,7 +58,6 @@ files:
59
58
  - .gitignore
60
59
  - .travis.yml
61
60
  - Gemfile
62
- - MIT-LICENSE
63
61
  - README.md
64
62
  - Rakefile
65
63
  - interrogate.gemspec
@@ -67,7 +65,7 @@ files:
67
65
  - lib/interrogate/version.rb
68
66
  - spec/interrogate/interrogate_spec.rb
69
67
  - spec/spec_helper.rb
70
- homepage: https://github.com/discom4rt/interrogate
68
+ homepage: https://github.com/mhgbrown/interrogate
71
69
  licenses: []
72
70
 
73
71
  post_install_message:
@@ -87,18 +85,16 @@ required_ruby_version: !ruby/object:Gem::Requirement
87
85
  required_rubygems_version: !ruby/object:Gem::Requirement
88
86
  none: false
89
87
  requirements:
90
- - - ">"
88
+ - - ">="
91
89
  - !ruby/object:Gem::Version
92
- hash: 25
90
+ hash: 3
93
91
  segments:
94
- - 1
95
- - 3
96
- - 1
97
- version: 1.3.1
92
+ - 0
93
+ version: "0"
98
94
  requirements: []
99
95
 
100
96
  rubyforge_project: interrogate
101
- rubygems_version: 1.8.21
97
+ rubygems_version: 1.8.11
102
98
  signing_key:
103
99
  specification_version: 3
104
100
  summary: Scheme-like class predication for Ruby
data/MIT-LICENSE DELETED
@@ -1,7 +0,0 @@
1
- Copyright (c) 2012 Morgan Brown
2
-
3
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
-
5
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
-
7
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.