splittingred 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 20a98b30603bd457943f6bed0bad77e998ab6d1f
4
+ data.tar.gz: f75ae64eab3710feb3b78eed536d7e467938a52d
5
+ SHA512:
6
+ metadata.gz: 13aa54c94a98c1aea2dd8347b2d0e8a2aa1b0eb35f755dbddb22330fc8a6ea084ed2fd9d9ef7428a27b08aea99bd43935e79d4332d2309a765f5f515a6f572fb
7
+ data.tar.gz: cbda70e6f8dc4a82639f90af8209dd5073c3708e8e319bffcfb65893d845d737e1c5212ffe7a0dffc2aa209a95a44e474fbef843f080e2779f7d8f2006ef00af
@@ -0,0 +1,32 @@
1
+ # mac / IDE
2
+ .project
3
+ .settings
4
+ nbproject
5
+ .idea
6
+ .DS_Store
7
+
8
+ # log stuff
9
+ log/*.log
10
+
11
+ # other files
12
+ resume.pdf
13
+ tmp
14
+ logs
15
+ nohup*
16
+
17
+ # other ruby-specific files
18
+ *.gem
19
+ .rvmrc
20
+ coverage/
21
+ doc
22
+ rdoc
23
+ pkg/
24
+ projectFilesBackup/
25
+ .yardoc
26
+ .bundle
27
+ .rubyversion
28
+ .ruby-version
29
+ Gemfile.lock
30
+ .autotest
31
+ rspec_results.html
32
+ spec/rspec_results.html
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --format documentation
data/Gemfile ADDED
@@ -0,0 +1,2 @@
1
+ source 'https://rubygems.org'
2
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Shaun McCormick
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,36 @@
1
+ # Description
2
+
3
+ Shaun McCormick's resume.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'splittingred'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install splittingred
18
+
19
+ ## Usage
20
+
21
+ $ rake splittingred
22
+
23
+ ### Running Standalone
24
+
25
+ To load standalone, rather than in an application, first install the gem, then create a Rakefile somewhere, like so:
26
+
27
+ $ nano Rakefile
28
+
29
+ In that Rakefile place:
30
+
31
+ require 'splittingred'
32
+
33
+ Then from a Terminal type:
34
+
35
+ $ irb
36
+ `rake splittingred`
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env rake
2
+ require 'bundler/gem_tasks'
3
+ require 'splittingred'
@@ -0,0 +1,3 @@
1
+ require 'rake'
2
+ require 'splittingred/version'
3
+ require 'splittingred/rake'
@@ -0,0 +1,46 @@
1
+ require 'launchy'
2
+
3
+ namespace :splittingred do
4
+ desc 'Launch my GitHub page, Twitter profile, LinkedIn profile and résumé.'
5
+ task :all => [:github,:twitter,:linkedin,:resume]
6
+
7
+ desc 'Launch my GitHub page.'
8
+ task :github do
9
+ Launchy.open('https://github.com/splittingred')
10
+ end
11
+
12
+ desc 'Launch my Twitter profile.'
13
+ task :twitter do
14
+ Launchy.open('https://twitter.com/splittingred')
15
+ end
16
+
17
+ desc 'Launch my personal website.'
18
+ task :website do
19
+ Launchy.open('http://splittingred.com/')
20
+ end
21
+
22
+ desc 'Launch my LinkedIn profile.'
23
+ task :linkedin do
24
+ Launchy.open('https://linkedin.com/in/splittingred')
25
+ end
26
+
27
+ desc 'View my résumé'
28
+ task :resume do
29
+ Launchy.open('http://splittingred.com/resume.pdf')
30
+ end
31
+
32
+ desc 'Download my résumé'
33
+ task :resume_download do
34
+ `wget http://splittingred.com/resume.pdf`
35
+ end
36
+
37
+ desc 'Launch my angel.co page.'
38
+ task :angelco do
39
+ Launchy.open('https://angel.co/splittingred')
40
+ end
41
+ end
42
+
43
+ task :shaun_mccormick => %w(splittingred:all)
44
+ task :shaunmccormick => %w(splittingred:all)
45
+ task :splittingred => %w(splittingred:all)
46
+ task :default => %w(splittingred:all)
@@ -0,0 +1,3 @@
1
+ module Splittingred
2
+ VERSION = '0.1.0'
3
+ end
@@ -0,0 +1,9 @@
1
+ $:.push File.expand_path('../lib', __FILE__)
2
+ require 'rubygems'
3
+ require 'bundler/setup'
4
+ require 'splittingred'
5
+
6
+ RSpec.configure do |config|
7
+ config.filter_run :focus => true
8
+ config.run_all_when_everything_filtered = true
9
+ end
@@ -0,0 +1,7 @@
1
+ require 'spec_helper'
2
+
3
+ describe Splittingred do
4
+ it 'version check' do
5
+ Splittingred::VERSION.should eq('0.1.0')
6
+ end
7
+ end
@@ -0,0 +1,29 @@
1
+ # coding: utf-8
2
+ $:.push File.expand_path('../lib', __FILE__)
3
+ require 'splittingred/version'
4
+
5
+ Gem::Specification.new do |gem|
6
+ gem.name = 'splittingred'
7
+ gem.version = Splittingred::VERSION
8
+ gem.platform = Gem::Platform::RUBY
9
+ gem.authors = ['Shaun McCormick']
10
+ gem.email = %w(splittingred@gmail.com)
11
+ gem.description = %q{Shaun McCormick's résumé in gem form}
12
+ gem.summary = %q{Shaun McCormick's résumé in gem form}
13
+ gem.homepage = 'https://github.com/splittingred/resume'
14
+ gem.license = 'MIT'
15
+
16
+ gem.files = `git ls-files`.split($/)
17
+ gem.executables = gem.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
19
+ gem.require_paths = %w(lib)
20
+
21
+ gem.required_ruby_version = '>= 1.9.2'
22
+ gem.required_rubygems_version = '>= 1.3.6'
23
+
24
+ gem.add_runtime_dependency 'launchy'
25
+
26
+ gem.add_development_dependency 'bundler', '~> 1.3'
27
+ gem.add_development_dependency 'rake'
28
+ gem.add_development_dependency 'rspec'
29
+ end
metadata ADDED
@@ -0,0 +1,115 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: splittingred
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Shaun McCormick
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-06-19 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: launchy
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '>='
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '>='
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: '1.3'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: '1.3'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rspec
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - '>='
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ description: Shaun McCormick's résumé in gem form
70
+ email:
71
+ - splittingred@gmail.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - .gitignore
77
+ - .rspec
78
+ - Gemfile
79
+ - LICENSE.txt
80
+ - README.md
81
+ - Rakefile
82
+ - lib/splittingred.rb
83
+ - lib/splittingred/rake.rb
84
+ - lib/splittingred/version.rb
85
+ - spec/spec_helper.rb
86
+ - spec/splittingred/version_spec.rb
87
+ - splittingred.gemspec
88
+ homepage: https://github.com/splittingred/resume
89
+ licenses:
90
+ - MIT
91
+ metadata: {}
92
+ post_install_message:
93
+ rdoc_options: []
94
+ require_paths:
95
+ - lib
96
+ required_ruby_version: !ruby/object:Gem::Requirement
97
+ requirements:
98
+ - - '>='
99
+ - !ruby/object:Gem::Version
100
+ version: 1.9.2
101
+ required_rubygems_version: !ruby/object:Gem::Requirement
102
+ requirements:
103
+ - - '>='
104
+ - !ruby/object:Gem::Version
105
+ version: 1.3.6
106
+ requirements: []
107
+ rubyforge_project:
108
+ rubygems_version: 2.0.3
109
+ signing_key:
110
+ specification_version: 4
111
+ summary: Shaun McCormick's résumé in gem form
112
+ test_files:
113
+ - spec/spec_helper.rb
114
+ - spec/splittingred/version_spec.rb
115
+ has_rdoc: