drink-menu 0.1.1 → 0.2.0
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 +4 -4
- data/README.md +12 -4
- data/Rakefile +1 -1
- data/drink-menu.gemspec +1 -1
- data/lib/drink-menu/version.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cb019aa91738631d13280eb25291c0110de508f5
|
4
|
+
data.tar.gz: 788b9733c60f9add5a36c84de90d749e1f0a8610
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0e9dcb79bb28d020c6630a37f776477f5859936eb1e1e8704db30efaed7ee0e1d4867cf454b06cef5d20190c26386edec584b1831109cb93ecfa2a74d55a6e28
|
7
|
+
data.tar.gz: ee9735893c8e3a3648783de2f951ad849f91531ba029c08f9ff3dce40c70b4e9c650d7c0b2e635927322fcc0c35d795ba8953d772e5db54a33a0661a9f2379ec
|
data/README.md
CHANGED
@@ -1,6 +1,4 @@
|
|
1
|
-
#
|
2
|
-
|
3
|
-
TODO: Write a gem description
|
1
|
+
# DrinkMenu
|
4
2
|
|
5
3
|
## Installation
|
6
4
|
|
@@ -68,8 +66,18 @@ class MainMenu
|
|
68
66
|
end
|
69
67
|
```
|
70
68
|
|
71
|
-
More detailed documentation coming soon.
|
69
|
+
See the [example](https://github.com/joefiorini/drink-menu/tree/master/examples/basic_main_menu) for basic usage. More detailed documentation & examples coming soon.
|
70
|
+
|
71
|
+
[See my recent blog post](http://joefiorini.com/posts/generating-menus-in-osx-apps-the-ruby-way) for a bit more information.
|
72
|
+
|
73
|
+
## Running the Examples
|
74
|
+
|
75
|
+
To run our example apps:
|
76
|
+
|
77
|
+
1. Clone this repo
|
78
|
+
2. From within your clone's root, run `platform=osx example=basic_main_menu rake`
|
72
79
|
|
80
|
+
You can replace the value of `example` with any folder under the `examples` directory to run that example.
|
73
81
|
|
74
82
|
## Contributing
|
75
83
|
|
data/Rakefile
CHANGED
data/drink-menu.gemspec
CHANGED
data/lib/drink-menu/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: drink-menu
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Joe Fiorini
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-
|
11
|
+
date: 2013-10-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -56,16 +56,16 @@ dependencies:
|
|
56
56
|
name: cocoapods
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
|
-
- - '
|
59
|
+
- - '>='
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: 0
|
61
|
+
version: '0'
|
62
62
|
type: :runtime
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
|
-
- - '
|
66
|
+
- - '>='
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: 0
|
68
|
+
version: '0'
|
69
69
|
description: An easy way to define menu items and visually lay out menus for your
|
70
70
|
OSX apps. Uses ReactiveCocoa to provide a nice syntax for responding to menu interactions.
|
71
71
|
Also provides live-binding to collections, which makes keeping menus up-to-date
|
@@ -114,7 +114,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
114
114
|
version: '0'
|
115
115
|
requirements: []
|
116
116
|
rubyforge_project:
|
117
|
-
rubygems_version: 2.0.
|
117
|
+
rubygems_version: 2.0.3
|
118
118
|
signing_key:
|
119
119
|
specification_version: 4
|
120
120
|
summary: OSX menus - the ruby way
|