activerecord-suppress_range_error 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 4b5e24a1d0fa752d1486fed0d228738df4e6cb70
4
- data.tar.gz: 7231f77258af4913bcbb90da6f2f60d9b0ee0117
2
+ SHA256:
3
+ metadata.gz: 1a0335917f777141d381d1f4389b9148585508b459d48366605a4f28bebaad7a
4
+ data.tar.gz: b8d75d7b933f0a49bb18d439a7c780e28e1dfb6c0ceb5927af99bec5ed19bf78
5
5
  SHA512:
6
- metadata.gz: e6f8f5331d6e4571379115ecda2db0aed713e666fadf8477029fba89d376e29dd0e917013c70d3a395be38c7ea1fcae51a34eebed4c4733e8b3401e76a273f5e
7
- data.tar.gz: 7df41945748e200ef4e917f4f9f557b5275a77e5d4936ec663b819fc6b67c3c6e413dcf1935a402dd7097b6f7a115268dbb2182e242d9afb8f89748d056f06a3
6
+ metadata.gz: c063e07d3992842492f1aa140410bc11bc9664edcbce67431ba9fd042a7cf383d481b496c8bd14ef9f2cc1f6ea9db21d94a5db8e7b9487ca668f746409ca5d9b
7
+ data.tar.gz: 03f56dd5e284b4b07afb96287644361bc3e6534bdbc845fecb823c9607e76967cfa045b3acb64b81117d90fb1e5d850decf226d2cac71aa579410185b029eb56
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2017-present Ryuta Kamizono
2
+
3
+ MIT License
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
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -12,6 +12,7 @@ Gem::Specification.new do |spec|
12
12
  spec.summary = %q{Suppressing RangeError during type casting}
13
13
  spec.description = %q{Suppressing RangeError during type casting}
14
14
  spec.homepage = "https://github.com/kamipo/activerecord-suppress_range_error"
15
+ spec.license = "MIT"
15
16
 
16
17
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
17
18
  spec.bindir = "exe"
@@ -1,5 +1,5 @@
1
1
  module ActiveRecord
2
2
  module SuppressRangeError
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activerecord-suppress_range_error
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryuta Kamizono
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-01-04 00:00:00.000000000 Z
11
+ date: 2019-07-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -90,6 +90,7 @@ files:
90
90
  - ".gitignore"
91
91
  - ".rspec"
92
92
  - Gemfile
93
+ - LICENSE
93
94
  - README.md
94
95
  - Rakefile
95
96
  - activerecord-suppress_range_error.gemspec
@@ -99,7 +100,8 @@ files:
99
100
  - lib/active_record/suppress_range_error/version.rb
100
101
  - lib/activerecord-suppress_range_error.rb
101
102
  homepage: https://github.com/kamipo/activerecord-suppress_range_error
102
- licenses: []
103
+ licenses:
104
+ - MIT
103
105
  metadata: {}
104
106
  post_install_message:
105
107
  rdoc_options: []
@@ -116,8 +118,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
116
118
  - !ruby/object:Gem::Version
117
119
  version: '0'
118
120
  requirements: []
119
- rubyforge_project:
120
- rubygems_version: 2.5.2
121
+ rubygems_version: 3.0.3
121
122
  signing_key:
122
123
  specification_version: 4
123
124
  summary: Suppressing RangeError during type casting