showcase 0.2.3 → 0.2.4

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: cccbdfb7ba5759b986763285e2422936225cf046
4
- data.tar.gz: 9bffcb849bd62807722a63c331ad930b1c0a2cb1
3
+ metadata.gz: bedbd67bc3e6d05ad13f3605a4a2c01f1e384288
4
+ data.tar.gz: 2b6113d2cd3e94191a183b64ef9d185b5276f6c4
5
5
  SHA512:
6
- metadata.gz: fc96a5341cb344161b6108f53f147372f1d2ca8728fb064b1e2cd114f9f52572b9b01564a07d61c053c0570070d81f9966f17896be2b1b6f2cd2d93635246881
7
- data.tar.gz: fbc674738a76c3f4bfc4355813279eee086b24b4b8a61fb646e2fbd47bb75cf37246026964c8e572b6a2c10b113d09e82f05f5a91edaa54a19960dfa0b7a0561
6
+ metadata.gz: 942132f75d1ffaccb55b5f02d33c54e8cdbc2bf8affeb8e9d808aa55fff92fd6861ce2456406a6e3d854a27737f0b9d7965e9238127691d0feabf4c3aeec5f39
7
+ data.tar.gz: 1bec04a1151f63a00bda00d897e3c0b7e2e8135ccc1e7d7f0bc8620d79072029272e557ed202b21312006549d46d951b2141b57ee67f1ede77b2d94bdec5de73
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # Version 0.2.4
2
+
3
+ * Added missing ActiveSupport requires
4
+
1
5
  # Version 0.2.3
2
6
 
3
7
  * Fix missing namespace in HtmlOptions and FirstNonblank helpers
@@ -1,3 +1,5 @@
1
+ require 'active_support/core_ext/object/blank'
2
+
1
3
  module Showcase
2
4
  module Helpers
3
5
  class FirstNonBlank
@@ -1,3 +1,5 @@
1
+ require 'active_support/core_ext/object/blank'
2
+
1
3
  module Showcase
2
4
  module Helpers
3
5
  module ModuleMethodBuilder
@@ -1,6 +1,7 @@
1
1
  require 'showcase/helpers/config_object'
2
2
  require 'showcase/helpers/first_nonblank'
3
3
  require 'active_support/core_ext/object/to_query'
4
+ require 'active_support/core_ext/object/blank'
4
5
 
5
6
  module Showcase
6
7
  module Traits
@@ -1,4 +1,4 @@
1
1
  module Showcase
2
- VERSION = "0.2.3"
2
+ VERSION = "0.2.4"
3
3
  end
4
4
 
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: showcase
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stefano Verna
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-03-11 00:00:00.000000000 Z
11
+ date: 2014-03-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -122,14 +122,14 @@ files:
122
122
  - spec/fixtures.rb
123
123
  - spec/helpers/config_object_spec.rb
124
124
  - spec/helpers/seo_meta_builder_spec.rb
125
- - spec/helpers_spec.rb
126
- - spec/presenter_spec.rb
125
+ - spec/showcase/helpers_spec.rb
126
+ - spec/showcase/presenter_spec.rb
127
+ - spec/showcase/traits/base_spec.rb
128
+ - spec/showcase/traits/link_to_spec.rb
129
+ - spec/showcase/traits/record_spec.rb
130
+ - spec/showcase/traits/seo_spec.rb
131
+ - spec/showcase/traits/share_spec.rb
127
132
  - spec/spec_helper.rb
128
- - spec/traits/base_spec.rb
129
- - spec/traits/link_to_spec.rb
130
- - spec/traits/record_spec.rb
131
- - spec/traits/seo_spec.rb
132
- - spec/traits/share_spec.rb
133
133
  homepage: https://github.com/welaika/showcase
134
134
  licenses: []
135
135
  metadata: {}
@@ -157,11 +157,11 @@ test_files:
157
157
  - spec/fixtures.rb
158
158
  - spec/helpers/config_object_spec.rb
159
159
  - spec/helpers/seo_meta_builder_spec.rb
160
- - spec/helpers_spec.rb
161
- - spec/presenter_spec.rb
160
+ - spec/showcase/helpers_spec.rb
161
+ - spec/showcase/presenter_spec.rb
162
+ - spec/showcase/traits/base_spec.rb
163
+ - spec/showcase/traits/link_to_spec.rb
164
+ - spec/showcase/traits/record_spec.rb
165
+ - spec/showcase/traits/seo_spec.rb
166
+ - spec/showcase/traits/share_spec.rb
162
167
  - spec/spec_helper.rb
163
- - spec/traits/base_spec.rb
164
- - spec/traits/link_to_spec.rb
165
- - spec/traits/record_spec.rb
166
- - spec/traits/seo_spec.rb
167
- - spec/traits/share_spec.rb