slurp 0.0.3 → 0.1

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/.gitignore CHANGED
@@ -2,6 +2,7 @@
2
2
  *.rbc
3
3
  .bundle
4
4
  .config
5
+ .rvmrc
5
6
  .yardoc
6
7
  Gemfile.lock
7
8
  InstalledFiles
@@ -11,7 +11,9 @@ module Slurp
11
11
 
12
12
  config.after_initialize do
13
13
  if Rails.configuration.database_configuration[Rails.env]['database'] == ':memory:'
14
- load "#{Rails.root}/db/schema.rb"
14
+ ActiveRecord::Migration.suppress_messages do
15
+ load "#{Rails.root}/db/schema.rb"
16
+ end
15
17
  end
16
18
  end
17
19
  end
@@ -1,3 +1,3 @@
1
1
  module Slurp
2
- VERSION = "0.0.3"
2
+ VERSION = "0.1"
3
3
  end
@@ -13,6 +13,7 @@ Gem::Specification.new do |gem|
13
13
  gem.homepage = "http://github.com/vaskas/slurp"
14
14
 
15
15
  gem.files = `git ls-files`.split($/)
16
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
16
17
 
17
18
  gem.add_dependency 'rails'
18
19
  gem.add_dependency 'sqlite3'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: slurp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: '0.1'
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-09-14 00:00:00.000000000 Z
12
+ date: 2012-11-30 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -67,7 +67,6 @@ extensions: []
67
67
  extra_rdoc_files: []
68
68
  files:
69
69
  - .gitignore
70
- - .rvmrc
71
70
  - Gemfile
72
71
  - LICENSE.txt
73
72
  - README.md
data/.rvmrc DELETED
@@ -1 +0,0 @@
1
- rvm use 1.9.3-p194-perf@slurp --create