Skip to content

Commit

Permalink
Replace Faker with ffaker to fix problems with i18n. [#53]
Browse files Browse the repository at this point in the history
  • Loading branch information
marnen committed Sep 2, 2011
1 parent 6cc4ab4 commit be4fe8f
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Expand Up @@ -25,5 +25,5 @@ group :test do
gem "cucumber", "~> 0.3.101", :require => false
gem 'webrat', '>= 0.4.3', :require => false
gem 'machinist', '>= 1.0.3'
gem 'faker'
gem 'ffaker'
end
6 changes: 2 additions & 4 deletions Gemfile.lock
Expand Up @@ -28,12 +28,10 @@ GEM
term-ansicolor (>= 1.0.3)
treetop (>= 1.4.2)
diff-lcs (1.1.3)
faker (0.9.5)
i18n (~> 0.4)
fast_gettext (0.4.17)
ffaker (1.8.1)
gettext (2.0.0)
haml (3.0.25)
i18n (0.6.0)
linecache (0.46)
rbx-require-relative (> 0.0.4)
machinist (1.0.6)
Expand Down Expand Up @@ -84,8 +82,8 @@ DEPENDENCIES
autotest
autotest-rails
cucumber (~> 0.3.101)
faker
fast_gettext
ffaker
gettext (>= 1.9.3)
haml
machinist (>= 1.0.3)
Expand Down
2 changes: 1 addition & 1 deletion config/environments/test.rb
Expand Up @@ -29,4 +29,4 @@

# For Machinist...
config.gem 'machinist', :version => ">=1.0.3"
config.gem 'faker'
config.gem 'ffaker'
2 changes: 1 addition & 1 deletion spec/blueprints.rb
@@ -1,7 +1,7 @@
# Object blueprints for Machinist.
require 'machinist/active_record'
require 'sham'
require 'faker'
require 'ffaker'
LETTERS = ('A'..'Z').to_a

Event.blueprint do
Expand Down
2 changes: 1 addition & 1 deletion vendor/plugins/acts_as_addressed/spec/blueprints.rb
@@ -1,7 +1,7 @@
# Object blueprints for Machinist.
require 'machinist/active_record'
require 'sham'
require 'faker'
require 'ffaker'
LETTERS = ('A'..'Z').to_a

module Acts::Addressed
Expand Down

0 comments on commit be4fe8f

Please sign in to comment.