roger 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/README.md +95 -0
- metadata +64 -0
checksums.yaml
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
---
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
M2FhYzgyZDQ3NDY5NjI2ODgxMDViMThkMDAxMWM3NTM5MjY4YThjMw==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
Y2YxYWE1MTcxN2FjOTI4NDNjZDQzNTljN2IwNzc1M2I3Yzc1NDA3Yg==
|
7
|
+
SHA512:
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
MDQyODc0ZGRmMTQ3OWEyZDNlNDc5NDBlZTVkYTFlYTBmZjZmMzAwZWI3OGE3
|
10
|
+
Y2JlYjU3OWI5ZTFjODg3YTFiMmVmNWJlMWQ4ZjY0ZDEwODM5MWU2Yjg3YzVj
|
11
|
+
NTJiNjA3NGM5MTNmNzc2MjFkZjQ3ODU5N2UzNWIxZWZhYjQ1Yjg=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
MDYwMDM3ZTVjMzM2MTE0OWIwMmQ5YjI5MTE1ZDU4YmY2MmQ5ZmMxNDY1NDc1
|
14
|
+
NDg5ZWQ2ZGFkY2U5NTM2MGMyNzljMzBhMmZiMDkxNDVkMTdhMTdlOTcyYmE3
|
15
|
+
ZDE1M2RkMmZhNDM3NDJmNzE1MjhkNDgyY2I5NjA5ZGRmMWNlMGQ=
|
data/README.md
ADDED
@@ -0,0 +1,95 @@
|
|
1
|
+
# HtmlMockup
|
2
|
+
|
3
|
+
[![Gem Version](https://badge.fury.io/rb/html_mockup.png)](http://badge.fury.io/rb/html_mockup)
|
4
|
+
[![Build Status](https://travis-ci.org/DigitPaint/html_mockup.png?branch=master)](https://travis-ci.org/DigitPaint/html_mockup)
|
5
|
+
|
6
|
+
## What is it?
|
7
|
+
|
8
|
+
HtmlMockup is your friendly front-end development toolbox! It helps you with these 4 things:
|
9
|
+
|
10
|
+
1. **Generate** : Set up your projects
|
11
|
+
1. **Serve** : Development server
|
12
|
+
1. **Test** : Test/lint your stuff
|
13
|
+
1. **Release** : Release your code
|
14
|
+
|
15
|
+
## Get started
|
16
|
+
|
17
|
+
We assume you have a working Ruby 1.9.x or higher running.
|
18
|
+
|
19
|
+
1. Install HtmlMockup
|
20
|
+
|
21
|
+
```shell
|
22
|
+
gem install html_mockup
|
23
|
+
```
|
24
|
+
|
25
|
+
1. Create a new project
|
26
|
+
|
27
|
+
```shell
|
28
|
+
mockup generate new PROJECT_DIR
|
29
|
+
```
|
30
|
+
|
31
|
+
Replace `PROJECT_DIR` with your project name
|
32
|
+
|
33
|
+
1. Start the development server
|
34
|
+
|
35
|
+
```shell
|
36
|
+
mockup serve
|
37
|
+
```
|
38
|
+
|
39
|
+
Open your webbrowser and go to `http://localhost:9000/`
|
40
|
+
|
41
|
+
1. Release your project
|
42
|
+
|
43
|
+
```shell
|
44
|
+
mockup release
|
45
|
+
```
|
46
|
+
|
47
|
+
## Where to go from here?
|
48
|
+
|
49
|
+
Read more documentation:
|
50
|
+
|
51
|
+
* [**Templating** Learn the power of HtmlMockup built in templating](doc/templating.md)
|
52
|
+
* [**CLI** Learn about the different `mockup` commands](doc/cli.md)
|
53
|
+
* [**Mockupfile** Learn how to configure and extend your Project](doc/mockupfile.md)
|
54
|
+
|
55
|
+
## Why?
|
56
|
+
|
57
|
+
When we started with HtmlMockup there was no Grunt/Gulp/whatever and with us being a Ruby shop we wrote HtmlMockup. Since its beginning it has evolved into quite a powerful tool.
|
58
|
+
|
59
|
+
Why would HtmlMockup be better than any other?
|
60
|
+
It's not it just does some things differently.
|
61
|
+
|
62
|
+
* Ruby
|
63
|
+
* Code over configuration
|
64
|
+
* Based on little modules, simple to extend
|
65
|
+
* Streams & files
|
66
|
+
* 4 easy commands separate concerns
|
67
|
+
|
68
|
+
## Contributors
|
69
|
+
|
70
|
+
[View contributors](https://github.com/digitpaint/html_mockup/graphs/contributors)
|
71
|
+
|
72
|
+
## License
|
73
|
+
|
74
|
+
(The MIT License)
|
75
|
+
|
76
|
+
Copyright (c) 2014 Digitpaint
|
77
|
+
|
78
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
79
|
+
a copy of this software and associated documentation files (the
|
80
|
+
'Software'), to deal in the Software without restriction, including
|
81
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
82
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
83
|
+
permit persons to whom the Software is furnished to do so, subject to
|
84
|
+
the following conditions:
|
85
|
+
|
86
|
+
The above copyright notice and this permission notice shall be
|
87
|
+
included in all copies or substantial portions of the Software.
|
88
|
+
|
89
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
90
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
91
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
92
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
93
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
94
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
95
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
metadata
ADDED
@@ -0,0 +1,64 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: roger
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Flurin Egger
|
8
|
+
- Edwin van der Graaf
|
9
|
+
- Joran Kapteijns
|
10
|
+
autorequire:
|
11
|
+
bindir: bin
|
12
|
+
cert_chain: []
|
13
|
+
date: 2014-04-29 00:00:00.000000000 Z
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: html_mockup
|
17
|
+
requirement: !ruby/object:Gem::Requirement
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: 0.8.4
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
requirements:
|
26
|
+
- - ~>
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
version: 0.8.4
|
29
|
+
description:
|
30
|
+
email:
|
31
|
+
- info@digitpaint.nl
|
32
|
+
- flurin@digitpaint.nl
|
33
|
+
executables: []
|
34
|
+
extensions: []
|
35
|
+
extra_rdoc_files:
|
36
|
+
- README.md
|
37
|
+
files:
|
38
|
+
- README.md
|
39
|
+
homepage: http://github.com/digitpaint/html_mockup
|
40
|
+
licenses:
|
41
|
+
- MIT
|
42
|
+
metadata: {}
|
43
|
+
post_install_message:
|
44
|
+
rdoc_options:
|
45
|
+
- --charset=UTF-8
|
46
|
+
require_paths:
|
47
|
+
- lib
|
48
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
49
|
+
requirements:
|
50
|
+
- - ! '>='
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: '0'
|
53
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
54
|
+
requirements:
|
55
|
+
- - ! '>='
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: '0'
|
58
|
+
requirements: []
|
59
|
+
rubyforge_project:
|
60
|
+
rubygems_version: 2.1.5
|
61
|
+
signing_key:
|
62
|
+
specification_version: 4
|
63
|
+
summary: Roger is a set of tools to create self-containing HTML mockups.
|
64
|
+
test_files: []
|