repoman 0.5.1 → 0.5.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/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Repoman
2
2
 
3
- TODO: Write a gem description
3
+ A Git tool for tracking file changes over time.
4
4
 
5
5
  ## Installation
6
6
 
@@ -8,7 +8,9 @@ TODO: Write a gem description
8
8
 
9
9
  ## Usage
10
10
 
11
- TODO: Write usage instructions here
11
+ 1. Go to the repo's base directory of a file you are trying to track
12
+ 2. Run `repoman file_name_you_are_trying_to_track`
13
+ 3. Example `repoman lib/map.rb`
12
14
 
13
15
  ## Contributing
14
16
 
data/TODO.txt ADDED
@@ -0,0 +1,9 @@
1
+ ## TODO
2
+
3
+ Show line removals
4
+
5
+ Browser testing in Firefox
6
+
7
+ Improve the repoman handles
8
+
9
+ Write more documentation
@@ -9,24 +9,9 @@ $(function() {
9
9
  }
10
10
  });
11
11
 
12
- $('.forward').click(function(e) {
13
- e.preventDefault();
14
- playback.drawForward();
15
- });
16
-
17
- $('.reverse').click(function(e) {
18
- e.preventDefault();
19
- playback.drawReverse();
20
- });
21
-
22
12
  $('.slider').change(function(e) {
23
13
  e.preventDefault();
24
- if(this.value > prev) {
25
- playback.drawForward(this.value - 1);
26
- prev = this.value;
27
- } else
28
- playback.drawReverse(this.value - 1);
29
- prev = this.value;
14
+ playback.drawCommit(this.value);
30
15
  });
31
16
 
32
17
  });
@@ -11,7 +11,7 @@ DiffPlayback = (function() {
11
11
  commit = 0;
12
12
  self = this;
13
13
  this.setupTemplates();
14
- this.drawCommit(this.commits[commit]);
14
+ this.drawCommit(commit);
15
15
  };
16
16
 
17
17
  DiffPlayback.prototype.setupTemplates = function() {
@@ -19,8 +19,9 @@ DiffPlayback = (function() {
19
19
  rowTemplate = Handlebars.compile($('#row-template').html());
20
20
  }
21
21
 
22
- DiffPlayback.prototype.drawCommit = function() {
22
+ DiffPlayback.prototype.drawCommit = function(value) {
23
23
  var that = this;
24
+ commit = value;
24
25
  $('.commit-history .info').html(infoTemplate(this.commits[commit]));
25
26
  $('tbody').html(rowTemplate(this.commits[commit]));
26
27
  $(this.commits[commit].diff_parts).each(function(index, part) {
@@ -46,17 +47,6 @@ DiffPlayback = (function() {
46
47
  });
47
48
  }
48
49
 
49
- DiffPlayback.prototype.drawForward = function(value) {
50
- commit = value;
51
- console.log(commit);
52
- this.drawCommit();
53
- }
54
-
55
- DiffPlayback.prototype.drawReverse = function(value) {
56
- commit = value;
57
- this.drawCommit();
58
- }
59
-
60
50
  return DiffPlayback;
61
51
  })();
62
52
 
@@ -6,8 +6,6 @@ body {
6
6
  }
7
7
 
8
8
  #container {
9
- width: 980px;
10
- margin: 0 auto;
11
9
  padding-left: 360px;
12
10
  }
13
11
 
@@ -39,28 +37,32 @@ strong { font-weight: bold; }
39
37
  width: 650px;
40
38
  }
41
39
 
42
- .line_number {
43
- background-color: #3b3b3b;
44
- color: #aaa;
45
- padding: 0 3px 0 4px;
46
- text-align: center;
47
- }
48
-
49
- .code {
50
- background-color: white;
51
- padding-left: 10px;
52
- }
40
+ #code table {
41
+ width: 700px;
42
+ display: block;
43
+ }
44
+ .line_number {
45
+ background-color: #3b3b3b;
46
+ color: #aaa;
47
+ padding: 0 3px 0 4px;
48
+ text-align: right;
49
+ }
53
50
 
54
- .bubble {
55
- background: #3B3B3B;
56
- border-radius: 3px;
57
- padding: 3px;
58
- }
51
+ .code {
52
+ background-color: white;
53
+ padding-left: 10px;
54
+ }
59
55
 
56
+ .bubble {
57
+ background: #3B3B3B;
58
+ border-radius: 3px;
59
+ padding: 3px;
60
+ float: left;
61
+ }
60
62
 
61
- .add td:nth-child(2) {
62
- -webkit-animation: portfolio-nav .5s linear forwards;
63
- }
63
+ .add td:nth-child(2) {
64
+ -webkit-animation: code-nav .5s linear forwards;
65
+ }
64
66
 
65
67
  /* Controls */
66
68
 
@@ -70,28 +72,65 @@ strong { font-weight: bold; }
70
72
  left: 20px;
71
73
  }
