yaml_form_helper 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in yaml_form_helper.gemspec
4
+ gemspec
@@ -1,4 +1,5 @@
1
1
  # YamlFormHelper
2
+ require 'active_support/dependencies'
2
3
  require "yaml_form_helper/form_builder_ext"
3
4
 
4
5
  %w{ helpers }.each do |dir|
Binary file
@@ -0,0 +1,19 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+
4
+ Gem::Specification.new do |s|
5
+ s.name = "yaml_form_helper"
6
+ s.version = '0.0.2'
7
+ s.authors = ["Michael Gerber"]
8
+ s.email = ["mike@citrin.ch"]
9
+ s.homepage = "https://github.com/servasat/yaml_form_helper"
10
+ s.summary = %q{Rails Plugin for YAML Forms}
11
+ s.description = %q{The YamlFormHelper is a Rails Plugin that extends the FormBuilder Class with methods to create form tags for the HTML/CSS Framework YAML (http://www.yaml.de/)}
12
+
13
+ s.rubyforge_project = "yaml_form_helper"
14
+
15
+ s.files = `git ls-files`.split("\n")
16
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
17
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
18
+ s.require_paths = ["lib"]
19
+ end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yaml_form_helper
3
3
  version: !ruby/object:Gem::Version
4
- hash: 29
4
+ hash: 27
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 1
10
- version: 0.0.1
9
+ - 2
10
+ version: 0.0.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Michael Gerber
@@ -28,6 +28,7 @@ extensions: []
28
28
  extra_rdoc_files: []
29
29
 
30
30
  files:
31
+ - Gemfile
31
32
  - MIT-LICENSE
32
33
  - README
33
34
  - Rakefile
@@ -39,6 +40,8 @@ files:
39
40
  - test/test_helper.rb
40
41
  - test/yaml_form_helper_test.rb
41
42
  - uninstall.rb
43
+ - yaml_form_helper-0.0.1.gem
44
+ - yaml_form_helper.gemspec
42
45
  homepage: https://github.com/servasat/yaml_form_helper
43
46
  licenses: []
44
47