Skip to content
Snippets Groups Projects
Commit 7951e7ff authored by Eugen Rochko's avatar Eugen Rochko
Browse files

Add ruby version to Gemfile, move devDependencies in package.json to dependencies,

fix bug in process feed service
parent 10739df4
No related branches found
No related tags found
No related merge requests found
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '2.3.1'
gem 'rails', '~> 5.0.1.0'
gem 'sass-rails', '~> 5.0'
......
......@@ -463,5 +463,8 @@ DEPENDENCIES
webmock
will_paginate
RUBY VERSION
ruby 2.3.1p112
BUNDLED WITH
1.13.6
......@@ -56,6 +56,8 @@ class ProcessFeedService < BaseService
end
end
return if status.nil?
status.save!
NotifyService.new.call(status.reblog.account, status) if status.reblog? && status.reblog.account.local?
......
......@@ -4,7 +4,7 @@
"test": "mocha --require ./spec/javascript/setup.js --compilers js:babel-register ./spec/javascript/components/*.test.jsx",
"storybook": "start-storybook -p 9001 -c storybook"
},
"devDependencies": {
"dependencies": {
"@kadira/storybook": "^2.24.0",
"axios": "^0.14.0",
"babel-plugin-react-transform": "^2.0.2",
......@@ -52,9 +52,7 @@
"reselect": "^2.5.4",
"sass-loader": "^4.0.2",
"sinon": "^1.17.6",
"style-loader": "^0.13.1"
},
"dependencies": {
"style-loader": "^0.13.1",
"webpack": "^1.14.0"
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment