pebbles_audio_files 1.0.3 → 1.0.5
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/pebbles_audio_files.rb +3 -3
- data/lib/pebbles_audio_files/models/audio_clip.rb +0 -1
- data/lib/pebbles_audio_files/models/product.rb +0 -1
- data/pebbles_audio_files.gemspec +3 -1
- data/pkg/pebbles_audio_files-1.0.3.gem +0 -0
- data/pkg/pebbles_audio_files-1.0.4.gem +0 -0
- data/rails/init.rb +5 -3
- metadata +5 -3
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.5
|
data/lib/pebbles_audio_files.rb
CHANGED
@@ -1,3 +1,3 @@
|
|
1
|
-
|
2
|
-
Dir[File.dirname(__FILE__) + '
|
3
|
-
|
1
|
+
module PebblesAudioFiles
|
2
|
+
Dir[File.dirname(__FILE__) + 'pebbles_audio_files/**/*.rb'].each {|file| require file}
|
3
|
+
end
|
data/pebbles_audio_files.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{pebbles_audio_files}
|
8
|
-
s.version = "1.0.
|
8
|
+
s.version = "1.0.5"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Ryan Smith", "Bobby Wilson"]
|
@@ -24,6 +24,8 @@ Gem::Specification.new do |s|
|
|
24
24
|
"lib/pebbles_audio_files/models/product.rb",
|
25
25
|
"lib/pebbles_audio_files/tasks.rb",
|
26
26
|
"pebbles_audio_files.gemspec",
|
27
|
+
"pkg/pebbles_audio_files-1.0.3.gem",
|
28
|
+
"pkg/pebbles_audio_files-1.0.4.gem",
|
27
29
|
"rails/init.rb"
|
28
30
|
]
|
29
31
|
s.homepage = %q{http://github.com/entryway/pebbles_audio_files}
|
Binary file
|
Binary file
|
data/rails/init.rb
CHANGED
@@ -1,4 +1,6 @@
|
|
1
|
-
#require File.expand_path(File.dirname(__FILE__) + "/../pebbles_audio_files")
|
2
|
-
require 'pebbles_audio_files'
|
3
|
-
require 'rails_generator'
|
4
1
|
Dir[File.dirname(__FILE__) + 'generators/**/*.rb'].each {|file| require file}
|
2
|
+
|
3
|
+
config.to_prepare do
|
4
|
+
require_dependency 'pebbles_audio_files'
|
5
|
+
Product.send(:include, PebblesAudioFiles::Models::Product)
|
6
|
+
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pebbles_audio_files
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 29
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 1.0.
|
9
|
+
- 5
|
10
|
+
version: 1.0.5
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Ryan Smith
|
@@ -40,6 +40,8 @@ files:
|
|
40
40
|
- lib/pebbles_audio_files/models/product.rb
|
41
41
|
- lib/pebbles_audio_files/tasks.rb
|
42
42
|
- pebbles_audio_files.gemspec
|
43
|
+
- pkg/pebbles_audio_files-1.0.3.gem
|
44
|
+
- pkg/pebbles_audio_files-1.0.4.gem
|
43
45
|
- rails/init.rb
|
44
46
|
has_rdoc: true
|
45
47
|
homepage: http://github.com/entryway/pebbles_audio_files
|