active_wrapper 0.2.3 → 0.2.4

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -14,8 +14,8 @@ end
14
14
  desc "Install gem"
15
15
  task :install do
16
16
  Rake::Task['gem'].invoke
17
- `sudo gem uninstall #{GEM_NAME} -x`
18
- `sudo gem install pkg/#{GEM_NAME}*.gem`
17
+ `gem uninstall #{GEM_NAME} -x`
18
+ `gem install pkg/#{GEM_NAME}*.gem`
19
19
  `rm -Rf pkg`
20
20
  end
21
21
 
data/gemspec.rb CHANGED
@@ -19,5 +19,5 @@ GEM_SPEC = Gem::Specification.new do |s|
19
19
  s.name = GEM_NAME
20
20
  s.platform = Gem::Platform::RUBY
21
21
  s.require_path = "lib"
22
- s.version = "0.2.3"
22
+ s.version = "0.2.4"
23
23
  end
@@ -7,6 +7,7 @@ gem 'activerecord', '=2.3.5'
7
7
  gem 'actionmailer', '=2.3.5'
8
8
  require 'active_record'
9
9
  require 'action_mailer'
10
+ require 'fileutils'
10
11
  require 'logger'
11
12
  require 'yaml'
12
13
 
@@ -10,7 +10,7 @@ describe ActiveWrapper::Db do
10
10
  end
11
11
 
12
12
  it "should set instance variables" do
13
- $mail.base.should == '/Users/winton/Sites/repositories/active/active_wrapper/spec/example_project'
13
+ $mail.base.should =~ %r{active_wrapper/spec/example_project}
14
14
  $mail.config.should == {
15
15
  :smtp => {
16
16
  :address => "smtp.gmail.com",
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_wrapper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Winton Welsh
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2010-01-18 00:00:00 -08:00
12
+ date: 2010-02-23 00:00:00 -08:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency