rimless 1.0.1 → 1.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: c8a247d9518f07c23212c98c743fd9012528861c5db9672b5cf0696174417872
4
- data.tar.gz: 14beb7441d3c156c886550889d748f1a7b743815f12b16cca551eca71fdd7751
3
+ metadata.gz: 88de2cd3647d6aa6296bcf59d058c8802bedb560bc2b9544a6de2d74bfbf0117
4
+ data.tar.gz: 979f8ab38bd4d00edd9abcc0b40dc7aacc3728ec934075b532a389839968aab0
5
5
  SHA512:
6
- metadata.gz: 4952c0e0a5b610d98f5aa09e024b4998eaed636ed6e48fddf63d4bf2d6012f272b63661820938b0157c46c9373f4841ef6cb046904fbb82a0068a87047def8c4
7
- data.tar.gz: 757a22a53a12d8cd91dbc3b91cffe29695d57212b98c5c97e218f9ea6d18c103c45eec5d6a9aefa6104d5bbcd405ce4feb7d19898ca01199802d58425d646af1
6
+ metadata.gz: ef036eddfe418328b4f59888270e26a5eaff541053f15069d34f5c735a0fdb7d89cbb2e24f7664bb99ff7257d846d0c29f6f0f76e585ba9267ded2c638ce2ce6
7
+ data.tar.gz: cfa38719dbc22ee1b4b2c17b212f23becd15ac4a358c086994a1fac42e91000430ec6659804c06df9a1349b4abec043968b1771a7ad46a5e774c7c5763f74820
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ### 1.0.2
2
+
3
+ * Only load the statistics rake task when Rails is available and the
4
+ environment is development (instead of not production, this may cause issues
5
+ for +canary+ or +stage+ Rails environments)
6
+
1
7
  ### 1.0.1
2
8
 
3
9
  * Added the missing +Karafka::Testing::RSpec::Helpers+ include to the
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- if defined?(Rails) && !Rails.env.production?
3
+ if defined?(Rails) && Rails.env.development?
4
4
  require 'rspec/core/rake_task'
5
5
 
6
6
  task :stats do
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Rimless
4
4
  # The version of the +rimless+ gem
5
- VERSION = '1.0.1'
5
+ VERSION = '1.0.2'
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rimless
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hermann Mayer