This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| source 'https://rubygems.org' | |
| gem 'rails', '4.1.8' | |
| gem 'sqlite3' | |
| gem 'fullcalendar-rails' | |
| gem 'momentjs-rails' | |
| gem 'uglifier' | |
| gem 'jquery-rails' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $(document).ready(function() { | |
| var select = function(start, end, allDay) { | |
| var title = window.prompt("title"); | |
| var data = {event: {title: title, | |
| start: start, | |
| end: end, | |
| allDay: allDay}}; | |
| $.ajax({ | |
| type: "POST", | |
| url: "/events", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| + 週表示のときに、イベントのリサイズが日をまたげない | |
| + イベントのリサイズが1方向(右方向または下方向)にしかできない |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| bundle install --path/vendor |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0"?> | |
| <project name="SimpleAnt" default="compile"> | |
| <property file="file.properties" /> | |
| <property name="msg" value="Hello world" /> | |
| <target name="compile"> | |
| <echo>${msg}</echo> | |
| </target> | |
| <target name="test" depends="compile"> | |
| <echo>testだけど表示するだけで何もしない</echo> | |
| </target> |
同じ職場の同期が「アジャイルソフトウェア開発の奥義」をゆるっとふわっと読む会を始めるというので、 混ぜてもらうことにしました。
詳細は以下の通り。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class HelloWorld { | |
| private String name | |
| void setName(String name) { | |
| this.name = name | |
| } | |
| String getName() { | |
| return name | |
| } |