mongoid_rails_migrations 0.0.13 → 0.0.14
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/Gemfile +1 -1
- data/Gemfile.lock +1 -1
- data/Rakefile +1 -1
- data/lib/mongoid_rails_migrations.rb +1 -1
- data/mongoid_rails_migrations.gemspec +1 -1
- data/test/helper.rb +2 -3
- metadata +1 -1
data/Gemfile
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
source "http://rubygems.org"
|
|
2
2
|
|
|
3
3
|
# Specify your gem's dependencies in gem_test.gemspec
|
|
4
|
-
gemspec :development_group => :
|
|
4
|
+
gemspec :development_group => :development_mongoid_rails_migrations
|
|
5
5
|
gemspec :test_group => :test_mongoid_rails_migrations
|
|
6
6
|
gemspec :name => 'mongoid_rails_migrations'
|
data/Gemfile.lock
CHANGED
data/Rakefile
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.platform = Gem::Platform::RUBY
|
|
3
3
|
s.name = 'mongoid_rails_migrations'
|
|
4
|
-
s.version = '0.0.
|
|
4
|
+
s.version = '0.0.14'
|
|
5
5
|
s.summary = 'Data migrations for Mongoid in Active Record style, minus column input.'
|
|
6
6
|
s.description = 'Migrations for the migrator.'
|
|
7
7
|
|
data/test/helper.rb
CHANGED
|
@@ -2,15 +2,14 @@ $:.unshift(File.dirname(__FILE__)) unless
|
|
|
2
2
|
$:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
|
|
3
3
|
|
|
4
4
|
require 'bundler/setup'
|
|
5
|
-
Bundler.require(:
|
|
6
|
-
Bundler.require(:test)
|
|
5
|
+
Bundler.require(:development_mongoid_rails_migrations)
|
|
7
6
|
|
|
8
7
|
require 'config'
|
|
9
8
|
require 'test/unit'
|
|
10
9
|
|
|
11
10
|
require 'rake'
|
|
12
11
|
require 'rake/testtask'
|
|
13
|
-
require '
|
|
12
|
+
require 'rdoc/task'
|
|
14
13
|
|
|
15
14
|
# leave out active_record, in favor of a monogo adapter
|
|
16
15
|
%w(
|