rad_matchers 0.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.
data/.document ADDED
@@ -0,0 +1,2 @@
1
+ README.markdown
2
+ Licence.txt
data/.gitignore ADDED
@@ -0,0 +1 @@
1
+ .DS_Store
data/Licence.txt ADDED
@@ -0,0 +1,22 @@
1
+ (The MIT License)
2
+
3
+ Copyright (c) 2011 Eric Carty-Fickes
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
20
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.markdown ADDED
@@ -0,0 +1,7 @@
1
+ # RadMatchers
2
+
3
+ ## Installation
4
+ gem install rad_matchers
5
+
6
+ ## Active Record Matcher Example
7
+ it { should validate_associated(:foo) }
@@ -0,0 +1 @@
1
+ require 'rad_matchers/version'
@@ -0,0 +1,5 @@
1
+ module RadMatchers
2
+ module Version
3
+ STRING = "0.1"
4
+ end
5
+ end
@@ -0,0 +1,22 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ $LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
4
+ require 'rad_matchers/version'
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = "rad_matchers"
8
+ s.version = RadMatchers::Version::STRING
9
+ s.platform = Gem::Platform::RUBY
10
+ s.authors = ["Eric Carty-Fickes"]
11
+ s.email = "ericcf@northwestern.edu"
12
+ s.summary = "rad_matchers-#{RadMatchers::Version::STRING}"
13
+ s.description = "additional matchers for rspec-rails"
14
+
15
+ s.rubygems_version = "1.5.2"
16
+ s.rubyforge_project = "rad_matchers"
17
+
18
+ s.files = `git ls-files`.split("\n")
19
+ s.extra_rdoc_files = [ "README.markdown" ]
20
+ s.rdoc_options = ["--charset=UTF-8"]
21
+ s.require_path = "lib"
22
+ end
metadata ADDED
@@ -0,0 +1,62 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rad_matchers
3
+ version: !ruby/object:Gem::Version
4
+ prerelease:
5
+ version: "0.1"
6
+ platform: ruby
7
+ authors:
8
+ - Eric Carty-Fickes
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2011-04-01 00:00:00 -05:00
14
+ default_executable:
15
+ dependencies: []
16
+
17
+ description: additional matchers for rspec-rails
18
+ email: ericcf@northwestern.edu
19
+ executables: []
20
+
21
+ extensions: []
22
+
23
+ extra_rdoc_files:
24
+ - README.markdown
25
+ files:
26
+ - .document
27
+ - .gitignore
28
+ - Licence.txt
29
+ - README.markdown
30
+ - lib/rad_matchers.rb
31
+ - lib/rad_matchers/version.rb
32
+ - rad_matchers.gemspec
33
+ has_rdoc: true
34
+ homepage:
35
+ licenses: []
36
+
37
+ post_install_message:
38
+ rdoc_options:
39
+ - --charset=UTF-8
40
+ require_paths:
41
+ - lib
42
+ required_ruby_version: !ruby/object:Gem::Requirement
43
+ none: false
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: "0"
48
+ required_rubygems_version: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: "0"
54
+ requirements: []
55
+
56
+ rubyforge_project: rad_matchers
57
+ rubygems_version: 1.6.2
58
+ signing_key:
59
+ specification_version: 3
60
+ summary: rad_matchers-0.1
61
+ test_files: []
62
+