data_miner 0.2.2 → 0.2.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/README.rdoc +1 -1
- data/Rakefile +1 -2
- data/VERSION +1 -1
- data/data_miner.gemspec +2 -1
- metadata +2 -2
data/README.rdoc
CHANGED
@@ -6,7 +6,7 @@ Mine remote data into your ActiveRecord models.
|
|
6
6
|
|
7
7
|
Put this in <tt>config/environment.rb</tt>:
|
8
8
|
|
9
|
-
config.gem '
|
9
|
+
config.gem 'data_miner'
|
10
10
|
|
11
11
|
You need to define <tt>mine_data</tt> blocks in your ActiveRecord models. For example, in <tt>app/models/country.rb</tt>:
|
12
12
|
|
data/Rakefile
CHANGED
@@ -14,8 +14,7 @@ begin
|
|
14
14
|
gem.require_path = "lib"
|
15
15
|
gem.files.include %w(lib/data_miner) unless gem.files.empty? # seems to fail once it's in the wild
|
16
16
|
gem.rdoc_options << '--line-numbers' << '--inline-source'
|
17
|
-
|
18
|
-
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
17
|
+
gem.rubyforge_project = "dataminer"
|
19
18
|
end
|
20
19
|
Jeweler::GemcutterTasks.new
|
21
20
|
Jeweler::RubyforgeTasks.new do |rubyforge|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.3
|
data/data_miner.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{data_miner}
|
8
|
-
s.version = "0.2.
|
8
|
+
s.version = "0.2.3"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Seamus Abshere", "Andy Rossmeissl"]
|
@@ -43,6 +43,7 @@ Gem::Specification.new do |s|
|
|
43
43
|
s.homepage = %q{http://github.com/seamusabshere/data_miner}
|
44
44
|
s.rdoc_options = ["--charset=UTF-8", "--line-numbers", "--inline-source"]
|
45
45
|
s.require_paths = ["lib"]
|
46
|
+
s.rubyforge_project = %q{dataminer}
|
46
47
|
s.rubygems_version = %q{1.3.5}
|
47
48
|
s.summary = %q{Mine remote data into your ActiveRecord models.}
|
48
49
|
s.test_files = [
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: data_miner
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Seamus Abshere
|
@@ -130,7 +130,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
130
130
|
version:
|
131
131
|
requirements: []
|
132
132
|
|
133
|
-
rubyforge_project:
|
133
|
+
rubyforge_project: dataminer
|
134
134
|
rubygems_version: 1.3.5
|
135
135
|
signing_key:
|
136
136
|
specification_version: 3
|