tobinibot-acts_as_amazing 0.0.1 → 0.0.2
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/acts_as_amazing.gemspec +2 -2
- data/lib/acts_as_amazing.rb +6 -1
- data/lib/acts_as_amazing/base.rb +9 -0
- metadata +2 -1
data/acts_as_amazing.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = "acts_as_amazing"
|
3
|
-
s.version = "0.0.
|
3
|
+
s.version = "0.0.2"
|
4
4
|
s.date = "2008-07-16"
|
5
5
|
s.summary = "test gem"
|
6
6
|
s.email = "tobinibot@gmail.com"
|
@@ -8,7 +8,7 @@ Gem::Specification.new do |s|
|
|
8
8
|
s.description = "acts_as_amazing is just a little gem I'm playing with to learn about creating gems"
|
9
9
|
s.has_rdoc = false
|
10
10
|
s.authors = ["Tobin Juday"]
|
11
|
-
s.files = ["History.txt", "Manifest.txt", "README.txt", "Rakefile", "acts_as_amazing.gemspec", "lib/acts_as_amazing.rb", "lib/acts_as_amazing/version.rb", "test/test_acts_as_amazing.rb", "test/test_helper.rb"]
|
11
|
+
s.files = ["History.txt", "Manifest.txt", "README.txt", "Rakefile", "acts_as_amazing.gemspec", "lib/acts_as_amazing.rb", "lib/acts_as_amazing/version.rb", "lib/acts_as_amazing/base.rb", "test/test_acts_as_amazing.rb", "test/test_helper.rb"]
|
12
12
|
s.test_files = ["test/test_acts_as_amazing.rb", "test/test_helper.rb"]
|
13
13
|
s.rdoc_options = ["--main", "README.txt"]
|
14
14
|
s.extra_rdoc_files = ["History.txt", "Manifest.txt", "README.txt"]
|
data/lib/acts_as_amazing.rb
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
$:.unshift(File.dirname(__FILE__)) unless
|
2
2
|
$:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
|
3
3
|
|
4
|
+
require 'activerecord'
|
5
|
+
|
4
6
|
module ActsAsAmazing
|
5
7
|
|
6
|
-
end
|
8
|
+
end
|
9
|
+
|
10
|
+
require File.join(LIB_DIRECTORY, 'version')
|
11
|
+
require File.join(LIB_DIRECTORY, 'core')
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tobinibot-acts_as_amazing
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tobin Juday
|
@@ -31,6 +31,7 @@ files:
|
|
31
31
|
- acts_as_amazing.gemspec
|
32
32
|
- lib/acts_as_amazing.rb
|
33
33
|
- lib/acts_as_amazing/version.rb
|
34
|
+
- lib/acts_as_amazing/base.rb
|
34
35
|
- test/test_acts_as_amazing.rb
|
35
36
|
- test/test_helper.rb
|
36
37
|
has_rdoc: false
|