code_buddy 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -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
+ }
@@ -1,3 +1,3 @@
1
1
  module CodeBuddy
2
- VERSION = '0.1.1'
2
+ VERSION = '0.1.2'
3
3
  end
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: 25
4
+ hash: 31
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 1
10
- version: 0.1.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-05-12 00:00:00 -04:00
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