blueberry_rails 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aceaa989907d6d092b3d7b8cf8fd4d8400b39f39
|
4
|
+
data.tar.gz: 1baecd9200ff8c1670d38a5a9840af60aa556ff3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 206663769012fcbacdcd74ea5185e262321c54323baed5f43753269eaf9b0cb790492bf191ac2f93ed384022d7618dab3e4fd0ba90439bb499eed2b2684aa8a3
|
7
|
+
data.tar.gz: 071919e567014ebd0292a14d143c501d3f4477eff9b83d63e0d5114a20fc3123c2fbcea1a8d853528b5a92dc508b3502ad0ffa2f214286da11942216eb7f8877
|
@@ -84,7 +84,7 @@ module BlueberryRails
|
|
84
84
|
|
85
85
|
def setup_rspec_support_files
|
86
86
|
copy_file 'factory_girl_syntax.rb', 'spec/support/factory_girl.rb'
|
87
|
-
copy_file 'database_cleaner_setup.rb', 'spec/support/
|
87
|
+
copy_file 'database_cleaner_setup.rb', 'spec/support/database_cleaner.rb'
|
88
88
|
end
|
89
89
|
|
90
90
|
def init_guard
|
@@ -167,7 +167,7 @@ module BlueberryRails
|
|
167
167
|
[ 'app/views/pages',
|
168
168
|
'spec/lib',
|
169
169
|
'spec/controllers',
|
170
|
-
'spec/
|
170
|
+
'spec/features',
|
171
171
|
'spec/support/matchers',
|
172
172
|
'spec/support/mixins',
|
173
173
|
'spec/support/shared_examples' ].each do |dir|
|
@@ -20,8 +20,9 @@ group :development do
|
|
20
20
|
gem 'capistrano-bundler'
|
21
21
|
gem 'capistrano-rails'
|
22
22
|
gem 'capistrano-rbenv', github: 'capistrano/rbenv'
|
23
|
-
gem 'guard-
|
23
|
+
gem 'guard-rspec'
|
24
24
|
gem 'mailcatcher'
|
25
|
+
gem 'pry-rails'
|
25
26
|
end
|
26
27
|
|
27
28
|
group :development, :test do
|
@@ -34,7 +35,7 @@ group :staging, :production do
|
|
34
35
|
end
|
35
36
|
|
36
37
|
group :test do
|
37
|
-
gem '
|
38
|
+
gem 'poltergeist', '>= 1.4.0'
|
38
39
|
gem 'database_cleaner'
|
39
40
|
gem 'simplecov', require: false
|
40
41
|
end
|
data/templates/spec_helper.rb
CHANGED
@@ -6,6 +6,7 @@ ENV['RAILS_ENV'] = 'test'
|
|
6
6
|
require File.expand_path('../../config/environment', __FILE__)
|
7
7
|
|
8
8
|
require 'rspec/rails'
|
9
|
+
require 'capybara/poltergeist'
|
9
10
|
|
10
11
|
Dir[Rails.root.join('spec/support/**/*.rb')].each { |file| require file }
|
11
12
|
|
@@ -20,5 +21,5 @@ RSpec.configure do |config|
|
|
20
21
|
config.use_transactional_fixtures = false
|
21
22
|
end
|
22
23
|
|
23
|
-
Capybara.javascript_driver = :
|
24
|
+
Capybara.javascript_driver = :poltergeist
|
24
25
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: blueberry_rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- BlueberryApps
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-
|
11
|
+
date: 2013-11-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|