musk 0.0.5 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c48bd0abea6550bac7abce80fefe2fc03352273d
4
- data.tar.gz: 1cf2a874737ff755d2e6763f5397fd64152ce2cc
3
+ metadata.gz: c7692bde14c22fb9779452a2713a7b824de295fd
4
+ data.tar.gz: 075287da34ca26330cdf5b38527261ac3d6010c0
5
5
  SHA512:
6
- metadata.gz: 9a48cca700249f4f7ff71394942abefed2b3e5dbce2f45f1da6812ace1f0eb14b8c53e51b901a00adbe4eb8d1505d46121901a82d7f4beb02b46e8612a787665
7
- data.tar.gz: 9aa0bf6b59e6f9a39ea0f41f68bf7be53209dff9a61c72600d823418e49d6fe33908a67e656002af6070205ebd9ab772023b5ca9e9a4ed130714031b44676cdb
6
+ metadata.gz: bb91d560599216afd56d8cad96539911bbae16bf9c762ccf58f79e74628102d308af36a2ba3b1189ac7a8a852202bd95216d412c85449caff4e359fa8384d74e
7
+ data.tar.gz: 4fa2dce41475d96213bec0b47c3eb2f59bfa8ee2af71ef632d73608573aa69cb5c8c6338fd1279f75334d820eaf72a71202fd6d8503915fe8b882e65142a9a77
data/.travis.yml ADDED
@@ -0,0 +1,13 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.1.1
4
+ before_install:
5
+ - sudo apt-get update -qq
6
+ - sudo apt-get install ruby-dev libtag1-dev
7
+ branches:
8
+ only:
9
+ - master
10
+ notifications:
11
+ email:
12
+ - eugene.pempel@gmail.com
13
+ script: "bundle exec rspec spec"
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- musk (0.0.5)
4
+ musk (0.1.0)
5
5
  gli (~> 2.9)
6
6
  taglib-ruby (~> 0.6)
7
7
 
@@ -21,6 +21,12 @@ GEM
21
21
  celluloid (>= 0.15.0)
22
22
  nio4r (>= 0.5.0)
23
23
  coderay (1.1.0)
24
+ coveralls (0.7.0)
25
+ multi_json (~> 1.3)
26
+ rest-client
27
+ simplecov (>= 0.7)
28
+ term-ansicolor
29
+ thor
24
30
  diff-lcs (1.2.5)
25
31
  docile (1.1.3)
26
32
  factory_girl (4.4.0)
@@ -45,6 +51,7 @@ GEM
45
51
  rb-inotify (>= 0.9)
46
52
  lumberjack (1.0.5)
47
53
  method_source (0.8.2)
54
+ mime-types (2.2)
48
55
  minitest (4.7.5)
49
56
  multi_json (1.9.2)
50
57
  nio4r (1.0.0)
@@ -55,6 +62,8 @@ GEM
55
62
  rb-fsevent (0.9.4)
56
63
  rb-inotify (0.9.3)
57
64
  ffi (>= 0.5.0)
65
+ rest-client (1.6.7)
66
+ mime-types (>= 1.16)
58
67
  rspec (2.14.1)
59
68
  rspec-core (~> 2.14.0)
60
69
  rspec-expectations (~> 2.14.0)
@@ -70,16 +79,20 @@ GEM
70
79
  simplecov-html (0.8.0)
71
80
  slop (3.5.0)
72
81
  taglib-ruby (0.6.0)
82
+ term-ansicolor (1.3.0)
83
+ tins (~> 1.0)
73
84
  thor (0.19.0)
74
85
  thread_safe (0.3.1)
75
86
  atomic (>= 1.1.7, < 2)
76
87
  timers (1.1.0)
88
+ tins (1.0.1)
77
89
  tzinfo (0.3.39)
78
90
 
79
91
  PLATFORMS
80
92
  ruby
81
93
 
82
94
  DEPENDENCIES
95
+ coveralls (~> 0.7)
83
96
  factory_girl (~> 4.4)
84
97
  guard (~> 2.5)
85
98
  guard-rspec (~> 4.2)
data/README.md CHANGED
@@ -1,12 +1,28 @@
1
1
  ## Musk
2
2
 
3
+ [![Build Status](https://travis-ci.org/pempel/musk.svg?branch=master)](https://travis-ci.org/pempel/musk)
4
+ [![Coverage Status](https://coveralls.io/repos/pempel/musk/badge.png?branch=master)](https://coveralls.io/r/pempel/musk?branch=master)
5
+ [![Gem Version](https://badge.fury.io/rb/musk.png)](http://badge.fury.io/rb/musk)
6
+
3
7
  Use musk to impart the demonic scent of musk to your music.
4
8
  Musk allows you to extract tags from MP3 files and perfume MP3 files
5
9
  with fragrant tags.
6
10
 
7
11
  ## Installation
8
12
 
9
- Manually from RubyGems.org:
13
+ If you're on Ubuntu, you need to have the following packages
14
+ that `musk` depends on: ruby-dev and libtag1-dev. To install
15
+ these dependencies, you can use:
16
+
17
+ sudo apt-get update
18
+ sudo apt-get install ruby-dev libtag1-dev
19
+
20
+ If you're on Mac OS X, you can use:
21
+
22
+ brew update
23
+ brew install taglib
24
+
25
+ When you have all the necessary dependencies, you can use:
10
26
 
11
27
  gem install musk
12
28
 
@@ -75,8 +91,6 @@ several commands together. For example,
75
91
 
76
92
  ## License
77
93
 
78
- (The MIT license)
79
-
80
94
  Copyright (c) 2014 Eugene Pempel
81
95
 
82
96
  Permission is hereby granted, free of charge, to any person obtaining a copy
data/lib/musk/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Musk
2
- VERSION = "0.0.5"
2
+ VERSION = "0.1.0"
3
3
  end
data/musk.gemspec CHANGED
@@ -27,4 +27,5 @@ Gem::Specification.new do |s|
27
27
  s.add_development_dependency "guard-rspec", "~> 4.2"
28
28
  s.add_development_dependency "factory_girl", "~> 4.4"
29
29
  s.add_development_dependency "simplecov", "~> 0.8"
30
+ s.add_development_dependency "coveralls", "~> 0.7"
30
31
  end
data/spec/spec_helper.rb CHANGED
@@ -5,6 +5,11 @@ SimpleCov.start do
5
5
  add_filter "spec/"
6
6
  end
7
7
 
8
+ if ENV["TRAVIS"]
9
+ require "coveralls"
10
+ Coveralls.wear!
11
+ end
12
+
8
13
  ENV["MUSK_TRACKS_PATH"] = File.expand_path("../support/tracks", __FILE__)
9
14
 
10
15
  require "factory_girl"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: musk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eugene Pempel
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-03-26 00:00:00.000000000 Z
11
+ date: 2014-03-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gli
@@ -122,6 +122,20 @@ dependencies:
122
122
  - - "~>"
123
123
  - !ruby/object:Gem::Version
124
124
  version: '0.8'
125
+ - !ruby/object:Gem::Dependency
126
+ name: coveralls
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: '0.7'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - "~>"
137
+ - !ruby/object:Gem::Version
138
+ version: '0.7'
125
139
  description: Extract tags from MP3 files and perfume MP3 files with fragrant tags.
126
140
  email: eugene.pempel@gmail.com
127
141
  executables:
@@ -130,6 +144,7 @@ extensions: []
130
144
  extra_rdoc_files: []
131
145
  files:
132
146
  - ".gitignore"
147
+ - ".travis.yml"
133
148
  - Gemfile
134
149
  - Gemfile.lock
135
150
  - Guardfile