casual_support 3.0.0 → 3.0.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: 312ae68b392788d7e86e0ca1c60cac0342f51b29
4
- data.tar.gz: 0b734117b2ff24d89fd7a26d53256798ab946dba
2
+ SHA256:
3
+ metadata.gz: 1b2a8ad39073183db3465672af4c1fa23f91ca50fa5989d511bbbde8ca154a0a
4
+ data.tar.gz: d6609b3afa3aa68098a93bfa2e27a13f72758cf02fa5783cd148878e054ab8ec
5
5
  SHA512:
6
- metadata.gz: 4e993b4d89958ae079329c3311ce4505e04ee58ef3986eb44c6f347193903efd9f04e060116c161da29871625d0b131c329dcd6c0bc0b6388728d0ff0f1709ba
7
- data.tar.gz: e175c89da241db40ef6b88a376b23dcd2ceeb5a6847f40dc88a1de70b5abe39808a02155fb9b1266101e8c6815f9c7b1a228d5d268e277ab06beac3a7d55bb60
6
+ metadata.gz: 3dcbd960225ab5a49f1cd771b4e723ca3b8bd48c1a0a462cf2f39aeecb4b16d09241e6658559ac3097c57cc19e9b775b3f97c1ac3676c104575953c550c38006
7
+ data.tar.gz: 2e97f9669ea2f060ecd3458a8358adb0caf5ee1631bb83b6fd5f0c94533b688c0e79b0b6789b9cb59bfd0ad6d65bd6305f49a8801852f3753e16d9a6a9701ae8
@@ -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
@@ -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', '< 5.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"
@@ -1,3 +1,3 @@
1
1
  module CasualSupport
2
- VERSION = "3.0.0"
2
+ VERSION = "3.0.1"
3
3
  end
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.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: 2017-09-05 00:00:00.000000000 Z
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: '5.1'
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: '5.1'
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.13
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