72
74
 
73
- .commit-history {
74
- background: -webkit-linear-gradient(top, #20202F, #3B3B3B);
75
- border: 1px solid black;
76
- margin-top: 20px;
77
- line-height: 20px;
78
- padding: 10px;
79
- min-height: 80px;
80
- width: 300px;
81
- }
75
+ .commit-history {
76
+ background: -webkit-linear-gradient(top, #20202F, #3B3B3B);
77
+ border: 1px solid black;
78
+ margin-top: 20px;
79
+ line-height: 20px;
80
+ padding: 10px;
81
+ min-height: 80px;
82
+ width: 300px;
83
+ }
82
84
 
83
- .info {
84
- color: white;
85
- }
85
+ .info {
86
+ color: white;
87
+ }
86
88
 
87
- .commit-info {
88
- margin: 0 10px;
89
- }
89
+ .commit-info {
90
+ margin: 0 10px;
91
+ }
90
92
 
91
93
  /* Animations */
92
94
 
93
- @-webkit-keyframes portfolio-nav {
95
+ @-webkit-keyframes code-nav {
94
96
  100% {
95
97
  background-color: #DFD;
96
98
  }
97
99
  }
100
+
101
+ @-webkit-keyframes slider-button {
102
+ 100% {
103
+ background-color: #d3d3d3;
104
+ }
105
+ }
106
+
107
+ input[type='range'] {
108
+ -webkit-appearance: none !important;
109
+ background: #20202F;
110
+ height: 7px;
111
+ width: 100%;
112
+ }
113
+
114
+ input[type='range']::-webkit-slider-thumb {
115
+ -webkit-appearance: none !important;
116
+ background: white;
117
+ border: 2px solid black;
118
+ height:25px;
119
+ width:25px;
120
+ border-radius: 100%;
121
+ }
122
+
123
+ input[type='range']:hover::-webkit-slider-thumb {
124
+ -webkit-animation: slider-button .2s linear forwards;
125
+ }
126
+
127
+ .cf:before,
128
+ .cf:after {
129
+ content:"";
130
+ display:table;
131
+ }
132
+
133
+ .cf:after {
134
+ clear:both;
135
+ }
136
+
@@ -22,8 +22,8 @@
22
22
  <script type="text/x-handlebars-template" id="row-template">
23
23
  {{#each file}}
24
24
  <tr>
25
- <td class="line_number">1</td>
26
- <td width="100%" class="code">
25
+ <td class="line_number"></td>
26
+ <td style="width: 100%;" class="code">
27
27
  <pre>{{this}}</pre>
28
28
  </td>
29
29
  </tr>
@@ -48,7 +48,7 @@
48
48
  </table>
49
49
  </div>
50
50
  </div>
51
-
52
51
  </div>
52
+ <div class="cf"></div>
53
53
  </body>
54
54
  </html>
@@ -1,3 +1,3 @@
1
1
  module Repoman
2
- VERSION = "0.5.1"
2
+ VERSION = "0.5.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: repoman
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.5.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -153,6 +153,7 @@ files:
153
153
  - LICENSE
154
154
  - README.md
155
155
  - Rakefile
156
+ - TODO.txt
156
157
  - bin/repoman
157
158
  - lib/repoman.rb
158
159
  - lib/repoman/app/app.rb