maksar-remarkable_activerecord 4.0.0.alpha6
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 +147 -0
- data/LICENSE +20 -0
- data/README +103 -0
- data/lib/remarkable/active_record.rb +14 -0
- data/lib/remarkable/active_record/base.rb +6 -0
- data/lib/remarkable/active_record/matchers/accept_nested_attributes_for_matcher.rb +138 -0
- data/lib/remarkable/active_record/matchers/allow_mass_assignment_of_matcher.rb +74 -0
- data/lib/remarkable/active_record/matchers/association_matcher.rb +283 -0
- data/lib/remarkable/active_record/matchers/have_column_matcher.rb +68 -0
- data/lib/remarkable/active_record/matchers/have_index_matcher.rb +73 -0
- data/lib/remarkable/active_record/matchers/have_readonly_attributes_matcher.rb +30 -0
- data/lib/remarkable/active_record/matchers/have_scope_matcher.rb +101 -0
- data/lib/remarkable/active_record/matchers/validate_associated_matcher.rb +100 -0
- data/lib/remarkable/active_record/matchers/validate_uniqueness_of_matcher.rb +233 -0
- data/locale/en.yml +264 -0
- data/remarkable_activerecord.gemspec +63 -0
- metadata +106 -0
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = "maksar-remarkable_activerecord"
|
|
8
|
+
s.version = "4.0.0.alpha6"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Ho-Sheng Hsiao", "Carlos Brando", "Jos\u{e9} Valim", "Diego Carrion"]
|
|
12
|
+
s.date = "2011-11-13"
|
|
13
|
+
s.description = "Remarkable ActiveRecord: collection of matchers and macros with I18n for ActiveRecord"
|
|
14
|
+
s.email = ["hosh@sparkfly.com", "eduardobrando@gmail.com", "jose.valim@gmail.com", "dc.rec1@gmail.com"]
|
|
15
|
+
s.extra_rdoc_files = [
|
|
16
|
+
"CHANGELOG",
|
|
17
|
+
"LICENSE",
|
|
18
|
+
"README"
|
|
19
|
+
]
|
|
20
|
+
s.files = [
|
|
21
|
+
"CHANGELOG",
|
|
22
|
+
"LICENSE",
|
|
23
|
+
"README",
|
|
24
|
+
"lib/remarkable/active_record.rb",
|
|
25
|
+
"lib/remarkable/active_record/base.rb",
|
|
26
|
+
"lib/remarkable/active_record/matchers/accept_nested_attributes_for_matcher.rb",
|
|
27
|
+
"lib/remarkable/active_record/matchers/allow_mass_assignment_of_matcher.rb",
|
|
28
|
+
"lib/remarkable/active_record/matchers/association_matcher.rb",
|
|
29
|
+
"lib/remarkable/active_record/matchers/have_column_matcher.rb",
|
|
30
|
+
"lib/remarkable/active_record/matchers/have_index_matcher.rb",
|
|
31
|
+
"lib/remarkable/active_record/matchers/have_readonly_attributes_matcher.rb",
|
|
32
|
+
"lib/remarkable/active_record/matchers/have_scope_matcher.rb",
|
|
33
|
+
"lib/remarkable/active_record/matchers/validate_associated_matcher.rb",
|
|
34
|
+
"lib/remarkable/active_record/matchers/validate_uniqueness_of_matcher.rb",
|
|
35
|
+
"locale/en.yml",
|
|
36
|
+
"remarkable_activerecord.gemspec"
|
|
37
|
+
]
|
|
38
|
+
s.homepage = "http://github.com/carlosbrando/remarkable"
|
|
39
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
40
|
+
s.require_paths = ["lib"]
|
|
41
|
+
s.rubyforge_project = "remarkable"
|
|
42
|
+
s.rubygems_version = "1.8.10"
|
|
43
|
+
s.summary = "Remarkable ActiveRecord: collection of matchers and macros with I18n for ActiveRecord"
|
|
44
|
+
|
|
45
|
+
if s.respond_to? :specification_version then
|
|
46
|
+
s.specification_version = 3
|
|
47
|
+
|
|
48
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
49
|
+
s.add_runtime_dependency(%q<rspec>, [">= 2.0.0.alpha11"])
|
|
50
|
+
s.add_runtime_dependency(%q<remarkable>, ["~> 4.0.0.alpha4"])
|
|
51
|
+
s.add_runtime_dependency(%q<remarkable_activemodel>, ["~> 4.0.0.alpha4"])
|
|
52
|
+
else
|
|
53
|
+
s.add_dependency(%q<rspec>, [">= 2.0.0.alpha11"])
|
|
54
|
+
s.add_dependency(%q<remarkable>, ["~> 4.0.0.alpha4"])
|
|
55
|
+
s.add_dependency(%q<remarkable_activemodel>, ["~> 4.0.0.alpha4"])
|
|
56
|
+
end
|
|
57
|
+
else
|
|
58
|
+
s.add_dependency(%q<rspec>, [">= 2.0.0.alpha11"])
|
|
59
|
+
s.add_dependency(%q<remarkable>, ["~> 4.0.0.alpha4"])
|
|
60
|
+
s.add_dependency(%q<remarkable_activemodel>, ["~> 4.0.0.alpha4"])
|
|
61
|
+
end
|
|
62
|
+
end
|
|
63
|
+
|
metadata
ADDED
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: maksar-remarkable_activerecord
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 4.0.0.alpha6
|
|
5
|
+
prerelease: 6
|
|
6
|
+
platform: ruby
|
|
7
|
+
authors:
|
|
8
|
+
- Ho-Sheng Hsiao
|
|
9
|
+
- Carlos Brando
|
|
10
|
+
- José Valim
|
|
11
|
+
- Diego Carrion
|
|
12
|
+
autorequire:
|
|
13
|
+
bindir: bin
|
|
14
|
+
cert_chain: []
|
|
15
|
+
date: 2011-11-13 00:00:00.000000000 Z
|
|
16
|
+
dependencies:
|
|
17
|
+
- !ruby/object:Gem::Dependency
|
|
18
|
+
name: rspec
|
|
19
|
+
requirement: &70182760735300 !ruby/object:Gem::Requirement
|
|
20
|
+
none: false
|
|
21
|
+
requirements:
|
|
22
|
+
- - ! '>='
|
|
23
|
+
- !ruby/object:Gem::Version
|
|
24
|
+
version: 2.0.0.alpha11
|
|
25
|
+
type: :runtime
|
|
26
|
+
prerelease: false
|
|
27
|
+
version_requirements: *70182760735300
|
|
28
|
+
- !ruby/object:Gem::Dependency
|
|
29
|
+
name: remarkable
|
|
30
|
+
requirement: &70182760733500 !ruby/object:Gem::Requirement
|
|
31
|
+
none: false
|
|
32
|
+
requirements:
|
|
33
|
+
- - ~>
|
|
34
|
+
- !ruby/object:Gem::Version
|
|
35
|
+
version: 4.0.0.alpha4
|
|
36
|
+
type: :runtime
|
|
37
|
+
prerelease: false
|
|
38
|
+
version_requirements: *70182760733500
|
|
39
|
+
- !ruby/object:Gem::Dependency
|
|
40
|
+
name: remarkable_activemodel
|
|
41
|
+
requirement: &70182760731640 !ruby/object:Gem::Requirement
|
|
42
|
+
none: false
|
|
43
|
+
requirements:
|
|
44
|
+
- - ~>
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: 4.0.0.alpha4
|
|
47
|
+
type: :runtime
|
|
48
|
+
prerelease: false
|
|
49
|
+
version_requirements: *70182760731640
|
|
50
|
+
description: ! 'Remarkable ActiveRecord: collection of matchers and macros with I18n
|
|
51
|
+
for ActiveRecord'
|
|
52
|
+
email:
|
|
53
|
+
- hosh@sparkfly.com
|
|
54
|
+
- eduardobrando@gmail.com
|
|
55
|
+
- jose.valim@gmail.com
|
|
56
|
+
- dc.rec1@gmail.com
|
|
57
|
+
executables: []
|
|
58
|
+
extensions: []
|
|
59
|
+
extra_rdoc_files:
|
|
60
|
+
- CHANGELOG
|
|
61
|
+
- LICENSE
|
|
62
|
+
- README
|
|
63
|
+
files:
|
|
64
|
+
- CHANGELOG
|
|
65
|
+
- LICENSE
|
|
66
|
+
- README
|
|
67
|
+
- lib/remarkable/active_record.rb
|
|
68
|
+
- lib/remarkable/active_record/base.rb
|
|
69
|
+
- lib/remarkable/active_record/matchers/accept_nested_attributes_for_matcher.rb
|
|
70
|
+
- lib/remarkable/active_record/matchers/allow_mass_assignment_of_matcher.rb
|
|
71
|
+
- lib/remarkable/active_record/matchers/association_matcher.rb
|
|
72
|
+
- lib/remarkable/active_record/matchers/have_column_matcher.rb
|
|
73
|
+
- lib/remarkable/active_record/matchers/have_index_matcher.rb
|
|
74
|
+
- lib/remarkable/active_record/matchers/have_readonly_attributes_matcher.rb
|
|
75
|
+
- lib/remarkable/active_record/matchers/have_scope_matcher.rb
|
|
76
|
+
- lib/remarkable/active_record/matchers/validate_associated_matcher.rb
|
|
77
|
+
- lib/remarkable/active_record/matchers/validate_uniqueness_of_matcher.rb
|
|
78
|
+
- locale/en.yml
|
|
79
|
+
- remarkable_activerecord.gemspec
|
|
80
|
+
homepage: http://github.com/carlosbrando/remarkable
|
|
81
|
+
licenses: []
|
|
82
|
+
post_install_message:
|
|
83
|
+
rdoc_options:
|
|
84
|
+
- --charset=UTF-8
|
|
85
|
+
require_paths:
|
|
86
|
+
- lib
|
|
87
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
88
|
+
none: false
|
|
89
|
+
requirements:
|
|
90
|
+
- - ! '>='
|
|
91
|
+
- !ruby/object:Gem::Version
|
|
92
|
+
version: '0'
|
|
93
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
94
|
+
none: false
|
|
95
|
+
requirements:
|
|
96
|
+
- - ! '>'
|
|
97
|
+
- !ruby/object:Gem::Version
|
|
98
|
+
version: 1.3.1
|
|
99
|
+
requirements: []
|
|
100
|
+
rubyforge_project: remarkable
|
|
101
|
+
rubygems_version: 1.8.10
|
|
102
|
+
signing_key:
|
|
103
|
+
specification_version: 3
|
|
104
|
+
summary: ! 'Remarkable ActiveRecord: collection of matchers and macros with I18n for
|
|
105
|
+
ActiveRecord'
|
|
106
|
+
test_files: []
|