lite-ruby 2.0.1 → 2.0.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c5eeb71919d8176c4b91c74b9fce3624d76d47e4e5e936a0946fcdd20625f15e
4
- data.tar.gz: 5a5ec60495d5d56a3d276896cffb9b625e895188eeac9e5d1ac0ae44b3f5a8cc
3
+ metadata.gz: 22d988f2dbe25b5c04f273b924da8cc9f959e6bbf0c54405abfc7153e6639d13
4
+ data.tar.gz: 2e01d2a910067c3495299e2fa1a93e640f9a9051316389507ba2369d8704ba04
5
5
  SHA512:
6
- metadata.gz: 30c4d350f24953a6c7a57fcd44039ef4f24cdf811afaceebec5ed3888770fb8f60e4debc8eea72a32820e1c8f696c3cbc8055264489af3218092a528919c8fe6
7
- data.tar.gz: f4e7db0239e314de0a12d736a59b598dd9722510700c22260fb61ee0a8a947f35bc1cc3420654419c524a8e8278268140331984ce7ff9990999e88926f5fd268
6
+ metadata.gz: 0657f33f0ec47ccc0bcff90ad6992d12b66e43b31738ee8dbb4220059ea25784b25cb7e4a442ac39fd01e8b1f75c7adb2178ccd0759c852e4f2534f4711de168
7
+ data.tar.gz: 2cfaa631e59ba2643125937b026a872d2bd81f969ec853f2b4ef5fcc7f80512a8a26b53a8586527732ec2f7883a6e1bfc4bf31ae541e7bbff4a641a90719238b
data/CHANGELOG.md CHANGED
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [2.0.2] - 2021-07-22
10
+ ### Changed
11
+ - Changed `all.rb` => `monkey_patches.rb`
12
+
9
13
  ## [2.0.1] - 2021-07-22
10
14
  ### Added
11
15
  - Added `all.rb` for monkey patching everything with one command.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- lite-ruby (2.0.1)
4
+ lite-ruby (2.0.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -45,7 +45,7 @@ They can be disabled by commenting any of them out.
45
45
  ```ruby
46
46
  # frozen_string_literal: true
47
47
 
48
- require 'lite/ruby/all'
48
+ require 'lite/ruby/monkey_patches'
49
49
 
50
50
  # - or -
51
51
 
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'lite/ruby/all'
3
+ require 'lite/ruby/monkey_patches'
4
4
 
5
5
  # - or -
6
6
 
File without changes
@@ -3,7 +3,7 @@
3
3
  module Lite
4
4
  module Ruby
5
5
 
6
- VERSION = '2.0.1'
6
+ VERSION = '2.0.2'
7
7
 
8
8
  end
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lite-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.1
4
+ version: 2.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juan Gomez
@@ -178,7 +178,6 @@ files:
178
178
  - lib/generators/lite/ruby/templates/install.rb
179
179
  - lib/lite/.DS_Store
180
180
  - lib/lite/ruby.rb
181
- - lib/lite/ruby/all.rb
182
181
  - lib/lite/ruby/array.rb
183
182
  - lib/lite/ruby/boolean.rb
184
183
  - lib/lite/ruby/date.rb
@@ -193,6 +192,7 @@ files:
193
192
  - lib/lite/ruby/helpers/date_time_helper.rb
194
193
  - lib/lite/ruby/integer.rb
195
194
  - lib/lite/ruby/kernel.rb
195
+ - lib/lite/ruby/monkey_patches.rb
196
196
  - lib/lite/ruby/numeric.rb
197
197
  - lib/lite/ruby/object.rb
198
198
  - lib/lite/ruby/open_struct.rb