Commit fcbe9050f61f81e192b04605d61fdc5f804e4965

Authored by Cyril Mougel
1 parent 444bfaf4
Exists in master and in 1 other branch production

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 11 ## 0.1.0 - 2013-05-29
2 12  
3 13 ### Improvements
... ... @@ -30,7 +40,7 @@
30 40 - [#478][] Fix issue about calculation of statisque of problem after
31 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 44 [#453]: https://github.com/errbit/errbit/issues/453
35 45 [#455]: https://github.com/errbit/errbit/issues/455
36 46 [#457]: https://github.com/errbit/errbit/issues/457
... ...
Gemfile
... ... @@ -16,7 +16,7 @@ gem &#39;kaminari&#39;, &#39;&gt;= 0.14.1&#39;
16 16 gem 'rack-ssl-enforcer'
17 17 # fabrication 1.3.0 is last supporting ruby 1.8. Update when stop supporting this version too
18 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 20 # Please don't update hoptoad_notifier to airbrake.
21 21 # It's for internal use only, and we monkeypatch certain methods
22 22 gem 'hoptoad_notifier', "~> 2.4"
... ... @@ -36,7 +36,7 @@ gem &#39;pivotal-tracker&#39;
36 36 # Fogbugz
37 37 gem 'ruby-fogbugz', :require => 'fogbugz'
38 38 # Github Issues
39   -gem 'octokit', '~> 1.0.0'
  39 +gem 'octokit'
40 40 # Gitlab
41 41 gem 'gitlab', :git => 'https://github.com/NARKOZ/gitlab.git'
42 42  
... ...