spree-faq 2.0.0 → 2.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.
- checksums.yaml +4 -4
- data/.gitignore +2 -1
- data/.hound.yml +22 -0
- data/.reek +19 -0
- data/.rspec +3 -1
- data/.rubocop.yml +7 -0
- data/CONTRIBUTING.md +1 -1
- data/README.md +10 -4
- data/app/models/spree/question.rb +7 -5
- data/app/models/spree/question_category.rb +9 -7
- data/app/overrides/add_faq_admin_tab.rb +4 -4
- data/db/migrate/20140331032743_rename_questions_to_spree_questions.rb +1 -1
- data/db/migrate/20140331032751_rename_question_categories_to_spree_question_categories.rb +1 -1
- data/lib/spree_faq/engine.rb +8 -9
- data/lib/spree_faq/version.rb +2 -2
- data/spec/controllers/admin/question_categories_controller_spec.rb +3 -5
- data/spec/controllers/faqs_controller_spec.rb +3 -5
- data/spec/features/admin/faq_spec.rb +5 -5
- data/spec/features/faq_spec.rb +5 -5
- data/spec/models/question_category_spec.rb +7 -11
- data/spec/models/question_spec.rb +18 -19
- data/spec/spec_helper.rb +6 -2
- data/spec/support/capybara.rb +1 -5
- data/spec/support/database_cleaner.rb +2 -2
- data/spec/support/factory_girl.rb +1 -1
- data/spec/support/i18n.rb +4 -4
- data/spec/support/spree.rb +1 -1
- data/spec/translations/locale_spec.rb +8 -10
- data/spree_faq.gemspec +11 -12
- metadata +16 -28
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3f6a7b7d6da88b41b20c88f28c3473da4b6ec84b
|
4
|
+
data.tar.gz: 6fbbff0bd6ad2b6ca474f78e66093ca1c7488f00
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 496d7ad119fac54d159c4a56a81d465e534053e4a73138191d47cf6a84d0cde81bda43141dcb21e73863604998bebed5ee2249cfcd8a2b2eddca909d024aca41
|
7
|
+
data.tar.gz: 7b4f76fbc80c5b5339b7eb3dd43720137909c93b155da642865b23ed9f2805752993a08be4a3fc7a213b72330f22b89925df5128411b625381d4783e3859c168
|
data/.gitignore
CHANGED
data/.hound.yml
CHANGED
@@ -1,3 +1,25 @@
|
|
1
1
|
---
|
2
|
+
# Too picky.
|
2
3
|
LineLength:
|
3
4
|
Enabled: false
|
5
|
+
|
6
|
+
# This should truly be on for well documented gems.
|
7
|
+
Documentation:
|
8
|
+
Enabled: false
|
9
|
+
|
10
|
+
# Neatly aligned code is to swell.
|
11
|
+
SingleSpaceBeforeFirstArg:
|
12
|
+
Enabled: false
|
13
|
+
|
14
|
+
# Rubocop default is leading but hound-ci use trailing.
|
15
|
+
DotPosition:
|
16
|
+
EnforcedStyle: leading
|
17
|
+
|
18
|
+
# Don't mess with RSpec DSL.
|
19
|
+
Blocks:
|
20
|
+
Exclude:
|
21
|
+
- 'spec/**/*'
|
22
|
+
|
23
|
+
# We really like the readability with newline in beginning of classes.
|
24
|
+
EmptyLinesAroundBody:
|
25
|
+
Enabled: false
|
data/.reek
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
---
|
2
|
+
UncommunicativeVariableName:
|
3
|
+
accept:
|
4
|
+
- t
|
5
|
+
- c
|
6
|
+
NestedIterators:
|
7
|
+
max_allowed_nesting: 2
|
8
|
+
DuplicateMethodCall:
|
9
|
+
enabled: false
|
10
|
+
IrresponsibleModule:
|
11
|
+
enabled: false
|
12
|
+
FeatureEnvy:
|
13
|
+
enabled: false
|
14
|
+
TooManyMethods:
|
15
|
+
enabled: false
|
16
|
+
TooManyStatements:
|
17
|
+
enabled: false
|
18
|
+
UtilityFunction:
|
19
|
+
enabled: false
|
data/.rspec
CHANGED
data/.rubocop.yml
ADDED
data/CONTRIBUTING.md
CHANGED
data/README.md
CHANGED
@@ -3,16 +3,22 @@
|
|
3
3
|
[](https://travis-ci.org/futhr/spree-faq)
|
4
4
|
[](https://coveralls.io/r/futhr/spree-faq)
|
5
5
|
[](https://codeclimate.com/github/futhr/spree-faq)
|
6
|
-
[](http://badge.fury.io/rb/spree-faq)
|
7
7
|
|
8
8
|
An Spree Commerce extension for managing FAQs.
|
9
9
|
|
10
10
|
## Installation
|
11
11
|
|
12
|
-
|
12
|
+
Add to your `Gemfile`:
|
13
13
|
|
14
14
|
```ruby
|
15
|
-
gem '
|
15
|
+
gem 'spree-faq', '~> 2.0.0', require: 'spree_faq'
|
16
|
+
```
|
17
|
+
|
18
|
+
or:
|
19
|
+
|
20
|
+
```ruby
|
21
|
+
gem 'spree-faq', github: 'futhr/spree-faq', require: 'spree_faq', branch: '2-0-stable'
|
16
22
|
```
|
17
23
|
|
18
24
|
Then run from the command line:
|
@@ -24,7 +30,7 @@ Then run from the command line:
|
|
24
30
|
|
25
31
|
## Contributing
|
26
32
|
|
27
|
-
See corresponding [
|
33
|
+
See corresponding [guidelines][1].
|
28
34
|
|
29
35
|
---
|
30
36
|
|
@@ -1,7 +1,9 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
module Spree
|
2
|
+
class Question < ActiveRecord::Base
|
3
|
+
acts_as_list
|
3
4
|
|
4
|
-
|
5
|
-
|
6
|
-
|
5
|
+
belongs_to :question_category, class_name: 'Spree::QuestionCategory'
|
6
|
+
validates :question_category_id, :question, :answer, presence: true
|
7
|
+
attr_accessible :question, :answer, :question_category_id, :question_category
|
8
|
+
end
|
7
9
|
end
|
@@ -1,9 +1,11 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
module Spree
|
2
|
+
class QuestionCategory < ActiveRecord::Base
|
3
|
+
acts_as_list
|
3
4
|
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
5
|
+
has_many :questions, class_name: 'Spree::Question'
|
6
|
+
validates :name, presence: true
|
7
|
+
validates :name, uniqueness: { case_sensitive: false }
|
8
|
+
accepts_nested_attributes_for :questions, allow_destroy: true
|
9
|
+
attr_accessible :name, :questions_attributes, :question, :answer
|
10
|
+
end
|
9
11
|
end
|
@@ -1,5 +1,5 @@
|
|
1
|
-
Deface::Override.new(virtual_path:
|
2
|
-
name:
|
3
|
-
insert_bottom:
|
4
|
-
text:
|
1
|
+
Deface::Override.new(virtual_path: 'spree/admin/shared/_configuration_menu',
|
2
|
+
name: 'add_faq_configuration_line',
|
3
|
+
insert_bottom: '[data-hook="admin_configurations_sidebar_menu"]',
|
4
|
+
text: '<%= configurations_sidebar_menu_item Spree.t(:question_categories_admin, scope: :spree_faq), admin_question_categories_url %>',
|
5
5
|
disabled: false)
|
data/lib/spree_faq/engine.rb
CHANGED
@@ -6,16 +6,15 @@ module SpreeFaq
|
|
6
6
|
|
7
7
|
config.autoload_paths += %W(#{config.root}/lib)
|
8
8
|
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
Rails.configuration.cache_classes ? require(c) : load(c)
|
9
|
+
class << self
|
10
|
+
def activate
|
11
|
+
cache_klasses = %W(#{config.root}/app/**/*_decorator*.rb #{config.root}/app/overrides/*.rb)
|
12
|
+
Dir.glob(cache_klasses) do |klass|
|
13
|
+
Rails.configuration.cache_classes ? require(klass) : load(klass)
|
14
|
+
end
|
16
15
|
end
|
17
16
|
end
|
18
17
|
|
19
|
-
config.to_prepare
|
18
|
+
config.to_prepare(&method(:activate).to_proc)
|
20
19
|
end
|
21
|
-
end
|
20
|
+
end
|
data/lib/spree_faq/version.rb
CHANGED
@@ -1,18 +1,16 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
describe Spree::Admin::QuestionCategoriesController do
|
1
|
+
RSpec.describe Spree::Admin::QuestionCategoriesController, type: :controller do
|
4
2
|
stub_authorization!
|
5
3
|
|
6
4
|
let!(:user) { create(:user) }
|
7
5
|
let!(:question_category) { create(:question_category) }
|
8
6
|
let!(:question) { create(:question, question_category: question_category) }
|
9
|
-
let
|
7
|
+
let(:attributes) { attributes_for(:question_category) }
|
10
8
|
|
11
9
|
before { controller.stub spree_current_user: user }
|
12
10
|
|
13
11
|
context 'controller instance' do
|
14
12
|
it 'use Admin::QuestionCategoriesController' do
|
15
|
-
expect(controller).to
|
13
|
+
expect(controller).to be_a Spree::Admin::QuestionCategoriesController
|
16
14
|
end
|
17
15
|
end
|
18
16
|
|
@@ -1,11 +1,9 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
describe Spree::FaqsController do
|
1
|
+
RSpec.describe Spree::FaqsController, type: :controller do
|
4
2
|
|
5
3
|
let!(:question_category) { create(:question_category) }
|
6
4
|
let!(:question) { create(:question, question_category: question_category) }
|
7
5
|
|
8
|
-
before { controller.
|
6
|
+
before { allow(controller).to receive(:try_spree_current_user) }
|
9
7
|
|
10
8
|
context '#index' do
|
11
9
|
specify do
|
@@ -22,7 +20,7 @@ describe Spree::FaqsController do
|
|
22
20
|
end
|
23
21
|
|
24
22
|
context '#default_title' do
|
25
|
-
it '
|
23
|
+
it 'returns default title' do
|
26
24
|
expect(subject.default_title).to eq Spree.t(:frequently_asked_questions, scope: :spree_faq)
|
27
25
|
end
|
28
26
|
end
|
@@ -1,6 +1,4 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
feature 'Admin FAQ', :js do
|
1
|
+
RSpec.feature 'Admin FAQ', :js do
|
4
2
|
stub_authorization!
|
5
3
|
|
6
4
|
given!(:admin_user) { create(:admin_user) }
|
@@ -39,10 +37,12 @@ feature 'Admin FAQ', :js do
|
|
39
37
|
|
40
38
|
given!(:question_category) { create(:question_category, name: 'Shopping') }
|
41
39
|
given!(:question) do
|
42
|
-
create(
|
40
|
+
create(
|
41
|
+
:question,
|
43
42
|
question_category: question_category,
|
44
43
|
question: 'Do you sell stuff?',
|
45
|
-
answer: 'Think so..'
|
44
|
+
answer: 'Think so..'
|
45
|
+
)
|
46
46
|
end
|
47
47
|
|
48
48
|
background do
|
data/spec/features/faq_spec.rb
CHANGED
@@ -1,14 +1,14 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
feature 'FAQ', :js do
|
1
|
+
RSpec.feature 'FAQ', :js do
|
4
2
|
|
5
3
|
given!(:user) { create(:user) }
|
6
4
|
given!(:question_category) { create(:question_category, name: 'Shopping') }
|
7
5
|
given!(:question) do
|
8
|
-
create(
|
6
|
+
create(
|
7
|
+
:question,
|
9
8
|
question_category: question_category,
|
10
9
|
question: 'Do you sell stuff?',
|
11
|
-
answer: 'Think so..'
|
10
|
+
answer: 'Think so..'
|
11
|
+
)
|
12
12
|
end
|
13
13
|
|
14
14
|
background do
|
@@ -1,6 +1,4 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
describe Spree::QuestionCategory do
|
1
|
+
RSpec.describe Spree::QuestionCategory, type: :model do
|
4
2
|
|
5
3
|
context 'instance attributes' do
|
6
4
|
it 'create a new instance given valid attributes' do
|
@@ -8,14 +6,12 @@ describe Spree::QuestionCategory do
|
|
8
6
|
end
|
9
7
|
end
|
10
8
|
|
11
|
-
|
12
|
-
|
13
|
-
expect(build(:question_category)).to be_valid
|
14
|
-
end
|
9
|
+
it 'factory is valid' do
|
10
|
+
expect(build(:question_category)).to be_valid
|
15
11
|
end
|
16
12
|
|
17
13
|
context 'relation' do
|
18
|
-
it {
|
14
|
+
it { is_expected.to have_many(:questions) }
|
19
15
|
|
20
16
|
it 'have questions' do
|
21
17
|
expect(subject.questions).not_to be_nil
|
@@ -23,9 +19,9 @@ describe Spree::QuestionCategory do
|
|
23
19
|
end
|
24
20
|
|
25
21
|
context 'validation' do
|
26
|
-
it {
|
27
|
-
it {
|
28
|
-
it {
|
22
|
+
it { is_expected.to validate_presence_of(:name) }
|
23
|
+
it { is_expected.to validate_uniqueness_of(:name) }
|
24
|
+
it { is_expected.to accept_nested_attributes_for(:questions) }
|
29
25
|
end
|
30
26
|
|
31
27
|
context 'mass assignment' do
|
@@ -1,20 +1,16 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
describe Spree::Question do
|
1
|
+
RSpec.describe Spree::Question, type: :model do
|
4
2
|
|
5
3
|
let!(:question_category) { create(:question_category) }
|
6
4
|
let(:question) { create(:question, question_category_id: question_category.id) }
|
7
5
|
|
8
6
|
subject { question }
|
9
7
|
|
10
|
-
|
11
|
-
|
12
|
-
expect(build(:question)).to be_valid
|
13
|
-
end
|
8
|
+
it 'factory is valid' do
|
9
|
+
expect(build(:question)).to be_valid
|
14
10
|
end
|
15
11
|
|
16
12
|
context 'instance attributes' do
|
17
|
-
it '
|
13
|
+
it 'creates a new instance given valid attributes' do
|
18
14
|
described_class.create!(question: 'Question 1',
|
19
15
|
answer: 'Answer 1',
|
20
16
|
question_category: create(:question_category))
|
@@ -22,31 +18,34 @@ describe Spree::Question do
|
|
22
18
|
end
|
23
19
|
|
24
20
|
context 'relation' do
|
25
|
-
it {
|
21
|
+
it { is_expected.to belong_to(:question_category) }
|
26
22
|
|
27
|
-
it '
|
23
|
+
it 'belongs to a category' do
|
28
24
|
expect(subject.question_category).not_to be_nil
|
29
25
|
end
|
30
26
|
end
|
31
27
|
|
32
28
|
context 'validation' do
|
33
|
-
it {
|
34
|
-
it {
|
35
|
-
it {
|
29
|
+
it { is_expected.to validate_presence_of(:question_category_id) }
|
30
|
+
it { is_expected.to validate_presence_of(:question) }
|
31
|
+
it { is_expected.to validate_presence_of(:answer) }
|
36
32
|
|
37
|
-
it '
|
33
|
+
it 'requires a category' do
|
38
34
|
invalid_question = build(:question, question_category: nil)
|
39
|
-
expect(invalid_question).to
|
35
|
+
expect(invalid_question.valid?).to be_falsey
|
36
|
+
expect(invalid_question.errors[:question_category_id].size).to be(1)
|
40
37
|
end
|
41
38
|
|
42
|
-
it '
|
39
|
+
it 'requires a question' do
|
43
40
|
invalid_question = build(:question, question: nil)
|
44
|
-
expect(invalid_question).to
|
41
|
+
expect(invalid_question.valid?).to be_falsey
|
42
|
+
expect(invalid_question.errors[:question].size).to be(1)
|
45
43
|
end
|
46
44
|
|
47
|
-
it '
|
45
|
+
it 'requires a answer' do
|
48
46
|
invalid_question = build(:question, answer: nil)
|
49
|
-
expect(invalid_question).to
|
47
|
+
expect(invalid_question.valid?).to be_falsey
|
48
|
+
expect(invalid_question.errors[:answer].size).to be(1)
|
50
49
|
end
|
51
50
|
end
|
52
51
|
|
data/spec/spec_helper.rb
CHANGED
@@ -22,9 +22,13 @@ require 'shoulda-matchers'
|
|
22
22
|
require 'ffaker'
|
23
23
|
|
24
24
|
RSpec.configure do |config|
|
25
|
-
config.mock_with :rspec
|
25
|
+
config.mock_with :rspec do |mock|
|
26
|
+
mock.syntax = [:should, :expect]
|
27
|
+
end
|
28
|
+
|
26
29
|
config.use_transactional_fixtures = false
|
27
|
-
config.
|
30
|
+
config.infer_spec_type_from_file_location!
|
31
|
+
config.raise_errors_for_deprecations!
|
28
32
|
end
|
29
33
|
|
30
34
|
Dir[File.join(File.dirname(__FILE__), 'support/**/*.rb')].each { |f| require f }
|
data/spec/support/capybara.rb
CHANGED
@@ -2,11 +2,7 @@ require 'capybara/rspec'
|
|
2
2
|
require 'capybara/rails'
|
3
3
|
require 'capybara/poltergeist'
|
4
4
|
|
5
|
-
module CapybaraHelpers; end
|
6
|
-
|
7
5
|
RSpec.configure do |config|
|
8
|
-
config.include CapybaraHelpers, type: :feature
|
9
|
-
|
10
6
|
Capybara.javascript_driver = :poltergeist
|
11
7
|
|
12
8
|
config.before(:each, :js) do
|
@@ -14,4 +10,4 @@ RSpec.configure do |config|
|
|
14
10
|
page.driver.browser.manage.window.maximize
|
15
11
|
end
|
16
12
|
end
|
17
|
-
end
|
13
|
+
end
|
@@ -8,11 +8,11 @@ RSpec.configure do |config|
|
|
8
8
|
end
|
9
9
|
|
10
10
|
config.before do
|
11
|
-
DatabaseCleaner.strategy =
|
11
|
+
DatabaseCleaner.strategy = RSpec.current_example.metadata[:js] ? :truncation : :transaction
|
12
12
|
DatabaseCleaner.start
|
13
13
|
end
|
14
14
|
|
15
15
|
config.after do
|
16
16
|
DatabaseCleaner.clean
|
17
17
|
end
|
18
|
-
end
|
18
|
+
end
|
data/spec/support/i18n.rb
CHANGED
@@ -4,10 +4,10 @@ require 'i18n-spec'
|
|
4
4
|
RSpec.configure do |config|
|
5
5
|
|
6
6
|
config.after(type: :feature) do
|
7
|
-
|
8
|
-
if
|
9
|
-
puts "\e[1m\e[35mFound missing translations: #{
|
7
|
+
missing = page.body.scan(/translation missing: #{I18n.locale}\.(.*?)[\s<\"&]/)
|
8
|
+
if missing.any?
|
9
|
+
puts "\e[1m\e[35mFound missing translations: #{missing.inspect}\e[0m"
|
10
10
|
puts "\e[1m\e[35mIn spec: #{example.location}\e[0m"
|
11
11
|
end
|
12
12
|
end
|
13
|
-
end
|
13
|
+
end
|
data/spec/support/spree.rb
CHANGED
@@ -1,15 +1,13 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
describe 'locale' do
|
1
|
+
RSpec.describe 'locale' do
|
4
2
|
Dir.glob('config/locales/*.yml') do |locale_file|
|
5
3
|
context locale_file do
|
6
|
-
it {
|
7
|
-
it {
|
8
|
-
it {
|
9
|
-
it {
|
10
|
-
it {
|
11
|
-
it {
|
12
|
-
it {
|
4
|
+
it { is_expected.to be_parseable }
|
5
|
+
it { is_expected.to have_valid_pluralization_keys }
|
6
|
+
it { is_expected.not_to have_missing_pluralization_keys }
|
7
|
+
it { is_expected.to have_one_top_level_namespace }
|
8
|
+
it { is_expected.not_to have_legacy_interpolations }
|
9
|
+
it { is_expected.to have_a_valid_locale }
|
10
|
+
it { is_expected.to be_a_complete_translation_of 'config/locales/en.yml' }
|
13
11
|
end
|
14
12
|
end
|
15
13
|
end
|
data/spree_faq.gemspec
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
lib = File.expand_path('../lib/', __FILE__)
|
2
|
-
|
2
|
+
$LOAD_PATH.unshift lib unless $LOAD_PATH.include?(lib)
|
3
3
|
|
4
4
|
require 'spree_faq/version'
|
5
5
|
|
@@ -7,14 +7,14 @@ Gem::Specification.new do |s|
|
|
7
7
|
s.platform = Gem::Platform::RUBY
|
8
8
|
s.name = 'spree-faq'
|
9
9
|
s.version = SpreeFaq.version
|
10
|
-
s.summary =
|
11
|
-
s.description =
|
10
|
+
s.summary = 'Adds an easy FAQ page for Spree Commerce'
|
11
|
+
s.description = 'With this gem you get an faq page and the management tools to make it very easy to update your faq and reduce the demand on your sites customer service'
|
12
12
|
s.required_ruby_version = '>= 1.9.3'
|
13
13
|
|
14
14
|
s.authors = ['Josh Nussbaum', 'Tobias Bohwalli']
|
15
15
|
s.email = 'hi@futhr.io'
|
16
16
|
s.homepage = 'https://github.com/futhr/spree-faq'
|
17
|
-
s.license =
|
17
|
+
s.license = 'BSD-3'
|
18
18
|
|
19
19
|
s.files = `git ls-files`.split("\n")
|
20
20
|
s.test_files = `git ls-files -- spec/*`.split("\n")
|
@@ -25,22 +25,21 @@ Gem::Specification.new do |s|
|
|
25
25
|
|
26
26
|
s.add_runtime_dependency 'spree_core', '~> 2.0.0'
|
27
27
|
|
28
|
-
s.add_development_dependency 'rspec-rails', '~>
|
29
|
-
s.add_development_dependency 'capybara', '~> 2.
|
28
|
+
s.add_development_dependency 'rspec-rails', '~> 3.0.0'
|
29
|
+
s.add_development_dependency 'capybara', '~> 2.4.1'
|
30
30
|
s.add_development_dependency 'selenium-webdriver', '>= 2.40.0'
|
31
31
|
s.add_development_dependency 'poltergeist', '~> 1.5.0'
|
32
32
|
s.add_development_dependency 'factory_girl', '~> 4.4'
|
33
|
-
s.add_development_dependency 'shoulda-matchers', '~> 2.
|
33
|
+
s.add_development_dependency 'shoulda-matchers', '~> 2.6.2'
|
34
34
|
s.add_development_dependency 'sqlite3', '~> 1.3.8'
|
35
|
-
s.add_development_dependency 'simplecov', '~> 0.
|
35
|
+
s.add_development_dependency 'simplecov', '~> 0.9.0'
|
36
36
|
s.add_development_dependency 'database_cleaner', '~> 1.2.0'
|
37
|
-
s.add_development_dependency 'i18n-spec', '~> 0.
|
37
|
+
s.add_development_dependency 'i18n-spec', '~> 0.5.2'
|
38
38
|
s.add_development_dependency 'coffee-rails', '~> 3.2.2'
|
39
39
|
s.add_development_dependency 'sass-rails', '~> 3.2.6'
|
40
|
-
s.add_development_dependency 'ffaker', '>= 1.
|
40
|
+
s.add_development_dependency 'ffaker', '>= 1.22.0'
|
41
41
|
s.add_development_dependency 'guard-rspec', '>= 4.2.0'
|
42
42
|
s.add_development_dependency 'launchy', '>= 2.4.0'
|
43
43
|
s.add_development_dependency 'pry-rails', '>= 0.3.0'
|
44
44
|
s.add_development_dependency 'coveralls', '>= 0.7.0'
|
45
|
-
|
46
|
-
end
|
45
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: spree-faq
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Josh Nussbaum
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2015-02-15 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: spree_core
|
@@ -31,28 +31,28 @@ dependencies:
|
|
31
31
|
requirements:
|
32
32
|
- - "~>"
|
33
33
|
- !ruby/object:Gem::Version
|
34
|
-
version:
|
34
|
+
version: 3.0.0
|
35
35
|
type: :development
|
36
36
|
prerelease: false
|
37
37
|
version_requirements: !ruby/object:Gem::Requirement
|
38
38
|
requirements:
|
39
39
|
- - "~>"
|
40
40
|
- !ruby/object:Gem::Version
|
41
|
-
version:
|
41
|
+
version: 3.0.0
|
42
42
|
- !ruby/object:Gem::Dependency
|
43
43
|
name: capybara
|
44
44
|
requirement: !ruby/object:Gem::Requirement
|
45
45
|
requirements:
|
46
46
|
- - "~>"
|
47
47
|
- !ruby/object:Gem::Version
|
48
|
-
version: 2.
|
48
|
+
version: 2.4.1
|
49
49
|
type: :development
|
50
50
|
prerelease: false
|
51
51
|
version_requirements: !ruby/object:Gem::Requirement
|
52
52
|
requirements:
|
53
53
|
- - "~>"
|
54
54
|
- !ruby/object:Gem::Version
|
55
|
-
version: 2.
|
55
|
+
version: 2.4.1
|
56
56
|
- !ruby/object:Gem::Dependency
|
57
57
|
name: selenium-webdriver
|
58
58
|
requirement: !ruby/object:Gem::Requirement
|
@@ -101,14 +101,14 @@ dependencies:
|
|
101
101
|
requirements:
|
102
102
|
- - "~>"
|
103
103
|
- !ruby/object:Gem::Version
|
104
|
-
version:
|
104
|
+
version: 2.6.2
|
105
105
|
type: :development
|
106
106
|
prerelease: false
|
107
107
|
version_requirements: !ruby/object:Gem::Requirement
|
108
108
|
requirements:
|
109
109
|
- - "~>"
|
110
110
|
- !ruby/object:Gem::Version
|
111
|
-
version:
|
111
|
+
version: 2.6.2
|
112
112
|
- !ruby/object:Gem::Dependency
|
113
113
|
name: sqlite3
|
114
114
|
requirement: !ruby/object:Gem::Requirement
|
@@ -129,14 +129,14 @@ dependencies:
|
|
129
129
|
requirements:
|
130
130
|
- - "~>"
|
131
131
|
- !ruby/object:Gem::Version
|
132
|
-
version: 0.
|
132
|
+
version: 0.9.0
|
133
133
|
type: :development
|
134
134
|
prerelease: false
|
135
135
|
version_requirements: !ruby/object:Gem::Requirement
|
136
136
|
requirements:
|
137
137
|
- - "~>"
|
138
138
|
- !ruby/object:Gem::Version
|
139
|
-
version: 0.
|
139
|
+
version: 0.9.0
|
140
140
|
- !ruby/object:Gem::Dependency
|
141
141
|
name: database_cleaner
|
142
142
|
requirement: !ruby/object:Gem::Requirement
|
@@ -157,14 +157,14 @@ dependencies:
|
|
157
157
|
requirements:
|
158
158
|
- - "~>"
|
159
159
|
- !ruby/object:Gem::Version
|
160
|
-
version: 0.
|
160
|
+
version: 0.5.2
|
161
161
|
type: :development
|
162
162
|
prerelease: false
|
163
163
|
version_requirements: !ruby/object:Gem::Requirement
|
164
164
|
requirements:
|
165
165
|
- - "~>"
|
166
166
|
- !ruby/object:Gem::Version
|
167
|
-
version: 0.
|
167
|
+
version: 0.5.2
|
168
168
|
- !ruby/object:Gem::Dependency
|
169
169
|
name: coffee-rails
|
170
170
|
requirement: !ruby/object:Gem::Requirement
|
@@ -199,14 +199,14 @@ dependencies:
|
|
199
199
|
requirements:
|
200
200
|
- - ">="
|
201
201
|
- !ruby/object:Gem::Version
|
202
|
-
version: 1.
|
202
|
+
version: 1.22.0
|
203
203
|
type: :development
|
204
204
|
prerelease: false
|
205
205
|
version_requirements: !ruby/object:Gem::Requirement
|
206
206
|
requirements:
|
207
207
|
- - ">="
|
208
208
|
- !ruby/object:Gem::Version
|
209
|
-
version: 1.
|
209
|
+
version: 1.22.0
|
210
210
|
- !ruby/object:Gem::Dependency
|
211
211
|
name: guard-rspec
|
212
212
|
requirement: !ruby/object:Gem::Requirement
|
@@ -263,20 +263,6 @@ dependencies:
|
|
263
263
|
- - ">="
|
264
264
|
- !ruby/object:Gem::Version
|
265
265
|
version: 0.7.0
|
266
|
-
- !ruby/object:Gem::Dependency
|
267
|
-
name: localeapp
|
268
|
-
requirement: !ruby/object:Gem::Requirement
|
269
|
-
requirements:
|
270
|
-
- - ">="
|
271
|
-
- !ruby/object:Gem::Version
|
272
|
-
version: 0.7.2
|
273
|
-
type: :development
|
274
|
-
prerelease: false
|
275
|
-
version_requirements: !ruby/object:Gem::Requirement
|
276
|
-
requirements:
|
277
|
-
- - ">="
|
278
|
-
- !ruby/object:Gem::Version
|
279
|
-
version: 0.7.2
|
280
266
|
description: With this gem you get an faq page and the management tools to make it
|
281
267
|
very easy to update your faq and reduce the demand on your sites customer service
|
282
268
|
email: hi@futhr.io
|
@@ -286,7 +272,9 @@ extra_rdoc_files: []
|
|
286
272
|
files:
|
287
273
|
- ".gitignore"
|
288
274
|
- ".hound.yml"
|
275
|
+
- ".reek"
|
289
276
|
- ".rspec"
|
277
|
+
- ".rubocop.yml"
|
290
278
|
- ".travis.yml"
|
291
279
|
- CONTRIBUTING.md
|
292
280
|
- Gemfile
|