wwdc 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2cb9530ed9f6537d32f2b437ebf0a62b60585434
4
- data.tar.gz: de4eed1298b531debb60a24d262e2e0ad0534f78
3
+ metadata.gz: e31a7a4587eb6fd64bbb7b6d6c6c867dafe0cddf
4
+ data.tar.gz: 7aab23d89a2a688cfa9f2a1c19cd35764c30b7f2
5
5
  SHA512:
6
- metadata.gz: 2efb372f0b565e5f7054fdb526b55dc63b38535cb44926b2fd894eb4728d1d46d20a9339304eccab39c4875ace63248388b8ecbe651d55433f061028c9f00db3
7
- data.tar.gz: eed4a1a2d357a83295f5c674b23847f563a3f143af5537a5c06cfd7afce06b65e80cf3c71c9ddbf29325793f3b73fa4e7e9b7484bec62ccdf76f076c0eba6eae
6
+ metadata.gz: 0e1070e41b53ffe5c17d66200a1b16722ca48e8c0f80992be72388740a3dcf0ebff6c23794d451331c5cbf5bfc9fb935a00fe93bd02836a5e1aef30d865f70fd
7
+ data.tar.gz: f1adf6ec49064e4af6ec0dfdcfe9bc050bbf6598ab44ee20b720e0fb69a01e621607f51e197fc9b956e0dfa7ae69e723aae62ea02f75a1b2270fbe82f89daba8
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- wwdc (0.0.1)
4
+ wwdc (0.0.2)
5
5
  commander (~> 4.1.2)
6
6
  excon (~> 0.25.3)
7
7
 
data/README.md CHANGED
@@ -17,11 +17,8 @@ $ gem install wwdc
17
17
  $ wwdc info 228
18
18
 
19
19
  228: "Hidden Gems in Cocoa and Cocoa Touch"
20
-
21
20
  Learn from the experts about the Cocoa and Cocoa Touch classes you may not even know exist, as well as some very obscure but extremely valuable classes that are favorites of the presenters.
22
21
 
23
- https://developer.apple.com/wwdc/videos/?id=228
24
-
25
22
  $ wwdc open 228
26
23
 
27
24
  # Opens browser to Apple Developer page with links to slides and video
@@ -29,8 +26,9 @@ $ wwdc open 228
29
26
  $ wwdc search UIView
30
27
 
31
28
  203: "What’s New in Cocoa Touch"
29
+ UIView property called tintColor. So, Andy talked about the fact that we've taken the tintColor concept and hoisted it all the way up to UIView, right.
32
30
 
33
- > UIView property called tintColor. So, Andy talked about the fact that we've taken the tintColor concept and hoisted it all the way up to UIView, right.
31
+ ...
34
32
  ```
35
33
 
36
34
  ## Contact
data/bin/wwdc ADDED
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'commander/import'
4
+
5
+ require 'wwdc'
6
+
7
+ HighLine.track_eof = false # Fix for built-in Ruby
8
+ Signal.trap("INT") {} # Suppress backtrace when exiting command
9
+
10
+ program :version, WWDC::VERSION
11
+ program :description, 'A command-line interface for accessing WWDC session content'
12
+
13
+ program :help, 'Author', 'Mattt Thompson <m@mattt.me>'
14
+ program :help, 'Website', 'https://github.com/mattt'
15
+ program :help_formatter, :compact
16
+
17
+ default_command :help
data/lib/wwdc/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module WWDC
2
- VERSION = '0.0.1'
2
+ VERSION = '0.0.2'
3
3
  end
data/wwdc.gemspec CHANGED
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
20
20
  s.add_development_dependency "rspec"
21
21
  s.add_development_dependency "rake"
22
22
 
23
- s.files = Dir["./**/*"].reject { |file| file =~ /\.\/(bin|log|pkg|script|spec|test|vendor)/ }
23
+ s.files = Dir["./**/*"].reject { |file| file =~ /\.\/(log|pkg|script|spec|test|vendor)/ }
24
24
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
25
25
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
26
26
  s.require_paths = ["lib"]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wwdc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mattt Thompson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-09-29 00:00:00.000000000 Z
11
+ date: 2013-10-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: commander
@@ -68,10 +68,12 @@ dependencies:
68
68
  version: '0'
69
69
  description: A command-line interface for accessing WWDC session content
70
70
  email: m@mattt.me
71
- executables: []
71
+ executables:
72
+ - wwdc
72
73
  extensions: []
73
74
  extra_rdoc_files: []
74
75
  files:
76
+ - ./bin/wwdc
75
77
  - ./Gemfile
76
78
  - ./Gemfile.lock
77
79
  - ./lib/wwdc/commands/info.rb
@@ -85,6 +87,7 @@ files:
85
87
  - ./Rakefile
86
88
  - ./README.md
87
89
  - ./wwdc.gemspec
90
+ - bin/wwdc
88
91
  homepage: http://mattt.me
89
92
  licenses:
90
93
  - MIT