attribute-defaults 0.5.0 → 0.6.0
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/README.rdoc +3 -1
- metadata +4 -4
data/README.rdoc
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
= Attribute Defaults (attribute-defaults)
|
|
2
2
|
|
|
3
|
+
{<img src="https://travis-ci.org/bsm/attribute-defaults.png?branch=master" alt="Build Status" />}[https://travis-ci.org/bsm/attribute-defaults]
|
|
4
|
+
|
|
3
5
|
Simple ActiveRecord plugin that allows to specify default values for attributes.
|
|
4
6
|
|
|
5
7
|
== Installation
|
|
6
8
|
|
|
7
|
-
Just add <tt>gem attribute-defaults</tt> to your Gemfile.
|
|
9
|
+
Just add <tt>gem 'attribute-defaults'</tt> to your Gemfile.
|
|
8
10
|
|
|
9
11
|
Alternatively, run <tt>sudo gem install attribute-defaults</tt> and add
|
|
10
12
|
<tt>require 'attribute_defaults'</tt> to your app.
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: attribute-defaults
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.6.0
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2013-06-27 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: activerecord
|
|
@@ -44,7 +44,7 @@ dependencies:
|
|
|
44
44
|
- !ruby/object:Gem::Version
|
|
45
45
|
version: '0'
|
|
46
46
|
- !ruby/object:Gem::Dependency
|
|
47
|
-
name: sqlite3
|
|
47
|
+
name: sqlite3
|
|
48
48
|
requirement: !ruby/object:Gem::Requirement
|
|
49
49
|
none: false
|
|
50
50
|
requirements:
|
|
@@ -105,7 +105,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
105
105
|
version: 1.3.6
|
|
106
106
|
requirements: []
|
|
107
107
|
rubyforge_project:
|
|
108
|
-
rubygems_version: 1.8.
|
|
108
|
+
rubygems_version: 1.8.25
|
|
109
109
|
signing_key:
|
|
110
110
|
specification_version: 3
|
|
111
111
|
summary: Specify default values for ActiveRecord attributes
|