easy_form 0.0.4 → 0.0.5

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 2fa14fbe176b390c07eab88e248eeca2bb5ab76f
4
- data.tar.gz: b384c21f8383fc4cc31064dc96bfb53f229ba8b8
2
+ SHA256:
3
+ metadata.gz: e60da3225e321d2c4dc684fc1af8aad329ae6a5d4edbf94e5e74b95a06fb12b8
4
+ data.tar.gz: 605751db4424e1b6eef86e475cf272c894965fd1b8f08ceabfa6f60780c8dfb5
5
5
  SHA512:
6
- metadata.gz: 3a08b99ca55f1e92109380abab52559449d5326e9a3d828dcd48031a68e639fca5a3a877607674df03c7ac3e0aac1489dabb1982dd0e1fd315434f11398883e8
7
- data.tar.gz: 29c6266c8d9c3c861480ba20f35498553518952e550246959beef16711b5d8d0808e2e9bfb831428827abf03f67cb7fd8a5707fd2864e15dda1689a358576491
6
+ metadata.gz: 67b4f756458449d28723406d22542c9d5acf9c1e17bec3b0b5e738c0348c8ec1907d5d6e8008e84602de56f0951d7060714f78dfc2e892998e293e0c1c54c7c1
7
+ data.tar.gz: f878bf285b8c9d90e95604f9f5b137fc83e2310a3fb812cb38bac38760700689b7105fe0bf5616fbc835274843e4409104a5453d992f9fc7c76a8076a14160eb
@@ -38,7 +38,7 @@ module EasyForm
38
38
 
39
39
  def self.class_merge(h1, h2)
40
40
  if h2[:class]
41
- h2[:class] << ' ' << h1[:class].to_s
41
+ h2[:class] = "#{h2[:class]} #{h1[:class]}"
42
42
  end
43
43
  h1.merge(h2)
44
44
  end
@@ -1,3 +1,3 @@
1
1
  module EasyForm
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
metadata CHANGED
@@ -1,11 +1,11 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: easy_form
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - kikyous
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
  date: 2015-05-26 00:00:00.000000000 Z
@@ -30,7 +30,7 @@ homepage: https://github.com/kikyous/easy_form
30
30
  licenses:
31
31
  - MIT
32
32
  metadata: {}
33
- post_install_message:
33
+ post_install_message:
34
34
  rdoc_options: []
35
35
  require_paths:
36
36
  - lib
@@ -45,9 +45,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
45
45
  - !ruby/object:Gem::Version
46
46
  version: '0'
47
47
  requirements: []
48
- rubyforge_project:
49
- rubygems_version: 2.5.1
50
- signing_key:
48
+ rubygems_version: 3.2.22
49
+ signing_key:
51
50
  specification_version: 4
52
51
  summary: form builder without complex dsl
53
52
  test_files: []