Commit d70a433 1 parent dc7da41 commit d70a433 Copy full SHA for d70a433
File tree 7 files changed +19
-30
lines changed
7 files changed +19
-30
lines changed Original file line number Diff line number Diff line change 1
1
/.bundle /
2
2
.setup
3
+ Gemfile.lock
3
4
/releases /
Original file line number Diff line number Diff line change 4
4
- 2.0
5
5
- 2.1
6
6
- 2.2
7
+ sudo : required
7
8
before_install :
8
- - ruby --version
9
+ - gem update --system
10
+ - gem install bundler -v '~>1.11'
11
+ - bundler --version
12
+ install :
13
+ - make
14
+ - gem build mpcat.gemspec
15
+ - gem install mpcat-*.gem
16
+ - gem list -l mpcat
9
17
script :
10
- - make test
18
+ - make test
19
+ - cd
20
+ - which -a mpcat
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -5,4 +5,4 @@ include Makefile.common
5
5
6
6
.PHONY : test
7
7
test :
8
- RUBYOPT=-w ./bin/mpcat tests/test1.mp
8
+ RUBYOPT=-w $( BUNDLER ) exec ./bin/mpcat tests/test1.mp
Original file line number Diff line number Diff line change 1
1
2
2
# Ruby Common Big
3
- # 2015-12-15
3
+ # 2015-12-21
4
4
5
5
MV = mv -nv
6
6
RM = rm -rf
@@ -35,7 +35,9 @@ update:
35
35
36
36
.PHONY: clean
37
37
clean:
38
+ $(RM) .bundle
38
39
$(RM) .setup
40
+ $(RM) Gemfile.lock
39
41
40
42
.PHONY: release
41
43
release: | releases
Original file line number Diff line number Diff line change @@ -6,8 +6,6 @@ raise 'Ruby >=1.9 required' unless RUBY_VERSION >= '1.9.0'
6
6
require 'optparse'
7
7
require 'yaml'
8
8
require 'pp'
9
-
10
- require 'bundler/setup'
11
9
require 'msgpack'
12
10
13
11
Original file line number Diff line number Diff line change 2
2
3
3
Gem ::Specification . new do |spec |
4
4
spec . name = 'mpcat'
5
- spec . version = '1.0.0 '
6
- spec . date = '2015-12-18 '
5
+ spec . version = '1.0.1-dev '
6
+ spec . date = '2015-12-21 '
7
7
spec . author = 'Christian Mayer'
8
8
9
9
@@ -17,7 +17,5 @@ Gem::Specification.new do |spec|
17
17
spec . executables = [ 'mpcat' ]
18
18
spec . required_ruby_version = '>=1.9.0'
19
19
20
- spec . add_development_dependency 'bundler' , '~>1.10'
21
-
22
20
spec . add_dependency 'msgpack' , '~>0.7'
23
21
end
You can’t perform that action at this time.
0 commit comments