mp3file 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore ADDED
@@ -0,0 +1,4 @@
1
+ pkg/*
2
+ *.gem
3
+ .bundle
4
+ .DS_Store
data/.rvmrc ADDED
@@ -0,0 +1 @@
1
+ rvm 1.9.2@mp3file
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in mp3file.gemspec
4
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,29 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ mp3file (0.0.1)
5
+ bindata
6
+
7
+ GEM
8
+ remote: http://rubygems.org/
9
+ specs:
10
+ bindata (1.4.1)
11
+ diff-lcs (1.1.2)
12
+ rake (0.9.2)
13
+ rspec (2.6.0)
14
+ rspec-core (~> 2.6.0)
15
+ rspec-expectations (~> 2.6.0)
16
+ rspec-mocks (~> 2.6.0)
17
+ rspec-core (2.6.4)
18
+ rspec-expectations (2.6.0)
19
+ diff-lcs (~> 1.1.2)
20
+ rspec-mocks (2.6.0)
21
+
22
+ PLATFORMS
23
+ ruby
24
+ x86-mingw32
25
+
26
+ DEPENDENCIES
27
+ mp3file!
28
+ rake
29
+ rspec
data/Rakefile ADDED
@@ -0,0 +1,25 @@
1
+ # -*- mode: ruby -*-
2
+
3
+ # Monkey-patch to fix the interaction of Rake and Bundler on Windows.
4
+ if Rake.application.rakefile_location =~ /:in `rakefile_location/
5
+ class Rake::Application
6
+ def rakefile_location
7
+ File.expand_path(File.basename(__FILE__))
8
+ end
9
+ end
10
+ end
11
+
12
+ require 'bundler'
13
+ require 'rspec/core/rake_task'
14
+
15
+ Bundler::GemHelper.install_tasks
16
+
17
+ RSpec::Core::RakeTask.new(:specs) do |t|
18
+ # Don't do color on Windows.
19
+ arch, platform = RUBY_PLATFORM.split('-')
20
+ if platform !~ /^mswin/ && platform !~ /^mingw/
21
+ t.rspec_opts = "--color"
22
+ end
23
+ end
24
+
25
+ task :default => :specs