realhq 0.0.1
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.
- data/.gitignore +17 -0
- data/.rspec +2 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +29 -0
- data/Rakefile +2 -0
- data/lib/realhq/rake.rb +56 -0
- data/lib/realhq/task.rb +69 -0
- data/lib/realhq/version.rb +3 -0
- data/lib/realhq.rb +8 -0
- data/realhq.gemspec +27 -0
- data/spec/realhq/version_spec.rb +5 -0
- data/spec/spec_helper.rb +9 -0
- metadata +147 -0
data/.gitignore
ADDED
data/.rspec
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 scottmotte
|
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.
|
data/README.md
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# Realhq
|
2
|
+
|
3
|
+
A gem for my application to RealHQ.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'realhq'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install realhq
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
rake realhq:scottmotte
|
22
|
+
|
23
|
+
## Contributing
|
24
|
+
|
25
|
+
1. Fork it
|
26
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
data/lib/realhq/rake.rb
ADDED
@@ -0,0 +1,56 @@
|
|
1
|
+
namespace :realhq do
|
2
|
+
namespace :scottmotte do
|
3
|
+
desc "All"
|
4
|
+
task :all => [:application, :github, :resume, :portfolio, :twitter, :community]
|
5
|
+
|
6
|
+
desc "Application"
|
7
|
+
task :application do |rake_task|
|
8
|
+
task = Realhq::Task.new(rake_task)
|
9
|
+
task.application_url
|
10
|
+
task.open
|
11
|
+
end
|
12
|
+
|
13
|
+
desc "GitHub"
|
14
|
+
task :github do |rake_task|
|
15
|
+
task = Realhq::Task.new(rake_task)
|
16
|
+
task.github_url
|
17
|
+
task.open
|
18
|
+
end
|
19
|
+
|
20
|
+
desc "Resume"
|
21
|
+
task :resume do |rake_task|
|
22
|
+
task = Realhq::Task.new(rake_task)
|
23
|
+
task.resume_url
|
24
|
+
task.open
|
25
|
+
end
|
26
|
+
|
27
|
+
desc "Portfolio"
|
28
|
+
task :portfolio do |rake_task|
|
29
|
+
task = Realhq::Task.new(rake_task)
|
30
|
+
task.portfolio_url
|
31
|
+
task.open
|
32
|
+
end
|
33
|
+
|
34
|
+
desc "Twitter"
|
35
|
+
task :twitter do |rake_task|
|
36
|
+
task = Realhq::Task.new(rake_task)
|
37
|
+
task.twitter_url
|
38
|
+
task.open
|
39
|
+
end
|
40
|
+
|
41
|
+
desc "Community"
|
42
|
+
task :community do |rake_task|
|
43
|
+
task = Realhq::Task.new(rake_task)
|
44
|
+
task.riversidejs_url
|
45
|
+
task.open
|
46
|
+
|
47
|
+
task.startupie_url
|
48
|
+
task.open
|
49
|
+
|
50
|
+
task.riversideio_url
|
51
|
+
task.open
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
task :scottmotte => ["scottmotte:all"]
|
56
|
+
end
|
data/lib/realhq/task.rb
ADDED
@@ -0,0 +1,69 @@
|
|
1
|
+
module Realhq
|
2
|
+
class Task
|
3
|
+
RAKE_NAMESPACE_DELIMITER = ":"
|
4
|
+
|
5
|
+
def initialize(rake_task)
|
6
|
+
@url = nil
|
7
|
+
@rake_task = rake_task
|
8
|
+
end
|
9
|
+
|
10
|
+
def name
|
11
|
+
split_rake_task[-1]
|
12
|
+
end
|
13
|
+
|
14
|
+
def namespace
|
15
|
+
split_rake_task[-2]
|
16
|
+
end
|
17
|
+
|
18
|
+
def github_url
|
19
|
+
@url = ["https://", name, ".com/", namespace].join
|
20
|
+
@url
|
21
|
+
end
|
22
|
+
|
23
|
+
def resume_url
|
24
|
+
@url = ["http://", namespace, ".com/assets/resume.pdf"].join
|
25
|
+
@url
|
26
|
+
end
|
27
|
+
|
28
|
+
def portfolio_url
|
29
|
+
@url = ["http://", namespace, ".com"].join
|
30
|
+
@url
|
31
|
+
end
|
32
|
+
|
33
|
+
def twitter_url
|
34
|
+
@url = ["http://twitter.com/", namespace].join
|
35
|
+
@url
|
36
|
+
end
|
37
|
+
|
38
|
+
def riversidejs_url
|
39
|
+
@url = ["http://meetup.com/riversidejs"].join
|
40
|
+
@url
|
41
|
+
end
|
42
|
+
|
43
|
+
def startupie_url
|
44
|
+
@url = ["http://meetup.com/startupie"].join
|
45
|
+
@url
|
46
|
+
end
|
47
|
+
|
48
|
+
def riversideio_url
|
49
|
+
@url = ["http://riverside.io"].join
|
50
|
+
@url
|
51
|
+
end
|
52
|
+
|
53
|
+
def application_url
|
54
|
+
@url = "https://gist.github.com/scottmotte/3d83f73d58b1fb994f26"
|
55
|
+
@url
|
56
|
+
end
|
57
|
+
|
58
|
+
def open
|
59
|
+
puts @url
|
60
|
+
Launchy.open(@url)
|
61
|
+
end
|
62
|
+
|
63
|
+
private
|
64
|
+
|
65
|
+
def split_rake_task
|
66
|
+
@rake_task.name.split(RAKE_NAMESPACE_DELIMITER)
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
data/lib/realhq.rb
ADDED
data/realhq.gemspec
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'realhq/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "realhq"
|
8
|
+
spec.version = Realhq::VERSION
|
9
|
+
spec.authors = ["scottmotte"]
|
10
|
+
spec.email = ["scott@scottmotte.com"]
|
11
|
+
spec.description = %q{Application to RealHQ}
|
12
|
+
spec.summary = %q{Application to RealHQ}
|
13
|
+
spec.homepage = ""
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
22
|
+
spec.add_development_dependency "rake"
|
23
|
+
spec.add_development_dependency "pry"
|
24
|
+
spec.add_development_dependency "rspec"
|
25
|
+
|
26
|
+
spec.add_dependency "launchy"
|
27
|
+
end
|
data/spec/spec_helper.rb
ADDED
metadata
ADDED
@@ -0,0 +1,147 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: realhq
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- scottmotte
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2013-06-07 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: bundler
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '1.3'
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ~>
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '1.3'
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: rake
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ! '>='
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '0'
|
38
|
+
type: :development
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ! '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '0'
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: pry
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ! '>='
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '0'
|
54
|
+
type: :development
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ! '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
- !ruby/object:Gem::Dependency
|
63
|
+
name: rspec
|
64
|
+
requirement: !ruby/object:Gem::Requirement
|
65
|
+
none: false
|
66
|
+
requirements:
|
67
|
+
- - ! '>='
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '0'
|
70
|
+
type: :development
|
71
|
+
prerelease: false
|
72
|
+
version_requirements: !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - ! '>='
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: '0'
|
78
|
+
- !ruby/object:Gem::Dependency
|
79
|
+
name: launchy
|
80
|
+
requirement: !ruby/object:Gem::Requirement
|
81
|
+
none: false
|
82
|
+
requirements:
|
83
|
+
- - ! '>='
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
version: '0'
|
86
|
+
type: :runtime
|
87
|
+
prerelease: false
|
88
|
+
version_requirements: !ruby/object:Gem::Requirement
|
89
|
+
none: false
|
90
|
+
requirements:
|
91
|
+
- - ! '>='
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: '0'
|
94
|
+
description: Application to RealHQ
|
95
|
+
email:
|
96
|
+
- scott@scottmotte.com
|
97
|
+
executables: []
|
98
|
+
extensions: []
|
99
|
+
extra_rdoc_files: []
|
100
|
+
files:
|
101
|
+
- .gitignore
|
102
|
+
- .rspec
|
103
|
+
- Gemfile
|
104
|
+
- LICENSE.txt
|
105
|
+
- README.md
|
106
|
+
- Rakefile
|
107
|
+
- lib/realhq.rb
|
108
|
+
- lib/realhq/rake.rb
|
109
|
+
- lib/realhq/task.rb
|
110
|
+
- lib/realhq/version.rb
|
111
|
+
- realhq.gemspec
|
112
|
+
- spec/realhq/version_spec.rb
|
113
|
+
- spec/spec_helper.rb
|
114
|
+
homepage: ''
|
115
|
+
licenses:
|
116
|
+
- MIT
|
117
|
+
post_install_message:
|
118
|
+
rdoc_options: []
|
119
|
+
require_paths:
|
120
|
+
- lib
|
121
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
122
|
+
none: false
|
123
|
+
requirements:
|
124
|
+
- - ! '>='
|
125
|
+
- !ruby/object:Gem::Version
|
126
|
+
version: '0'
|
127
|
+
segments:
|
128
|
+
- 0
|
129
|
+
hash: 4604672815944581593
|
130
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
131
|
+
none: false
|
132
|
+
requirements:
|
133
|
+
- - ! '>='
|
134
|
+
- !ruby/object:Gem::Version
|
135
|
+
version: '0'
|
136
|
+
segments:
|
137
|
+
- 0
|
138
|
+
hash: 4604672815944581593
|
139
|
+
requirements: []
|
140
|
+
rubyforge_project:
|
141
|
+
rubygems_version: 1.8.23
|
142
|
+
signing_key:
|
143
|
+
specification_version: 3
|
144
|
+
summary: Application to RealHQ
|
145
|
+
test_files:
|
146
|
+
- spec/realhq/version_spec.rb
|
147
|
+
- spec/spec_helper.rb
|