take_a_memo 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,15 +1,19 @@
1
- = take_a_memo
1
+ take_a_memo
2
+ ===========
2
3
 
3
4
  This is a very simple gem that allows you to capture the commands you run in your irb session in mini-scripts that you can replay later.
4
5
 
5
- = Installing it
6
+ Installing it
7
+ ==============
6
8
 
7
9
  $ gem install take_a_memo
8
10
 
9
- = Using it
11
+ Using it
12
+ ===========
10
13
 
11
14
  Here's a really basic example of how it works.
12
15
 
16
+
13
17
  >> take_a_memo "remember this" do
14
18
  ?> 1 + 1
15
19
  >> end
@@ -28,14 +32,17 @@ Here's a really basic example of how it works.
28
32
  >> trash_this_memo("remember this")
29
33
  => ["/Users/vertigoclinic/.irb_memos/remember_this.rb"]
30
34
 
35
+
31
36
  You can set this up in your .irbrc file like this:
32
37
 
33
38
  require 'take_a_memo'
34
39
  include TakeAMemo
35
-
40
+
41
+
36
42
  The storage location for the memos defaults to ~/.irb_memos, but you can change it by setting ENV['IRB_MEMO_DIR']
37
43
 
38
- == Contributing to take_a_memo
44
+ Contributing to take_a_memo
45
+ ============================
39
46
 
40
47
  * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
41
48
  * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
@@ -45,8 +52,8 @@ The storage location for the memos defaults to ~/.irb_memos, but you can change
45
52
  * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
46
53
  * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
47
54
 
48
- == Copyright
49
-
55
+ Copyright
56
+ =========
50
57
  Copyright (c) 2011 vertigoclinic. See LICENSE.txt for
51
58
  further details.
52
59
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.0
1
+ 0.3.1
@@ -5,23 +5,23 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{take_a_memo}
8
- s.version = "0.3.0"
8
+ s.version = "0.3.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["vertigoclinic"]
12
- s.date = %q{2011-07-10}
12
+ s.date = %q{2011-07-28}
13
13
  s.description = %q{A simple gem to record commands from your irb session}
14
14
  s.email = %q{vertigoclinic@gmail.com}
15
15
  s.extra_rdoc_files = [
16
16
  "LICENSE.txt",
17
- "README.rdoc"
17
+ "README.txt"
18
18
  ]
19
19
  s.files = [
20
20
  ".document",
21
21
  "Gemfile",
22
22
  "Gemfile.lock",
23
23
  "LICENSE.txt",
24
- "README.rdoc",
24
+ "README.txt",
25
25
  "Rakefile",
26
26
  "VERSION",
27
27
  "lib/take_a_memo.rb",
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 3
8
- - 0
9
- version: 0.3.0
8
+ - 1
9
+ version: 0.3.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - vertigoclinic
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2011-07-10 00:00:00 -07:00
17
+ date: 2011-07-28 00:00:00 -07:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
@@ -107,13 +107,13 @@ extensions: []
107
107
 
108
108
  extra_rdoc_files:
109
109
  - LICENSE.txt
110
- - README.rdoc
110
+ - README.txt
111
111
  files:
112
112
  - .document
113
113
  - Gemfile
114
114
  - Gemfile.lock
115
115
  - LICENSE.txt
116
- - README.rdoc
116
+ - README.txt
117
117
  - Rakefile
118
118
  - VERSION
119
119
  - lib/take_a_memo.rb
@@ -135,7 +135,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
135
135
  requirements:
136
136
  - - ">="
137
137
  - !ruby/object:Gem::Version
138
- hash: -3032725925975479128
138
+ hash: -510741169
139
139
  segments:
140
140
  - 0
141
141
  version: "0"