code_buddy 0.1.1 → 0.1.2
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/lib/code_buddy/public/stylesheets/code_buddy.css +4 -4
- data/lib/code_buddy/version.rb +1 -1
- metadata +4 -5
- data/History.md +0 -10
@@ -1,5 +1,5 @@
|
|
1
1
|
html {
|
2
|
-
font-family: Monaco;
|
2
|
+
font-family: Monaco, Monospace, monospace, "Courier New", Courier;
|
3
3
|
color: #E6E0DB;
|
4
4
|
font-size:0.95em;
|
5
5
|
font-color: white;
|
@@ -100,7 +100,7 @@ a {
|
|
100
100
|
}
|
101
101
|
|
102
102
|
#stack {
|
103
|
-
position: absolute;
|
103
|
+
position: absolute;
|
104
104
|
right:5px;
|
105
105
|
top:100px;
|
106
106
|
z-index:1;
|
@@ -120,7 +120,7 @@ ul {
|
|
120
120
|
li {
|
121
121
|
border-color: #666666;
|
122
122
|
font-size: 12px;
|
123
|
-
font-family: Monaco;
|
123
|
+
font-family: Monaco, Monospace, monospace, "Courier New", Courier;
|
124
124
|
line-height: 23px;
|
125
125
|
list-style: none;
|
126
126
|
}
|
@@ -156,4 +156,4 @@ li {
|
|
156
156
|
|
157
157
|
#current div {
|
158
158
|
float:right;
|
159
|
-
}
|
159
|
+
}
|
data/lib/code_buddy/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: code_buddy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 31
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
9
|
+
- 2
|
10
|
+
version: 0.1.2
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Pat Shaughnessy, Alex Rothenberg, Daniel Higginbotham
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-
|
18
|
+
date: 2011-07-01 00:00:00 -04:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -196,7 +196,6 @@ extra_rdoc_files: []
|
|
196
196
|
files:
|
197
197
|
- .gitignore
|
198
198
|
- Gemfile
|
199
|
-
- History.md
|
200
199
|
- LICENSE
|
201
200
|
- README.rdoc
|
202
201
|
- Rakefile
|
data/History.md
DELETED
@@ -1,10 +0,0 @@
|
|
1
|
-
## Code Buddy release history
|
2
|
-
|
3
|
-
### 0.0.7 / 2011-01-04
|
4
|
-
|
5
|
-
[full changelog](https://github.com/patshaughnessy/code_buddy/compare/v0.0.6...v0.0.7)
|
6
|
-
|
7
|
-
* Bug fix: Handles stack traces from haml files
|
8
|
-
* 'e' opens an editor to current file (mvim and mate only based on EDITOR environment variable)
|
9
|
-
* 'h' show/hide code window
|
10
|
-
* Added some cucumber features so we know it works
|