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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6a271cb84ff5bcafdc557d9413b0d4a12a7f5860
4
- data.tar.gz: 341c7658bf3bf5699a169b83217da897f7ede78c
3
+ metadata.gz: cb019aa91738631d13280eb25291c0110de508f5
4
+ data.tar.gz: 788b9733c60f9add5a36c84de90d749e1f0a8610
5
5
  SHA512:
6
- metadata.gz: 579a9cfc385fddb960177447ffe87a968f01c0991c905163d0bc6edba0a4357c917759f223ae00fdb89e5f295c60eea99b80336a21731d5ac114bafce84e22b7
7
- data.tar.gz: c6c7198e649ae76722ea91ec76825be29a44a0a853545516002718379896527eaafc7232136ff07bbeb8555dec9f726f233239d83ddbfeb40e9ff84490ec24f5
6
+ metadata.gz: 0e9dcb79bb28d020c6630a37f776477f5859936eb1e1e8704db30efaed7ee0e1d4867cf454b06cef5d20190c26386edec584b1831109cb93ecfa2a74d55a6e28
7
+ data.tar.gz: ee9735893c8e3a3648783de2f951ad849f91531ba029c08f9ff3dce40c70b4e9c650d7c0b2e635927322fcc0c35d795ba8953d772e5db54a33a0661a9f2379ec
data/README.md CHANGED
@@ -1,6 +1,4 @@
1
- # Drink::Menu
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
@@ -22,6 +22,6 @@ Motion::Project::App.setup do |app|
22
22
  end
23
23
 
24
24
  app.pods do
25
- pod 'ReactiveCocoa'
25
+ pod 'ReactiveCocoa', '1.8.1'
26
26
  end
27
27
  end
@@ -22,5 +22,5 @@ Gem::Specification.new do |spec|
22
22
  spec.add_development_dependency "rake", "~> 10.0.0"
23
23
 
24
24
  spec.add_dependency "motion-cocoapods"
25
- spec.add_dependency "cocoapods", "= 0.20.2"
25
+ spec.add_dependency "cocoapods"
26
26
  end
@@ -1,3 +1,3 @@
1
1
  module DrinkMenu
2
- VERSION = "0.1.1"
2
+ VERSION = "0.2.0"
3
3
  end
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.1.1
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-07-10 00:00:00.000000000 Z
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.20.2
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.20.2
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.2
117
+ rubygems_version: 2.0.3
118
118
  signing_key:
119
119
  specification_version: 4
120
120
  summary: OSX menus - the ruby way