rice_cooker 0.1.5 → 0.1.6

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
2
  SHA1:
3
- metadata.gz: 86788e8b91ebd3bea5b48d785c37ec1a662c937b
4
- data.tar.gz: 308845159764a58120349d931e2f6b68c0c95d6c
3
+ metadata.gz: 38aca7c65d34c4bd7e05c32ea0d9622891da212a
4
+ data.tar.gz: 1a3c2e7e99a5c771cc40a572455c3c42ec0286f9
5
5
  SHA512:
6
- metadata.gz: 67f05e217aaf26d08dfe2579ca6d2e02bacdd4bf3131351001116d3cde8923b11cb75d2e5eb0c864de92736b8a2391c4ff58475446c5140f6ac940a388b0c846
7
- data.tar.gz: 1980ebb4c7e1c038676a387f6587f90a58e4ad39a121a9f764d77537ee2aa596437ce112cd8ff3dfadb9153794f6fe66ad256dcf2c442c2b66afb71c3f4aa619
6
+ metadata.gz: 7d3eea6c092876f93a52479dd4eddda5bc6cc11b3b810e32dc46fa3e7cd10bcfa6930b2cef6c3f02eec7659bb147b866dd7b9c38938ef3836a2128f240d0c4d3
7
+ data.tar.gz: 7aceacae87cb9e124c6c1d96dc51a24705e874fb097de576776a9affab9308896af0a63d0929c4cbd9d507dcef58c416871eafd3c4e5afb2bcddc51e9c6ac969
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rice_cooker (0.1.5)
4
+ rice_cooker (0.1.6)
5
5
  actionpack (>= 4.2.0, < 5.1)
6
6
  has_scope (~> 0.7.0, >= 0.6.0)
7
7
  rails (>= 4.2.0, < 5.1)
@@ -97,7 +97,7 @@ module RiceCooker
97
97
  # description: La description dans la doc
98
98
  #
99
99
  def register_filter(name, proc, all = nil, description = nil)
100
- raise "A '#{name}' filter already exists for class #{self.class}" unless filter_exists?(name)
100
+ # raise "A '#{name}' filter already exists for class #{self.class}" unless filter_exists?(name)
101
101
  custom_filters[name] = {
102
102
  proc: proc,
103
103
  all: all || [],
@@ -114,7 +114,7 @@ module RiceCooker
114
114
  # description: La description dans la doc
115
115
  #
116
116
  def register_bool_filter(name, field, description = nil)
117
- raise "A '#{name}' filter already exists for class #{self.class}" unless filter_exists?(name)
117
+ # raise "A '#{name}' filter already exists for class #{self.class}" unless filter_exists?(name)
118
118
  custom_filters[name] = {
119
119
  proc: FilterEngine.get_named_lambda(field),
120
120
  all: %w(true false),
@@ -1,3 +1,3 @@
1
1
  module RiceCooker
2
- VERSION = '0.1.5'.freeze
2
+ VERSION = '0.1.6'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rice_cooker
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andre Aubin