casual_support 3.0.0 → 3.0.1
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.
- checksums.yaml +5 -5
- data/CHANGELOG.md +35 -0
- data/casual_support.gemspec +1 -1
- data/lib/casual_support/version.rb +1 -1
- metadata +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 1b2a8ad39073183db3465672af4c1fa23f91ca50fa5989d511bbbde8ca154a0a
|
4
|
+
data.tar.gz: d6609b3afa3aa68098a93bfa2e27a13f72758cf02fa5783cd148878e054ab8ec
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3dcbd960225ab5a49f1cd771b4e723ca3b8bd48c1a0a462cf2f39aeecb4b16d09241e6658559ac3097c57cc19e9b775b3f97c1ac3676c104575953c550c38006
|
7
|
+
data.tar.gz: 2e97f9669ea2f060ecd3458a8358adb0caf5ee1631bb83b6fd5f0c94533b688c0e79b0b6789b9cb59bfd0ad6d65bd6305f49a8801852f3753e16d9a6a9701ae8
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
## 3.0.1
|
2
|
+
|
3
|
+
* Loosened Active Support version constraint.
|
4
|
+
|
5
|
+
|
6
|
+
## 3.0.0
|
7
|
+
|
8
|
+
* Added `Numeric#sign`.
|
9
|
+
* Added `Boolean#to_z`.
|
10
|
+
* Added `Hash#displace`.
|
11
|
+
* Added `Struct#assign_attributes`.
|
12
|
+
* Added `Struct.from_h`.
|
13
|
+
* [BREAKING] Removed block param from `Enumerable#duplicates`.
|
14
|
+
* [BREAKING] Removed `Comparable#clamp`. Native in Ruby 2.4.
|
15
|
+
* [BREAKING] Removed `String#lchomp`. Native in Ruby 2.5 as
|
16
|
+
`String#delete_prefix`.
|
17
|
+
|
18
|
+
|
19
|
+
## 2.0.0
|
20
|
+
|
21
|
+
* Added `String#between`.
|
22
|
+
* Added `String#prefix`.
|
23
|
+
* Added `String#suffix`.
|
24
|
+
* Added `String#lchomp`.
|
25
|
+
* Abstracted `Numeric#at_least`, `Numeric#at_most`, and
|
26
|
+
`Numeric#constrain` methods to the `Comparable` module.
|
27
|
+
* [BREAKING] Renamed `Comparable#constrain` to `Comparable#clamp`.
|
28
|
+
* [BREAKING] Renamed `Hash#set!` to `Hash#put!`.
|
29
|
+
* [BREAKING] Changed `String#after` and `String#after_last` to return
|
30
|
+
nil if delimiter is not found.
|
31
|
+
|
32
|
+
|
33
|
+
## 1.0.0
|
34
|
+
|
35
|
+
* Initial release
|
data/casual_support.gemspec
CHANGED
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
|
|
18
18
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
19
19
|
spec.require_paths = ["lib"]
|
20
20
|
|
21
|
-
spec.add_runtime_dependency 'activesupport', '>= 3.1', '<
|
21
|
+
spec.add_runtime_dependency 'activesupport', '>= 3.1', '< 6.0'
|
22
22
|
|
23
23
|
spec.add_development_dependency "bundler", "~> 1.12"
|
24
24
|
spec.add_development_dependency "rake", "~> 11.1"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: casual_support
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jonathan Hefner
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-07-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3.1'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: '
|
22
|
+
version: '6.0'
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3.1'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: '
|
32
|
+
version: '6.0'
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: bundler
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -109,6 +109,7 @@ extra_rdoc_files: []
|
|
109
109
|
files:
|
110
110
|
- ".gitignore"
|
111
111
|
- ".travis.yml"
|
112
|
+
- CHANGELOG.md
|
112
113
|
- Gemfile
|
113
114
|
- LICENSE.txt
|
114
115
|
- README.md
|
@@ -191,7 +192,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
191
192
|
version: '0'
|
192
193
|
requirements: []
|
193
194
|
rubyforge_project:
|
194
|
-
rubygems_version: 2.6
|
195
|
+
rubygems_version: 2.7.6
|
195
196
|
signing_key:
|
196
197
|
specification_version: 4
|
197
198
|
summary: Utility extensions to core objects, a la Active Support
|