attributes_for 0.6.0 → 0.6.1

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
  SHA1:
3
- metadata.gz: a82294606b29cf6e588bd910a8b2918ab1e0d22f
4
- data.tar.gz: 32a9f842bb9d9264a6f7f83ccd4a05d1b2b059a3
3
+ metadata.gz: 7a209b072da0d34c383a199a10190e3b747aa993
4
+ data.tar.gz: 7de6c1c29fd8eb272e51176376f894cea70dbf71
5
5
  SHA512:
6
- metadata.gz: 80ea5536ddf98d6a4f688d54e74b33a11823fae42446c01af78e576d38e019aa36d76646a6094128b82912e5e3acafeb3b40e1b8f94d077d0e89e19a6d309b8d
7
- data.tar.gz: 9b4ad83e60266c80225e458daf801766e176e9527f809ab6a7938ffdff888ad9f194f587192007016b8a51d970038e11d6f63abd517eb7cb95cbcd125cb552ee
6
+ metadata.gz: 4cd8f89690b7249894fbffb68f7ae2e10b9b4abf305e0dfc0b0a8f25d49fdc6d9910c8f13b3bb5c82fd08f17fe81222d52a645aebeb9c05861ac494958358408
7
+ data.tar.gz: f94caba36425d9dc8226557a486259df7264c116f0514ca697ed2fa5d651c5627cb3f791ef60eb049779a1d9a00494c7ffab1f4d1c4291e8966f8901ca747ea8
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- attributes_for (0.6.0)
4
+ attributes_for (0.6.1)
5
5
  chronic_duration (~> 0.10)
6
6
  font-awesome-rails (~> 4.0)
7
7
  phony (~> 2.0)
@@ -49,14 +49,14 @@ GEM
49
49
  builder (3.2.2)
50
50
  chronic_duration (0.10.6)
51
51
  numerizer (~> 0.1.1)
52
- coveralls (0.8.2)
52
+ coveralls (0.8.3)
53
53
  json (~> 1.8)
54
54
  rest-client (>= 1.6.8, < 2)
55
55
  simplecov (~> 0.10.0)
56
56
  term-ansicolor (~> 1.3)
57
57
  thor (~> 0.19.1)
58
58
  docile (1.1.5)
59
- domain_name (0.5.24)
59
+ domain_name (0.5.25)
60
60
  unf (>= 0.0.5, < 1.0.0)
61
61
  erubis (2.7.0)
62
62
  font-awesome-rails (4.4.0.0)
@@ -71,14 +71,14 @@ GEM
71
71
  nokogiri (>= 1.5.9)
72
72
  mail (2.6.3)
73
73
  mime-types (>= 1.16, < 3)
74
- mime-types (2.6.1)
74
+ mime-types (2.6.2)
75
75
  mini_portile (0.6.2)
76
- minitest (5.8.1)
76
+ minitest (5.8.2)
77
77
  netrc (0.10.3)
78
78
  nokogiri (1.6.6.2)
79
79
  mini_portile (~> 0.6.0)
80
80
  numerizer (0.1.1)
81
- phony (2.15.1)
81
+ phony (2.15.6)
82
82
  rack (1.6.4)
83
83
  rack-test (0.6.3)
84
84
  rack (>= 1.0)
@@ -122,7 +122,7 @@ GEM
122
122
  actionpack (>= 3.0)
123
123
  activesupport (>= 3.0)
124
124
  sprockets (>= 2.8, < 4.0)
125
- sqlite3 (1.3.10)
125
+ sqlite3 (1.3.11)
126
126
  term-ansicolor (1.3.2)
127
127
  tins (~> 1.0)
128
128
  thor (0.19.1)
data/README.md CHANGED
@@ -4,6 +4,7 @@
4
4
  [rubygems]: https://rubygems.org/gems/attributes_for
5
5
  [fontawesome]: https://fortawesome.github.io/Font-Awesome
6
6
  [fontawesomerails]: https://github.com/bokmann/font-awesome-rails
7
+ [gemnasium]: https://gemnasium.com/blacktangent/attributes_for
7
8
 
8
9
 
9
10
  # AttributesFor
@@ -12,6 +13,7 @@
12
13
  [![Code Climate](https://codeclimate.com/github/blacktangent/attributes_for/badges/gpa.svg)][codeclimate]
13
14
  [![Test Coverage](http://img.shields.io/coveralls/blacktangent/attributes_for/master.svg)][coveralls]
14
15
  [![Gem Version](http://img.shields.io/gem/v/attributes_for.svg)][rubygems]
16
+ [![Dependency Status](https://gemnasium.com/blacktangent/attributes_for.png)][gemnasium]
15
17
 
16
18
  ActiveView Helper to present formatted ActiveModel attributes with
17
19
  icons.
@@ -70,7 +72,8 @@ strings can also be presented using the `string` method.
70
72
  </li>
71
73
  <li><%= b.duration :duration %></li>
72
74
  <li><%= b.boolean :active %></li>
73
- <li><%= b.date :created_at, format: :long %> </li>
75
+ <li><%= b.date :due_on %></li>
76
+ <li><%= b.datetime :created_at, format: :long %></li>
74
77
  <li>
75
78
  <%= b.string "Label" do %>
76
79
  Content
@@ -1,3 +1,3 @@
1
1
  module AttributesFor
2
- VERSION = "0.6.0"
2
+ VERSION = "0.6.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: attributes_for
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ole J. Rosendahl
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-10-21 00:00:00.000000000 Z
11
+ date: 2015-10-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails