am 0.0.4 → 0.0.5

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/am/version.rb +1 -1
  3. data/lib/tail.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: dd20e052e21e26b87aa4b9cc4c57a05a8583a7a3
4
- data.tar.gz: f81a14e5fa2d91ce26a86689ffece48b32a97741
3
+ metadata.gz: 723bbc87212ffce2be4477ad66898027961be8ce
4
+ data.tar.gz: 5183ecd4569cbc3341da6235dcaeeefd8c044308
5
5
  SHA512:
6
- metadata.gz: 99d393b3714778abb145fe43b99c52cf951cf84a40f3f047cdd062cd650d54ef1d0bbe4649a8dfaf6ce00059cfd44ec22a36887c1c4d9c171a3de6016d674c44
7
- data.tar.gz: e3dc3b99aefce5967a19594fe332eda737c9e46c4e4a6302d45d9bf176adaf06815b4d8bddf0207dd33b68d8417aa761eef8f8e1d6a18de777d41160bee3ea3a
6
+ metadata.gz: 89e0b0383852903626c45183e1fcbe36365aed67d626d48f4a4b9f0a2976bc1f34672aa3f5b153141ba0b065fe26f67bdb24a8b5b59d01b0ffe6f56b9d751aec
7
+ data.tar.gz: 500a820faaf14e74861efef25981200358dfb64ef2d520e55c2ed6bc684f564137f3aabedf47750067b0fe802d49e4775d4818f8d866575fe9e02f9462356ba9
data/lib/am/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Am
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
data/lib/tail.rb CHANGED
@@ -28,7 +28,7 @@ module AM
28
28
  last_commands = `tail -6 #{@sh_history_file} | head -5`.split("\n")
29
29
  last_commands.each_with_index do |c,i|
30
30
  record = c.split(/#{@history_pattern}/)[@command_col].strip
31
- puts (i+1).to_s + ': ' + record.to_s
31
+ puts " #{(i+1).to_s} : #{record.to_s}"
32
32
  commands << record
33
33
  end
34
34
  commands
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: am
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - ka-yamashita