yaml_form_helper 0.0.1 → 0.0.2
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.
- data/Gemfile +4 -0
- data/lib/yaml_form_helper.rb +1 -0
- data/yaml_form_helper-0.0.1.gem +0 -0
- data/yaml_form_helper.gemspec +19 -0
- metadata +6 -3
data/Gemfile
ADDED
data/lib/yaml_form_helper.rb
CHANGED
|
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:
|
|
4
|
+
hash: 27
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 0.0.
|
|
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
|
|