awesome_form_attributes 1.2.0 → 1.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,15 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 5632e813156e44e8811d9cead4a4f9785b96f3e2
4
- data.tar.gz: 90c53920207c261ba49e8a16284edf4b0d7f47d9
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ NDQzNDYyZGIzMzQ0ODEzN2ExZTBmN2Q2NzNmNDEyYjlkNzcyYzM1NA==
5
+ data.tar.gz: !binary |-
6
+ OTk5MDJiNjBmOGNjMDkyMjE4OTM4YmIyMjk1NzVlM2Q1ZjlhMWRjYQ==
5
7
  SHA512:
6
- metadata.gz: b9f419b6db6110ff4facfe41db19f2e50ba5b4642512082cf20fcf9334047c1070b48c79be768caa7cc682321eafefea90bf65d89dbc14e9ff67d27de27c8023
7
- data.tar.gz: c765b8097d2fa7d04a784b10fb954c3fd5806c58d153ce825b426c1bc6f83ca32eef8275316572312ec2b40a90aacddf8e77c6f94601237500ef44c74366752e
8
+ metadata.gz: !binary |-
9
+ M2NmNzYxMmYwYmE4ZmZiZGNhMzJlMjE4YWMwM2JkNDgxZTkzOTVmNDUzMGU3
10
+ MTYxZjNiNmNkYjIwYTI1YmM5YmVhNWE0ZTE1NWRkYjQ1ZmNhZDVkNDkwNWQ2
11
+ MGYzMzFjZmU0ODIyYmE2OGZiN2I1Njc3OWMzZmZkODBmYTg4ZDg=
12
+ data.tar.gz: !binary |-
13
+ NWM4ZTFlNmZlMTlhZjg0ZGE2Mjc1YWRhNWZkYWE5OTM4NTNjN2YyYmRhYTdj
14
+ ZmEwZjBiMDgzZDMwNDUwYmY1YWY0YmNhYTg2NTU5YWMxZDAyMDU5Zjk5ZmNk
15
+ OGI3ZDkzNzhhODliYmQ2Y2UxM2ExOTQ2NzFlYTM2ZjNiOGFkNmE=
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = 'awesome_form_attributes'
5
- s.version = '1.2.0'
5
+ s.version = '1.2.1'
6
6
  s.authors = ['Zhimeng Sun']
7
7
  s.email = ['zhimengSun@gmail.com']
8
8
  s.homepage = 'https://github.com/zhimengSun/awesome_form_attributes'
@@ -1,3 +1,4 @@
1
+ # -*- encoding : utf-8 -*-
1
2
  require 'active_support/configurable'
2
3
 
3
4
  module AwesomeFormAttributes
@@ -1,3 +1,4 @@
1
+ # -*- encoding : utf-8 -*-
1
2
  # require File.expand_path("../shared_helper",__FILE__)
2
3
  module ActionView
3
4
  module Helpers
@@ -1,3 +1,4 @@
1
+ # -*- encoding : utf-8 -*-
1
2
  class << ActiveRecord::Base
2
3
  def awesome_form_attributs(opts = {})
3
4
  end
@@ -1,3 +1,4 @@
1
+ # -*- encoding : utf-8 -*-
1
2
  module SharedHelper
2
3
  def klass
3
4
  controller_name.classify.constantize
@@ -1,3 +1,4 @@
1
+ # -*- encoding : utf-8 -*-
1
2
  module UsedAttrColumns
2
3
 
3
4
  extend ActiveSupport::Concern
@@ -1,3 +1,4 @@
1
+ # -*- encoding : utf-8 -*-
1
2
  module AwesomeFormAttributes
2
3
  def self.version
3
4
  "0.0.3"
@@ -1,3 +1,4 @@
1
+ # -*- encoding : utf-8 -*-
1
2
  require "rails"
2
3
  require 'awesome_form_attributes/config'
3
4
  require "awesome_form_attributes/version"
@@ -1,3 +1,4 @@
1
+ # -*- encoding : utf-8 -*-
1
2
  module AwesomeFormAttributes
2
3
  module Generators
3
4
  class ConfigGenerator < Rails::Generators::Base
@@ -1,3 +1,4 @@
1
+ # -*- encoding : utf-8 -*-
1
2
  AwesomeFormAttributes.configure do |config|
2
3
  # config.default_tag = "text_field"
3
4
  # config.text_area_words += []
metadata CHANGED
@@ -1,27 +1,27 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: awesome_form_attributes
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Zhimeng Sun
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-07-09 00:00:00.000000000 Z
11
+ date: 2015-10-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - '>='
17
+ - - ! '>='
18
18
  - !ruby/object:Gem::Version
19
19
  version: '0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - '>='
24
+ - - ! '>='
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
27
  description: Easy way to write attributes for DB based Object in the VIEWS
@@ -53,18 +53,19 @@ require_paths:
53
53
  - lib
54
54
  required_ruby_version: !ruby/object:Gem::Requirement
55
55
  requirements:
56
- - - '>='
56
+ - - ! '>='
57
57
  - !ruby/object:Gem::Version
58
58
  version: '0'
59
59
  required_rubygems_version: !ruby/object:Gem::Requirement
60
60
  requirements:
61
- - - '>='
61
+ - - ! '>='
62
62
  - !ruby/object:Gem::Version
63
63
  version: '0'
64
64
  requirements: []
65
65
  rubyforge_project:
66
- rubygems_version: 2.0.14
66
+ rubygems_version: 2.4.8
67
67
  signing_key:
68
68
  specification_version: 4
69
69
  summary: Easy way to write attributes for DB based Object
70
70
  test_files: []
71
+ has_rdoc: