mutations 0.5.0

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.
metadata ADDED
@@ -0,0 +1,108 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mutations
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.5.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Jonathan Novak
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-10-25 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: activesupport
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: '0'
30
+ - !ruby/object:Gem::Dependency
31
+ name: minitest
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ~>
36
+ - !ruby/object:Gem::Version
37
+ version: '4'
38
+ type: :development
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ version: '4'
46
+ description: Compose your business logic into commands that sanitize and validate
47
+ input.
48
+ email: jnovak@gmail.com
49
+ executables: []
50
+ extensions: []
51
+ extra_rdoc_files: []
52
+ files:
53
+ - .gitignore
54
+ - Gemfile
55
+ - Gemfile.lock
56
+ - README.md
57
+ - Rakefile
58
+ - lib/mutations.rb
59
+ - lib/mutations/array_filter.rb
60
+ - lib/mutations/boolean_filter.rb
61
+ - lib/mutations/command.rb
62
+ - lib/mutations/errors.rb
63
+ - lib/mutations/exception.rb
64
+ - lib/mutations/hash_filter.rb
65
+ - lib/mutations/input_filter.rb
66
+ - lib/mutations/integer_filter.rb
67
+ - lib/mutations/model_filter.rb
68
+ - lib/mutations/outcome.rb
69
+ - lib/mutations/string_filter.rb
70
+ - lib/mutations/version.rb
71
+ - mutations.gemspec
72
+ - spec/array_filter_spec.rb
73
+ - spec/boolean_filter_spec.rb
74
+ - spec/command_spec.rb
75
+ - spec/default_spec.rb
76
+ - spec/errors_spec.rb
77
+ - spec/inheritance_spec.rb
78
+ - spec/integer_filter_spec.rb
79
+ - spec/model_filter_spec.rb
80
+ - spec/mutations_spec.rb
81
+ - spec/simple_command.rb
82
+ - spec/spec_helper.rb
83
+ - spec/string_filter_spec.rb
84
+ homepage: http://github.com/cypriss/mutations
85
+ licenses: []
86
+ post_install_message:
87
+ rdoc_options: []
88
+ require_paths:
89
+ - lib
90
+ required_ruby_version: !ruby/object:Gem::Requirement
91
+ none: false
92
+ requirements:
93
+ - - ! '>='
94
+ - !ruby/object:Gem::Version
95
+ version: 1.9.2
96
+ required_rubygems_version: !ruby/object:Gem::Requirement
97
+ none: false
98
+ requirements:
99
+ - - ! '>='
100
+ - !ruby/object:Gem::Version
101
+ version: '0'
102
+ requirements: []
103
+ rubyforge_project:
104
+ rubygems_version: 1.8.24
105
+ signing_key:
106
+ specification_version: 3
107
+ summary: Compose your business logic into commands that sanitize and validate input.
108
+ test_files: []