essay 1.0.2 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +4 -1
- data/essay.gemspec +2 -0
- data/lib/essay.rb +3 -0
- data/lib/essay/abstract_collection.rb +2 -0
- data/lib/essay/abstract_feature.rb +2 -0
- data/lib/essay/abstract_features.rb +2 -0
- data/lib/essay/association/association_collection.rb +2 -0
- data/lib/essay/association/association_features.rb +2 -0
- data/lib/essay/association/base_feature.rb +2 -0
- data/lib/essay/attribute/attribute_collection.rb +2 -0
- data/lib/essay/attribute/attribute_features.rb +2 -0
- data/lib/essay/attribute/base_feature.rb +2 -0
- data/lib/essay/helpers/association_helper.rb +2 -0
- data/lib/essay/helpers/attribute_helper.rb +2 -0
- data/lib/essay/helpers/description_helper.rb +2 -0
- data/lib/essay/helpers/feature_helper.rb +2 -0
- data/lib/essay/helpers/model_helper.rb +2 -0
- data/lib/essay/helpers/serialize_helper.rb +2 -0
- data/lib/essay/model/base_feature.rb +2 -0
- data/lib/essay/model/model_features.rb +2 -0
- data/lib/essay/version.rb +3 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 52bdf1b1909077d5a43a5a292f8330a58a44acd4
|
4
|
+
data.tar.gz: f7e3fb6bfc9b2be4e82f42734b6c73f745e19c01
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eadfb90980dc3e39322e403ebca5a27c267d6261601a3a74b202397ed10c26920d6aaba0e3a1fa6e73ac0dba69d065d44c2a1395121380aeb7417c6d4ffa66df
|
7
|
+
data.tar.gz: d5e5af80bac5e1240edc5f946d77ee519cff465e01bc6a1143287b9ef17a36549bc4746d7d717e98d8da5f239cf1deac37c3e1ed73672476b69722e439c95ac9
|
data/Gemfile
CHANGED
@@ -1,6 +1,9 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
1
4
|
source 'https://rubygems.org'
|
2
5
|
|
3
6
|
# Specify your gem's dependencies in confo.gemspec
|
4
7
|
gemspec
|
5
8
|
|
6
|
-
gem 'activerecord-traits', path: '~/Development/activerecord-traits'
|
9
|
+
gem 'activerecord-traits', path: '~/Development/activerecord-traits'
|
data/essay.gemspec
CHANGED
data/lib/essay.rb
CHANGED
data/lib/essay/version.rb
CHANGED