diff --git a/Gemfile b/Gemfile index 4e7a4358e056972e706d03860cf2609eed260b8a..2072fff23e95982a2284b7a3d00a14a0221f1d68 100644 --- a/Gemfile +++ b/Gemfile @@ -3,6 +3,8 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" } ruby '2.4.1' +# test liwen + # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' gem 'rails', '~> 5.2.2' diff --git a/README.md b/README.md index bda99c8e58a74d5c561ab7d59824d40038811ff4..258fd472ce3fc265a7cf3f26b95b6b89f562bc5a 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,19 @@ * 介绍 需求描述: 现要打造项目管理工具,维度包括不仅限于:项目,仓库,迭代,任务。其中任务可支持自定义类型,如缺陷、设计等,且不同类型可定义不同状态集合)。项目可以有多仓库,迭代属于某个项目,任务可以属于某个迭代、某个仓库、某个项目。 +```ruby +project_service.rb +project_watchers +event.tag? -haha -meiyou +``` + + +- 修改readme1 +- 修改readme2 +- 修改readme3 +- 修改readme4 +- 修改readme5 +- 修改readme6 +- 修改readme7 +- 修改readme8 diff --git a/public/images/hohoho.zip b/public/images/hohoho.zip new file mode 100644 index 0000000000000000000000000000000000000000..9aa4a21e9288f3cfc5b045271e084902c751178c Binary files /dev/null and b/public/images/hohoho.zip differ diff --git a/public/images/insert_projects_sql.pdf b/public/images/insert_projects_sql.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fbc1476b846d39455c0ca3d8de38f1163d123c75 Binary files /dev/null and b/public/images/insert_projects_sql.pdf differ diff --git "a/public/images/\344\273\273\345\212\241\345\210\227\350\241\25020190531_16_44.csv" "b/public/images/\344\273\273\345\212\241\345\210\227\350\241\25020190531_16_44.csv" new file mode 100644 index 0000000000000000000000000000000000000000..cd73dc45e2c54ce04c8f2b6459dd204deba269f2 --- /dev/null +++ "b/public/images/\344\273\273\345\212\241\345\210\227\350\241\25020190531_16_44.csv" @@ -0,0 +1,74 @@ +ID,任务名,负责人,协作者,任务状态,任务类型,任务内容,优先级,标签,关联仓库,里程碑,任务创建者,创建时间,计划时间,完成时间,关联分支 +IE,3 features from Rails 4.1 that I’m excited about,liwen,张文文,待办的,任务,"Rails 4.1 was just released this week and I already had a great experience trying out the release candidates on my latest project, so I decided to write a bit about my favorites features on this release and some things I have learned by using them so far. + +1) secrets.yml +Placing your configuration in a YAML file isn’t exactly a revolutionary feature, but the usage of the config/secrets.yml file that comes with Rails 4.1 holds a more important idea: the promise of a default approach for environment aware custom configuration on Rails applications. Over the years the community created several ways to manage such configuration so every app out there deals with this differently, but now we can use the Rails default as a standard just like we do with the app folder or the routing patterns, taking the configuration madness outside the list of things to worry about when working with Rails. So instead of dealing with multiple YAML files or constants left out inside initializers, we can go with the secrets.yml as the default for our apps. + +Remember that you can place any kind of configuration – not just secrets like tokens or passwords – that need to be handled differently through your application environments, like API Endpoints or S3 bucket names. And for any gem maintainers out there, you can make your gem read these settings from the secrets.yml automagically through an initializer block and maybe remove a configuration step from the gem setup. Adding this to Devise on this pull request was easier than I expected and I suggest you to try it out on your gems as well. + +If you want to try to organize your configuration through the secrets.yml without having to update to Rails 4.1 right now, Andrew White backported this feature on the rails-secrets gem for Rails 4.0 apps. + +So, if you are dealing with some configuration mess or aren’t using something like dotenv for your application, I strongly suggest that you try to migrate your config to use the secrets.yml file and see how it goes for your application. + +2) Action Pack Variants +Variants are proving to be a great solution to render device specific views when mixed with any device detection solution like the useragent or browser gems, which you integrate quickly with just a before_action block: + +class ApplicationController < ActionController::Base + before_action :set_variant + + private + + def set_variant + if browser.tablet? + request.variant = :tablet + elsif browser.mobile? + request.variant = :mobile + else + request.variant = :desktop + end + end +end +Even though the main examples are dealing with User Agent sniffing, this feature can be used in any context where you want to have more control of which views are rendered by your application, like: + +A/B Testing different partials based on the user cookies. +API versioning for your Jbuilder templates. +Maintaining current and redesigned views for the same controller. +Authorization aware views, like users/index.html+admin.erb or products/show.html+guest.erb. +In the end, Variants are just a way for you to have more control over how your views will be used by the app, helping you to remove boilerplate logic from your code and letting the framework handle it through a more elegant solution. + +3) The improved cookies serializer +The changes on how Rails serializes cookies are a great improvement when it comes to security and stability of web apps. Before this, any object placed in the cookies Hash would be serialized (and deserialized) through Marshal.dump and Marshal.load, which could possibly lead to remote code execution if an attacker got hold on your application secret. + +Now this serializer is configurable through the config.action_dispatch.cookies_serializer configuration option, and new apps will ship with a smarter default: a JSON serializer that won't recreate complex objects besides Strings, Integers and other JSON data types. And for a smooth upgrade, you can use the :hybrid serializer that will convert your existing marshalled cookies into JSON cookies, so this upgrade can be transparent for your application users. + +This upgrade highlights a possible bad practice in our applications where we end up placing more complex objects in the session that can't be completely restored by the JSON serializer, when we should be using more simple structures for the data stored in cookies. Thanks to a related issue reported on the Devise issue tracker we could simplify the gem code a bit, so instead of serializing Time objects we could work with numbers. + +So, when updating your application to use the :hybrid serializer, don't forget to do a double check of whatever kind of data the app stores in your users cookies and look for possible backwards incompatibility. And if you want to take a closer look on how this was implemented, be sure to check the related issues and pull requests on the Rails repo: #12881, #13692 and #13945. + +Keeping up to date with the latest Rails changes +Following the activity on the Rails repository over GitHub helped a lot to understand better these features and the rationale behind their implementations, but going through all the commits and discussions on Issues and Pull Requests would demand a lot of your time. If you want some of the inside scoop but don't have that much time to go through the Rails activity over the week, Godfrey Chan has put up a weekly digest about Rails named This Week in Rails. I suggest that you subscribe to the list and even check some of the previous editions on the archive page. + +Try it yourself! +Take some time and upgrade one of your Rails 4 apps and try out some of the new features! I bet that some of them will help you improve your codebase or make your coworkers life a bit easier, and we are eager to hear from your experience with the 4.1 release.",不指定,"",力文帅帅/hohoho,,张文文,2019-05-31 12:31:44,"",, +I8,新手任务 - 添加企业成员,张文文,"",待办的,任务,"管理员,您好: + +你的第一个任务是将员工添加进你的企业 +1. 点击 左侧菜单栏【成员】 +![输入图片说明](https://gitee.com/uploads/images/2018/0516/165648_7fd4b5e3_409700.png ""在这里输入图片标题"") + +2. 选择【添加成员】,邀请成员加入企业 +![输入图片说明](https://gitee.com/uploads/images/2018/0516/165711_c8dbf43a_409700.png ""在这里输入图片标题"") + +完成后,你就可以给你的员工分派任务了。 +最后,请回到本任务将状态改为“已完成”。",主要,"",,,张文文,2019-05-22 16:17:38,"",, +I7,新手任务 - 创建第一个仓库,张文文,"",待办的,任务,"作为企业管理员,你可以在 左侧菜单栏项目中【添加仓库】: + +1. 点击 左侧菜单栏 【仓库】 +![输入图片说明](https://images.gitee.com/uploads/images/2018/1217/181217_fd793ae3_379416.png ""在这里输入图片标题"") +2. 选择 【添加仓库】 +![输入图片说明](https://images.gitee.com/uploads/images/2018/1217/181208_179c3f37_379416.png ""在这里输入图片标题"") + +建好仓库后,请回到这里,将本任务的状态改为“已完成”。",主要,"",,,张文文,2019-05-22 16:17:38,"",, +I3,222,,"",待办的,任务,asdfasdfw,不指定,"",力文帅帅/hohoho,,liwen,2019-04-09 10:24:06,"",, +I2,222,,"",待办的,任务,asdfasdfw,不指定,"",力文帅帅/hohoho,,liwen,2019-04-02 11:18:43,"",, +I1,12we,,"",待办的,任务,23rffsdf,不指定,"",力文帅帅/hohoho,,张文文,2019-03-28 11:19:51,"",, diff --git "a/public/images/\345\205\250\347\220\203\345\234\260\345\214\272\346\225\260\346\215\256\345\272\223.xlsx" "b/public/images/\345\205\250\347\220\203\345\234\260\345\214\272\346\225\260\346\215\256\345\272\223.xlsx" new file mode 100644 index 0000000000000000000000000000000000000000..67aeff4f021ed289b49624487dea6de43fa790e4 Binary files /dev/null and "b/public/images/\345\205\250\347\220\203\345\234\260\345\214\272\346\225\260\346\215\256\345\272\223.xlsx" differ diff --git "a/public/images/\346\273\264\346\273\264\345\274\200\346\272\220_\345\205\250\345\275\251\346\240\207\345\277\227_RGB.svg" "b/public/images/\346\273\264\346\273\264\345\274\200\346\272\220_\345\205\250\345\275\251\346\240\207\345\277\227_RGB.svg" new file mode 100644 index 0000000000000000000000000000000000000000..455f620b5cbc0c8cf8af7093056917bb2f4ccca1 --- /dev/null +++ "b/public/images/\346\273\264\346\273\264\345\274\200\346\272\220_\345\205\250\345\275\251\346\240\207\345\277\227_RGB.svg" @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + diff --git "a/public/images/\346\273\264\346\273\264\347\224\265\345\255\220\345\217\221\347\245\250-liwen.pdf" "b/public/images/\346\273\264\346\273\264\347\224\265\345\255\220\345\217\221\347\245\250-liwen.pdf" new file mode 100644 index 0000000000000000000000000000000000000000..4d30c6e2af676ad6bcd34a3ead37a7e5edbf69dd Binary files /dev/null and "b/public/images/\346\273\264\346\273\264\347\224\265\345\255\220\345\217\221\347\245\250-liwen.pdf" differ diff --git "a/public/images/\347\273\204\347\273\207.png" "b/public/images/\347\273\204\347\273\207.png" new file mode 100644 index 0000000000000000000000000000000000000000..4c50ef0e84a928a386f8a4793b28dd54ba38cc8d Binary files /dev/null and "b/public/images/\347\273\204\347\273\207.png" differ diff --git "a/public/images/\347\273\204\347\273\207\346\224\271\347\211\210\351\241\265\351\235\242\351\242\204\350\247\210.docx" "b/public/images/\347\273\204\347\273\207\346\224\271\347\211\210\351\241\265\351\235\242\351\242\204\350\247\210.docx" new file mode 100644 index 0000000000000000000000000000000000000000..3aa28008adb4fce118d505c5e57d2854e54b0aff Binary files /dev/null and "b/public/images/\347\273\204\347\273\207\346\224\271\347\211\210\351\241\265\351\235\242\351\242\204\350\247\210.docx" differ diff --git "a/public/images/\351\242\204\350\247\210.jpg" "b/public/images/\351\242\204\350\247\210.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..e1fcfda250f32e29f80ad2d911fe46e54ce4f0d1 Binary files /dev/null and "b/public/images/\351\242\204\350\247\210.jpg" differ