spicycode_rspec_extensions 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.txt +3 -0
- data/History.txt +0 -0
- data/Manifest.txt +12 -0
- data/README.txt +3 -0
- data/Rakefile +54 -0
- data/lib/spicycode/rspec/expectation_matchers/active_record.rb +15 -0
- data/lib/spicycode/rspec/expectation_matchers/active_record/validates_confirmation_of.rb +40 -0
- data/lib/spicycode/rspec/expectation_matchers/active_record/validates_presence_of.rb +66 -0
- data/lib/spicycode/version.rb +9 -0
- data/lib/spicycode_rspec_extensions.rb +4 -0
- data/setup.rb +1585 -0
- metadata +64 -0
metadata
ADDED
@@ -0,0 +1,64 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.9.2
|
3
|
+
specification_version: 1
|
4
|
+
name: spicycode_rspec_extensions
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 0.0.1
|
7
|
+
date: 2007-03-19 00:00:00 -04:00
|
8
|
+
summary: RSpec Extensions for Expectation Matchers
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
email: chad@spicycode.com
|
12
|
+
homepage: http://spicycode_depot.rubyforge.org
|
13
|
+
rubyforge_project: spicycode_depot
|
14
|
+
description: RSpec Extensions for Expectation Matchers
|
15
|
+
autorequire:
|
16
|
+
default_executable:
|
17
|
+
bindir: bin
|
18
|
+
has_rdoc: true
|
19
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.0.0
|
24
|
+
version:
|
25
|
+
platform: ruby
|
26
|
+
signing_key:
|
27
|
+
cert_chain:
|
28
|
+
post_install_message:
|
29
|
+
authors:
|
30
|
+
- Chad Humphries
|
31
|
+
files:
|
32
|
+
- CHANGELOG.txt
|
33
|
+
- History.txt
|
34
|
+
- Manifest.txt
|
35
|
+
- README.txt
|
36
|
+
- Rakefile
|
37
|
+
- lib/spicycode_rspec_extensions.rb
|
38
|
+
- lib/spicycode/version.rb
|
39
|
+
- lib/spicycode/rspec/expectation_matchers/active_record.rb
|
40
|
+
- lib/spicycode/rspec/expectation_matchers/active_record/validates_confirmation_of.rb
|
41
|
+
- lib/spicycode/rspec/expectation_matchers/active_record/validates_presence_of.rb
|
42
|
+
- setup.rb
|
43
|
+
test_files: []
|
44
|
+
|
45
|
+
rdoc_options: []
|
46
|
+
|
47
|
+
extra_rdoc_files: []
|
48
|
+
|
49
|
+
executables: []
|
50
|
+
|
51
|
+
extensions: []
|
52
|
+
|
53
|
+
requirements: []
|
54
|
+
|
55
|
+
dependencies:
|
56
|
+
- !ruby/object:Gem::Dependency
|
57
|
+
name: rspec
|
58
|
+
version_requirement:
|
59
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
60
|
+
requirements:
|
61
|
+
- - ">="
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: 0.8.2
|
64
|
+
version:
|