packman 0.0.1

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.
@@ -0,0 +1,9 @@
1
+ %h1= @funpack.name
2
+
3
+ %form.form-horizontal(action="/" method="POST")
4
+ - for setting in @funpack.definitions
5
+ .control-group
6
+ = setting(setting)
7
+
8
+ .form-actions
9
+ %button.btn.btn-primary(type="submit") Create Settings
@@ -0,0 +1,25 @@
1
+ !!!
2
+ %html{lang: 'en', dir: 'ltr'}
3
+ %head
4
+ %meta{charset: 'utf-8'}
5
+ %title Packman
6
+
7
+ %link(href="css/bootstrap.css" rel="stylesheet")
8
+ :css
9
+ body {
10
+ padding-top: 60px;
11
+ padding-bottom: 40px;
12
+ }
13
+
14
+ %body
15
+ .navbar.navbar-inverse.navbar-fixed-top
16
+ .navbar-inner
17
+ .container
18
+ %a.btn.btn-navbar(data-toggle="collapse" data-target=".nav-collapse")
19
+ %span.icon-bar
20
+ %span.icon-bar
21
+ %span.icon-bar
22
+
23
+ %a.brand(href="/") Packman
24
+
25
+ .container= yield
@@ -0,0 +1,2 @@
1
+ %h2 Settings
2
+ %pre= JSON.pretty_generate(@settings)
data/packman.gemspec ADDED
@@ -0,0 +1,33 @@
1
+ # -*- encoding: utf-8 -*-
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'packman/version'
5
+
6
+ Gem::Specification.new do |gem|
7
+ gem.name = "packman"
8
+ gem.version = Packman::VERSION
9
+ gem.authors = ["Dave Newman"]
10
+ gem.email = ["dave@minefold.com"]
11
+ gem.description = %q{Test Minefold funpacks}
12
+ gem.summary = %q{Test Minefold funpacks}
13
+ gem.homepage = "https://minefold.com"
14
+
15
+ # gem.files = `git ls-files`.split($/)
16
+ # gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
17
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
18
+ gem.require_paths = ["lib"]
19
+
20
+ gem.executables = ["packman"]
21
+ gem.files = %w(
22
+ Gemfile
23
+ LICENSE.txt
24
+ README.md
25
+ Rakefile
26
+ bin/packman
27
+ packman.gemspec
28
+ ) + Dir["lib/**/*"]
29
+
30
+ %w(thor launchy).each do |dep|
31
+ gem.add_dependency dep
32
+ end
33
+ end
metadata ADDED
@@ -0,0 +1,105 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: packman
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Dave Newman
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-01-09 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: thor
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: '0'
30
+ - !ruby/object:Gem::Dependency
31
+ name: launchy
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ type: :runtime
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ description: Test Minefold funpacks
47
+ email:
48
+ - dave@minefold.com
49
+ executables:
50
+ - packman
51
+ extensions: []
52
+ extra_rdoc_files: []
53
+ files:
54
+ - Gemfile
55
+ - LICENSE.txt
56
+ - README.md
57
+ - Rakefile
58
+ - bin/packman
59
+ - packman.gemspec
60
+ - lib/packman/cli.rb
61
+ - lib/packman/Funpackfile.rb
62
+ - lib/packman/proc_runner.rb
63
+ - lib/packman/version.rb
64
+ - lib/packman/web_settings.rb
65
+ - lib/packman.rb
66
+ - lib/settings/app.rb
67
+ - lib/settings/config.ru
68
+ - lib/settings/lib/funpack.rb
69
+ - lib/settings/lib/settings_helper.rb
70
+ - lib/settings/public/css/bootstrap.css
71
+ - lib/settings/views/edit.haml
72
+ - lib/settings/views/layout.haml
73
+ - lib/settings/views/show.haml
74
+ homepage: https://minefold.com
75
+ licenses: []
76
+ post_install_message:
77
+ rdoc_options: []
78
+ require_paths:
79
+ - lib
80
+ required_ruby_version: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ! '>='
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ segments:
87
+ - 0
88
+ hash: 1233788287982018368
89
+ required_rubygems_version: !ruby/object:Gem::Requirement
90
+ none: false
91
+ requirements:
92
+ - - ! '>='
93
+ - !ruby/object:Gem::Version
94
+ version: '0'
95
+ segments:
96
+ - 0
97
+ hash: 1233788287982018368
98
+ requirements: []
99
+ rubyforge_project:
100
+ rubygems_version: 1.8.23
101
+ signing_key:
102
+ specification_version: 3
103
+ summary: Test Minefold funpacks
104
+ test_files: []
105
+ has_rdoc: