active_record_attributes_stripper 0.1 → 0.2
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: baf5575b04be04cc6bebea78e08e3382d4f70ddf
|
4
|
+
data.tar.gz: 052af74535678f97474461e5635df154ad2e1037
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 805edf3d46237da9d7c92f1eae9baeb518389de1cfec2a8d700d959a037dc3b7e850f8ad7fc953f4f3113cc696fa0508bb2f8b47462399a7241a2b651e146725
|
7
|
+
data.tar.gz: ae62c40f94e0477183b395f18c5801bf7135516d7852f26e757d2bc53abf22f17a840cef522b353d770f695c6b1ebe55429cdf11acaac5f8280f4fbe798c34d9
|
@@ -7,6 +7,7 @@ Gem::Specification.new do |gem|
|
|
7
7
|
gem.description = %q{Active Record attributes stripper}
|
8
8
|
gem.summary = %q{Automatically strip all string attributes in model before validation.}
|
9
9
|
gem.homepage = "https://github.com/dbackowski/active_record_attributes_stripper"
|
10
|
+
gem.license = 'MIT'
|
10
11
|
|
11
12
|
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
12
13
|
gem.files = `git ls-files`.split("\n")
|
metadata
CHANGED
@@ -1,32 +1,22 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: active_record_attributes_stripper
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
prerelease:
|
6
|
-
segments:
|
7
|
-
- 0
|
8
|
-
- 1
|
9
|
-
version: "0.1"
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: '0.2'
|
10
5
|
platform: ruby
|
11
|
-
authors:
|
12
|
-
-
|
6
|
+
authors:
|
7
|
+
- Damian Baćkowski
|
13
8
|
autorequire:
|
14
9
|
bindir: bin
|
15
10
|
cert_chain: []
|
16
|
-
|
17
|
-
date: 2013-01-11 00:00:00 Z
|
11
|
+
date: 2013-10-04 00:00:00.000000000 Z
|
18
12
|
dependencies: []
|
19
|
-
|
20
13
|
description: Active Record attributes stripper
|
21
|
-
email:
|
14
|
+
email:
|
22
15
|
- damianbackowski@gmail.com
|
23
16
|
executables: []
|
24
|
-
|
25
17
|
extensions: []
|
26
|
-
|
27
18
|
extra_rdoc_files: []
|
28
|
-
|
29
|
-
files:
|
19
|
+
files:
|
30
20
|
- .gitignore
|
31
21
|
- Gemfile
|
32
22
|
- LICENSE
|
@@ -36,37 +26,27 @@ files:
|
|
36
26
|
- lib/active_record_attributes_stripper.rb
|
37
27
|
- lib/active_record_attributes_stripper/version.rb
|
38
28
|
homepage: https://github.com/dbackowski/active_record_attributes_stripper
|
39
|
-
licenses:
|
40
|
-
|
29
|
+
licenses:
|
30
|
+
- MIT
|
31
|
+
metadata: {}
|
41
32
|
post_install_message:
|
42
33
|
rdoc_options: []
|
43
|
-
|
44
|
-
require_paths:
|
34
|
+
require_paths:
|
45
35
|
- lib
|
46
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
none: false
|
57
|
-
requirements:
|
58
|
-
- - ">="
|
59
|
-
- !ruby/object:Gem::Version
|
60
|
-
hash: 3
|
61
|
-
segments:
|
62
|
-
- 0
|
63
|
-
version: "0"
|
36
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
42
|
+
requirements:
|
43
|
+
- - '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '0'
|
64
46
|
requirements: []
|
65
|
-
|
66
47
|
rubyforge_project:
|
67
|
-
rubygems_version:
|
48
|
+
rubygems_version: 2.0.3
|
68
49
|
signing_key:
|
69
|
-
specification_version:
|
50
|
+
specification_version: 4
|
70
51
|
summary: Automatically strip all string attributes in model before validation.
|
71
52
|
test_files: []
|
72
|
-
|