workon_rails 0.0.2 → 0.0.3
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/.gitignore +2 -0
- data/README.md +11 -1
- data/bin/work.sh +1 -1
- data/lib/workon_rails/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ffdb86d88427ff21f37d1915c9be0ef418979db4
|
4
|
+
data.tar.gz: ee33a887378d4b6d57fec7cc6600961579fc84c9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3e6c41abbe4ce2229ab50d5bd153771b6fc5943a31cb674bac0507028f32a250e72513dbfcdbb31228c479c5f261080d9c9ec37d84192ed42767f0debc0e6cfa
|
7
|
+
data.tar.gz: b383ed9559ce828bd0aceacd3fdabb6801f8441fb8e95523d3b3b1fcb9b05236b1d4665ed4554ecf613835e5e47230dd91a2bc965fdffa5c16a3358c4bfbd82b
|
data/.gitignore
CHANGED
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Workon
|
2
2
|
|
3
|
-
|
3
|
+
Wouldn't it be nice if you could just cd into your project directory and type "workon" in order to get your work on? I'd rather do that than type "r s", open a new terminal tab, type "bundle exec guard", then go to my browser and open the home page, find the project on my issue tracker, etc. That's what this project does.
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
@@ -67,3 +67,13 @@ OPTIONAL: Tell Workon to move the project windows. Depends on SizeUp.
|
|
67
67
|
I don't actually use the SizeUp window positioning. It would be nice if somebody made that work and added the ability to configure where your windows open using the config vars.
|
68
68
|
|
69
69
|
Also the default browser is Google Chrome. That's good enough for me. If you want it to use Firefox, I'm open to a pull request.
|
70
|
+
|
71
|
+
## CREDITS
|
72
|
+
|
73
|
+
I didn't actually start this project. Leon Miller-Out of Singlebrook did. My starting point, his code, can be found here:
|
74
|
+
|
75
|
+
https://gist.github.com/sbleon/3439856
|
76
|
+
|
77
|
+
I simply took those shell scripts and fronted them with a Ruby script that sets configuration options and environment variables before triggering Leon's scripts. I also added some of my own stuff and made the scripts friendly to the new environment variables.
|
78
|
+
|
79
|
+
Thanks Leon!
|
data/bin/work.sh
CHANGED
@@ -110,7 +110,7 @@ if [ "$WORKON_MOVE_WINDOWS" == "yes" ]; then
|
|
110
110
|
fi
|
111
111
|
|
112
112
|
# Open AC page for project
|
113
|
-
if [[ "$WORKON_AC_URL" != "" && "$WORKON_AC" !="" ]]; then
|
113
|
+
if [[ "$WORKON_AC_URL" != "" && "$WORKON_AC" != "" ]]; then
|
114
114
|
echo "Opening ActiveCollab project"
|
115
115
|
$BROWSER_CMD https://$WORKON_AC_URL/projects/$WORKON_AC/tasks
|
116
116
|
fi
|
data/lib/workon_rails/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: workon_rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Furber
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-11-
|
12
|
+
date: 2013-11-14 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: foreman
|
@@ -97,7 +97,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
97
97
|
version: '0'
|
98
98
|
requirements: []
|
99
99
|
rubyforge_project:
|
100
|
-
rubygems_version: 2.0.
|
100
|
+
rubygems_version: 2.0.6
|
101
101
|
signing_key:
|
102
102
|
specification_version: 4
|
103
103
|
summary: Go to your project folder and type workon.
|