ipod_db 0.2.6 → 0.2.7
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +4 -6
- data/Rakefile +5 -5
- data/lib/ipod_db/version.rb +1 -1
- metadata +1 -1
data/README.md
CHANGED
@@ -1,7 +1,10 @@
|
|
1
|
+
[![Build Status](https://travis-ci.org/artm/ipod_db.png)](https://travis-ci.org/artm/ipod_db)
|
2
|
+
|
3
|
+
[![Code Climate](https://codeclimate.com/github/artm/ipod_db.png)](https://codeclimate.com/github/artm/ipod_db)
|
1
4
|
NAME
|
2
5
|
====
|
3
6
|
|
4
|
-
ipod_db v0.2.
|
7
|
+
ipod_db v0.2.6
|
5
8
|
|
6
9
|
SYNOPSIS
|
7
10
|
========
|
@@ -31,11 +34,6 @@ AUTHOR
|
|
31
34
|
artm <femistofel@gmail.com>
|
32
35
|
|
33
36
|
|
34
|
-
[![Build Status](https://travis-ci.org/artm/ipod_db.png)](https://travis-ci.org/artm/ipod_db)
|
35
|
-
|
36
|
-
[![Code Climate](https://codeclimate.com/github/artm/ipod_db.png)](https://codeclimate.com/github/artm/ipod_db)
|
37
|
-
|
38
|
-
|
39
37
|
SUBCOMMAND: sync
|
40
38
|
================
|
41
39
|
|
data/Rakefile
CHANGED
@@ -1,16 +1,14 @@
|
|
1
1
|
task :default => [:test, :build]
|
2
2
|
|
3
3
|
task :readme do
|
4
|
-
readme =
|
5
|
-
|
6
|
-
readme += <<-__
|
7
|
-
|
4
|
+
readme = <<-__
|
8
5
|
[![Build Status](https://travis-ci.org/artm/ipod_db.png)](https://travis-ci.org/artm/ipod_db)
|
9
6
|
|
10
7
|
[![Code Climate](https://codeclimate.com/github/artm/ipod_db.png)](https://codeclimate.com/github/artm/ipod_db)
|
11
|
-
|
12
8
|
__
|
13
9
|
|
10
|
+
readme += `bin/ipod help`
|
11
|
+
|
14
12
|
%w(sync ls rm).each do |subcommand|
|
15
13
|
readme += "\nSUBCOMMAND: #{subcommand}\n"
|
16
14
|
|
@@ -38,7 +36,9 @@ Rake::TestTask.new { |t|
|
|
38
36
|
t.pattern = 'spec/*_spec.rb'
|
39
37
|
}
|
40
38
|
|
39
|
+
|
41
40
|
BEGIN {
|
41
|
+
task :release => [:readme]
|
42
42
|
require 'bundler/gem_tasks'
|
43
43
|
require 'rake/testtask'
|
44
44
|
}
|
data/lib/ipod_db/version.rb
CHANGED