attr_default 0.5.0 → 0.5.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.
- data/attr_default.gemspec +1 -1
- data/lib/attr_default/version.rb +1 -1
- metadata +3 -3
data/attr_default.gemspec
CHANGED
|
@@ -9,7 +9,7 @@ Gem::Specification.new do |gem|
|
|
|
9
9
|
gem.email = ["colindkelley@gmail.com"]
|
|
10
10
|
gem.description = %q{Dynamic Ruby defaults for ActiveRecord attributes}
|
|
11
11
|
gem.summary = %q{Dynamic Ruby defaults for ActiveRecord attributes. These are lazy evaluated just in time: when first accessed, or just before validation or save. This allows dynamic defaults to depend on attributes that are assigned after initialization, or on other dynamic defaults.}
|
|
12
|
-
gem.homepage = ""
|
|
12
|
+
gem.homepage = "https://github.com/RingRevenue/attr_default"
|
|
13
13
|
|
|
14
14
|
gem.files = `git ls-files`.split($\)
|
|
15
15
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
data/lib/attr_default/version.rb
CHANGED
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 5
|
|
8
|
-
-
|
|
9
|
-
version: 0.5.
|
|
8
|
+
- 1
|
|
9
|
+
version: 0.5.1
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Colin Kelley
|
|
@@ -86,7 +86,7 @@ files:
|
|
|
86
86
|
- lib/attr_default/version.rb
|
|
87
87
|
- test/test_attr_default.rb
|
|
88
88
|
has_rdoc: true
|
|
89
|
-
homepage:
|
|
89
|
+
homepage: https://github.com/RingRevenue/attr_default
|
|
90
90
|
licenses: []
|
|
91
91
|
|
|
92
92
|
post_install_message:
|