pebbles_audio_files 1.0.2 → 1.0.3
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.
data/Rakefile
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.3
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
module PebblesAudioFiles::Models
|
|
2
2
|
|
|
3
3
|
module AudioClip
|
|
4
|
-
unloadable
|
|
5
4
|
def self.included(base)
|
|
6
5
|
base.send(:extend, ClassMethods)
|
|
7
6
|
base.send(:include, InstanceMethods)
|
|
8
7
|
base.class_eval do
|
|
9
|
-
|
|
8
|
+
unloadable
|
|
9
|
+
belongs_to :product
|
|
10
10
|
end
|
|
11
11
|
end
|
|
12
12
|
|
data/pebbles_audio_files.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
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.3"
|
|
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"]
|
|
12
|
-
s.date = %q{2010-09-
|
|
12
|
+
s.date = %q{2010-09-27}
|
|
13
13
|
s.description = %q{See summary}
|
|
14
14
|
s.email = %q{dev@entryway.net}
|
|
15
15
|
s.files = [
|
|
@@ -19,11 +19,11 @@ Gem::Specification.new do |s|
|
|
|
19
19
|
"generators/pebbles_audio_files/pebbles_audio_files_generator.rb",
|
|
20
20
|
"generators/pebbles_audio_files/templates/audio_clip.rb",
|
|
21
21
|
"generators/pebbles_audio_files/templates/migrations/create_audio_clips.rb",
|
|
22
|
+
"lib/pebbles_audio_files.rb",
|
|
22
23
|
"lib/pebbles_audio_files/models/audio_clip.rb",
|
|
23
24
|
"lib/pebbles_audio_files/models/product.rb",
|
|
24
25
|
"lib/pebbles_audio_files/tasks.rb",
|
|
25
26
|
"pebbles_audio_files.gemspec",
|
|
26
|
-
"pebbles_audio_files.rb",
|
|
27
27
|
"rails/init.rb"
|
|
28
28
|
]
|
|
29
29
|
s.homepage = %q{http://github.com/entryway/pebbles_audio_files}
|
data/rails/init.rb
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
require File.expand_path(File.dirname(__FILE__) + "/../pebbles_audio_files")
|
|
1
|
+
#require File.expand_path(File.dirname(__FILE__) + "/../pebbles_audio_files")
|
|
2
|
+
require 'pebbles_audio_files'
|
|
2
3
|
require 'rails_generator'
|
|
3
4
|
Dir[File.dirname(__FILE__) + 'generators/**/*.rb'].each {|file| require file}
|
|
4
|
-
|
|
5
|
-
Product.send(:include, PebblesAudioFiles::Models::Product)
|
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: 17
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 1.0.
|
|
9
|
+
- 3
|
|
10
|
+
version: 1.0.3
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Ryan Smith
|
|
@@ -16,7 +16,7 @@ autorequire:
|
|
|
16
16
|
bindir: bin
|
|
17
17
|
cert_chain: []
|
|
18
18
|
|
|
19
|
-
date: 2010-09-
|
|
19
|
+
date: 2010-09-27 00:00:00 -04:00
|
|
20
20
|
default_executable:
|
|
21
21
|
dependencies: []
|
|
22
22
|
|
|
@@ -35,11 +35,11 @@ files:
|
|
|
35
35
|
- generators/pebbles_audio_files/pebbles_audio_files_generator.rb
|
|
36
36
|
- generators/pebbles_audio_files/templates/audio_clip.rb
|
|
37
37
|
- generators/pebbles_audio_files/templates/migrations/create_audio_clips.rb
|
|
38
|
+
- lib/pebbles_audio_files.rb
|
|
38
39
|
- lib/pebbles_audio_files/models/audio_clip.rb
|
|
39
40
|
- lib/pebbles_audio_files/models/product.rb
|
|
40
41
|
- lib/pebbles_audio_files/tasks.rb
|
|
41
42
|
- pebbles_audio_files.gemspec
|
|
42
|
-
- pebbles_audio_files.rb
|
|
43
43
|
- rails/init.rb
|
|
44
44
|
has_rdoc: true
|
|
45
45
|
homepage: http://github.com/entryway/pebbles_audio_files
|