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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d76a2c00e39030eaa6ca444968193c5890e011d8
4
- data.tar.gz: 5dc045bbd778a05ef7b1ef323d9af0f10867c399
3
+ metadata.gz: 52bdf1b1909077d5a43a5a292f8330a58a44acd4
4
+ data.tar.gz: f7e3fb6bfc9b2be4e82f42734b6c73f745e19c01
5
5
  SHA512:
6
- metadata.gz: 0245561d30d90280788cb98a1acf52b8dbfc6c451a55e97fa1e92cc6dbeb6f1666d916e55ae3ca9631dda776cbf2949e0a7e180986a5fd8bec49a04c5162da6d
7
- data.tar.gz: 656dfd7e0a85c924bf45ddc85c4ba76b67ad61f580a627233fc4742b5cb7d1539519a326902aaab739eec3aea0e45952b5d8835bce7d142cdee37b9ae17c87d0
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'
@@ -1,4 +1,6 @@
1
+ # encoding: utf-8
1
2
  # frozen_string_literal: true
3
+
2
4
  require File.expand_path('../lib/essay/version', __FILE__)
3
5
 
4
6
  Gem::Specification.new do |s|
@@ -1,6 +1,9 @@
1
+ # encoding: utf-8
1
2
  # frozen_string_literal: true
3
+
2
4
  require 'active_support/all'
3
5
  require 'active_record'
6
+ require 'activerecord-traits'
4
7
 
5
8
  require 'essay/model/model_features'
6
9
  require 'essay/model/base_feature'
@@ -1,4 +1,6 @@
1
+ # encoding: utf-8
1
2
  # frozen_string_literal: true
3
+
2
4
  require 'essay/helpers/model_helper'
3
5
 
4
6
  module Essay
@@ -1,4 +1,6 @@
1
+ # encoding: utf-8
1
2
  # frozen_string_literal: true
3
+
2
4
  require 'essay/helpers/model_helper'
3
5
  require 'essay/helpers/serialize_helper'
4
6
  require 'essay/helpers/description_helper'
@@ -1,4 +1,6 @@
1
+ # encoding: utf-8
1
2
  # frozen_string_literal: true
3
+
2
4
  require 'essay/helpers/model_helper'
3
5
  require 'essay/helpers/feature_helper'
4
6
  require 'essay/helpers/serialize_helper'
@@ -1,4 +1,6 @@
1
+ # encoding: utf-8
1
2
  # frozen_string_literal: true
3
+
2
4
  require 'essay/abstract_collection'
3
5
 
4
6
  module Essay
@@ -1,4 +1,6 @@
1
+ # encoding: utf-8
1
2
  # frozen_string_literal: true
3
+
2
4
  require 'essay/abstract_features'
3
5
  require 'essay/helpers/association_helper'
4
6
 
@@ -1,4 +1,6 @@
1
+ # encoding: utf-8
1
2
  # frozen_string_literal: true
3
+
2
4
  require 'essay/abstract_feature'
3
5
  require 'essay/helpers/association_helper'
4
6
 
@@ -1,4 +1,6 @@
1
+ # encoding: utf-8
1
2
  # frozen_string_literal: true
3
+
2
4
  require 'essay/abstract_collection'
3
5
 
4
6
  module Essay
@@ -1,4 +1,6 @@
1
+ # encoding: utf-8
1
2
  # frozen_string_literal: true
3
+
2
4
  require 'essay/abstract_features'
3
5
  require 'essay/helpers/attribute_helper'
4
6
 
@@ -1,4 +1,6 @@
1
+ # encoding: utf-8
1
2
  # frozen_string_literal: true
3
+
2
4
  require 'essay/abstract_feature'
3
5
  require 'essay/helpers/attribute_helper'
4
6
 
@@ -1,4 +1,6 @@
1
+ # encoding: utf-8
1
2
  # frozen_string_literal: true
3
+
2
4
  module Essay
3
5
  module AssociationHelper
4
6
  def association_name
@@ -1,4 +1,6 @@
1
+ # encoding: utf-8
1
2
  # frozen_string_literal: true
3
+
2
4
  module Essay
3
5
  module AttributeHelper
4
6
  def attribute_name
@@ -1,4 +1,6 @@
1
+ # encoding: utf-8
1
2
  # frozen_string_literal: true
3
+
2
4
  module Essay
3
5
  module DescriptionHelper
4
6
  extend ActiveSupport::Concern
@@ -1,4 +1,6 @@
1
+ # encoding: utf-8
1
2
  # frozen_string_literal: true
3
+
2
4
  module Essay
3
5
  module FeatureHelper
4
6
  def is(thing)
@@ -1,4 +1,6 @@
1
+ # encoding: utf-8
1
2
  # frozen_string_literal: true
3
+
2
4
  module Essay
3
5
  module ModelHelper
4
6
  def model_class
@@ -1,4 +1,6 @@
1
+ # encoding: utf-8
1
2
  # frozen_string_literal: true
3
+
2
4
  module Essay
3
5
  module SerializeHelper
4
6
  extend ActiveSupport::Concern
@@ -1,4 +1,6 @@
1
+ # encoding: utf-8
1
2
  # frozen_string_literal: true
3
+
2
4
  require 'essay/abstract_feature'
3
5
 
4
6
  module Essay
@@ -1,4 +1,6 @@
1
+ # encoding: utf-8
1
2
  # frozen_string_literal: true
3
+
2
4
  require 'essay/abstract_features'
3
5
 
4
6
  module Essay
@@ -1,4 +1,6 @@
1
+ # encoding: utf-8
1
2
  # frozen_string_literal: true
3
+
2
4
  module Essay
3
- VERSION = '1.0.2'
5
+ VERSION = '1.0.3'
4
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: essay
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yaroslav Konoplov