Selaa lähdekoodia

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

fix bug in process feed service
master
Eugen Rochko 7 vuotta sitten
vanhempi
commit
7951e7ffd5
4 muutettua tiedostoa jossa 8 lisäystä ja 4 poistoa
  1. +1
    -0
      Gemfile
  2. +3
    -0
      Gemfile.lock
  3. +2
    -0
      app/services/process_feed_service.rb
  4. +2
    -4
      package.json

+ 1
- 0
Gemfile Näytä tiedosto

@@ -1,6 +1,7 @@
# frozen_string_literal: true # frozen_string_literal: true


source 'https://rubygems.org' source 'https://rubygems.org'
ruby '2.3.1'


gem 'rails', '~> 5.0.1.0' gem 'rails', '~> 5.0.1.0'
gem 'sass-rails', '~> 5.0' gem 'sass-rails', '~> 5.0'


+ 3
- 0
Gemfile.lock Näytä tiedosto

@@ -463,5 +463,8 @@ DEPENDENCIES
webmock webmock
will_paginate will_paginate


RUBY VERSION
ruby 2.3.1p112

BUNDLED WITH BUNDLED WITH
1.13.6 1.13.6

+ 2
- 0
app/services/process_feed_service.rb Näytä tiedosto

@@ -56,6 +56,8 @@ class ProcessFeedService < BaseService
end end
end end


return if status.nil?

status.save! status.save!


NotifyService.new.call(status.reblog.account, status) if status.reblog? && status.reblog.account.local? NotifyService.new.call(status.reblog.account, status) if status.reblog? && status.reblog.account.local?


+ 2
- 4
package.json Näytä tiedosto

@@ -4,7 +4,7 @@
"test": "mocha --require ./spec/javascript/setup.js --compilers js:babel-register ./spec/javascript/components/*.test.jsx", "test": "mocha --require ./spec/javascript/setup.js --compilers js:babel-register ./spec/javascript/components/*.test.jsx",
"storybook": "start-storybook -p 9001 -c storybook" "storybook": "start-storybook -p 9001 -c storybook"
}, },
"devDependencies": {
"dependencies": {
"@kadira/storybook": "^2.24.0", "@kadira/storybook": "^2.24.0",
"axios": "^0.14.0", "axios": "^0.14.0",
"babel-plugin-react-transform": "^2.0.2", "babel-plugin-react-transform": "^2.0.2",
@@ -52,9 +52,7 @@
"reselect": "^2.5.4", "reselect": "^2.5.4",
"sass-loader": "^4.0.2", "sass-loader": "^4.0.2",
"sinon": "^1.17.6", "sinon": "^1.17.6",
"style-loader": "^0.13.1"
},
"dependencies": {
"style-loader": "^0.13.1",
"webpack": "^1.14.0" "webpack": "^1.14.0"
} }
} }

Ladataan…
Peruuta
Tallenna