Commit fcbe9050f61f81e192b04605d61fdc5f804e4965
1 parent
444bfaf4
Exists in
master
and in
1 other branch
Fix issue #491 about changing Gemfile.lock but not commit Gemfile
Update Changelog
Showing
2 changed files
with
13 additions
and
3 deletions
Show diff stats
CHANGELOG.md
| 1 | +## 0.2.0 - Not released Yet | ||
| 2 | + | ||
| 3 | +### Improvements | ||
| 4 | + | ||
| 5 | +- Update some gems ([@shingara][]) | ||
| 6 | + | ||
| 7 | +### Bug Fixes | ||
| 8 | + | ||
| 9 | +- [#343][] Fix the ical generation. ([@shingara][]) | ||
| 10 | + | ||
| 1 | ## 0.1.0 - 2013-05-29 | 11 | ## 0.1.0 - 2013-05-29 |
| 2 | 12 | ||
| 3 | ### Improvements | 13 | ### Improvements |
| @@ -30,7 +40,7 @@ | @@ -30,7 +40,7 @@ | ||
| 30 | - [#478][] Fix issue about calculation of statisque of problem after | 40 | - [#478][] Fix issue about calculation of statisque of problem after |
| 31 | merge ([@shingara][]) | 41 | merge ([@shingara][]) |
| 32 | 42 | ||
| 33 | -<!--- The following link definition list is generated by PimpMyChangelog ---> | 43 | +[#343]: https://github.com/errbit/errbit/issues/343 |
| 34 | [#453]: https://github.com/errbit/errbit/issues/453 | 44 | [#453]: https://github.com/errbit/errbit/issues/453 |
| 35 | [#455]: https://github.com/errbit/errbit/issues/455 | 45 | [#455]: https://github.com/errbit/errbit/issues/455 |
| 36 | [#457]: https://github.com/errbit/errbit/issues/457 | 46 | [#457]: https://github.com/errbit/errbit/issues/457 |
Gemfile
| @@ -16,7 +16,7 @@ gem 'kaminari', '>= 0.14.1' | @@ -16,7 +16,7 @@ gem 'kaminari', '>= 0.14.1' | ||
| 16 | gem 'rack-ssl-enforcer' | 16 | gem 'rack-ssl-enforcer' |
| 17 | # fabrication 1.3.0 is last supporting ruby 1.8. Update when stop supporting this version too | 17 | # fabrication 1.3.0 is last supporting ruby 1.8. Update when stop supporting this version too |
| 18 | gem 'fabrication', "~> 1.3.0" # Used for both tests and demo data | 18 | gem 'fabrication', "~> 1.3.0" # Used for both tests and demo data |
| 19 | -gem 'rails_autolink', '~> 1.0.9' | 19 | +gem 'rails_autolink' |
| 20 | # Please don't update hoptoad_notifier to airbrake. | 20 | # Please don't update hoptoad_notifier to airbrake. |
| 21 | # It's for internal use only, and we monkeypatch certain methods | 21 | # It's for internal use only, and we monkeypatch certain methods |
| 22 | gem 'hoptoad_notifier', "~> 2.4" | 22 | gem 'hoptoad_notifier', "~> 2.4" |
| @@ -36,7 +36,7 @@ gem 'pivotal-tracker' | @@ -36,7 +36,7 @@ gem 'pivotal-tracker' | ||
| 36 | # Fogbugz | 36 | # Fogbugz |
| 37 | gem 'ruby-fogbugz', :require => 'fogbugz' | 37 | gem 'ruby-fogbugz', :require => 'fogbugz' |
| 38 | # Github Issues | 38 | # Github Issues |
| 39 | -gem 'octokit', '~> 1.0.0' | 39 | +gem 'octokit' |
| 40 | # Gitlab | 40 | # Gitlab |
| 41 | gem 'gitlab', :git => 'https://github.com/NARKOZ/gitlab.git' | 41 | gem 'gitlab', :git => 'https://github.com/NARKOZ/gitlab.git' |
| 42 | 42 |