Skip to content

Commit b9ee18e

Browse files
authored
Merge pull request #57 from gitlabhq/update-mime-types-dependency
Update mime types dependency
2 parents d3c614f + f1ab3b5 commit b9ee18e

6 files changed

+16
-9
lines changed

.travis.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ branches:
66
only:
77
- 'master'
88
rvm:
9-
- 1.9.3
10-
- 2.0.0
9+
- 2.0
1110
before_script:
1211
- "bundle install"
1312
script: "bundle exec rake test"

Gemfile

+1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,5 @@ group :development, :test do
1111
gem 'mocha', "~> 0.13.2"
1212
gem 'coveralls', require: false
1313
gem 'rspec', '~> 2.11'
14+
gem 'test-unit'
1415
end

Gemfile.lock

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
PATH
22
remote: .
33
specs:
4-
gitlab-grit (2.8.1)
4+
gitlab-grit (2.8.2)
55
charlock_holmes (~> 0.6)
66
diff-lcs (~> 1.1)
7-
mime-types (>= 1.16, < 3)
7+
mime-types (>= 1.16)
88
posix-spawn (~> 0.3)
99

1010
GEM
@@ -27,6 +27,7 @@ GEM
2727
metaclass (~> 0.0.1)
2828
multi_json (1.7.2)
2929
posix-spawn (0.3.6)
30+
power_assert (0.2.6)
3031
pry (0.9.12.2)
3132
coderay (~> 1.0.5)
3233
method_source (~> 0.8)
@@ -47,6 +48,8 @@ GEM
4748
simplecov-html (~> 0.7.1)
4849
simplecov-html (0.7.1)
4950
slop (3.4.4)
51+
test-unit (3.1.5)
52+
power_assert
5053
thor (0.18.0)
5154

5255
PLATFORMS
@@ -62,6 +65,7 @@ DEPENDENCIES
6265
pry
6366
rake
6467
rspec (~> 2.11)
68+
test-unit
6569

6670
BUNDLED WITH
67-
1.11.2
71+
1.15.3

History.txt

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1+
== 2.8.2
2+
* Remove the pessimistic `< 3` condition on mime-types
3+
14
== 2.8.1
2-
* Resolve dependencies in better way and fix bundle install
5+
* Resolve dependencies in better way and fix bundle install
36

47
== 2.8.0
58
* Update mime-types dependency
@@ -12,7 +15,7 @@
1215

1316
== 2.7.1
1417
* Suppress 'unkown header' warnings
15-
* Add process.out to CommandFailed error
18+
* Add process.out to CommandFailed error
1619

1720
== 2.7.0
1821
* Remove the `chdir:` option for thread-safety

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.8.1
1+
2.8.2

gitlab-grit.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Gem::Specification.new do |s|
1616

1717
s.add_dependency("charlock_holmes", "~> 0.6")
1818
s.add_dependency('posix-spawn', "~> 0.3")
19-
s.add_dependency('mime-types', ">= 1.16", "< 3")
19+
s.add_dependency('mime-types', ">= 1.16")
2020
s.add_dependency('diff-lcs', "~> 1.1")
2121
s.add_development_dependency('mocha')
2222
end

0 commit comments

Comments
 (0)