diff --git a/.travis.yml b/.travis.yml index 5a9745b..333b608 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,8 +8,9 @@ before_install: - sudo mkdir -p ~/Library/RubyMotion/build - sudo chown -R travis ~/Library/RubyMotion/build script: + - bundle install - rake build:ios - cd test && bundle install - ruby server.rb & - - bundle exec rake ios:clean:all - - bundle exec rake ios:spec + - rake ios:clean:all + - rake ios:spec diff --git a/Gemfile b/Gemfile index 851fabc..199e366 100644 --- a/Gemfile +++ b/Gemfile @@ -1,2 +1,3 @@ source 'https://rubygems.org' -gemspec +gem 'rake' +gem 'motion-gradle' diff --git a/Gemfile.lock b/Gemfile.lock index 44ce526..f144c0d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,9 +1,3 @@ -PATH - remote: . - specs: - motion-flow (0.1.9) - motion-gradle - GEM remote: https://rubygems.org/ specs: @@ -14,7 +8,7 @@ PLATFORMS ruby DEPENDENCIES - motion-flow! + motion-gradle rake BUNDLED WITH diff --git a/motion-flow.gemspec b/motion-flow.gemspec index 916c339..7adbdb4 100644 --- a/motion-flow.gemspec +++ b/motion-flow.gemspec @@ -14,6 +14,4 @@ Gem::Specification.new do |spec| Dir.glob('template/**/*') + Dir.glob('vendor/**/*') spec.metadata = { "rubymotion_template_dir" => "template" } - spec.add_development_dependency 'rake' - spec.add_dependency 'motion-gradle' end diff --git a/test/Gemfile.lock b/test/Gemfile.lock new file mode 100644 index 0000000..f63b39f --- /dev/null +++ b/test/Gemfile.lock @@ -0,0 +1,31 @@ +GEM + remote: https://rubygems.org/ + specs: + daemons (1.2.5) + eventmachine (1.2.5) + mustermann (1.0.1) + rack (2.0.3) + rack-protection (2.0.0) + rack + rake (12.3.0) + sinatra (2.0.0) + mustermann (~> 1.0) + rack (~> 2.0) + rack-protection (= 2.0.0) + tilt (~> 2.0) + thin (1.7.2) + daemons (~> 1.0, >= 1.0.9) + eventmachine (~> 1.0, >= 1.0.4) + rack (>= 1, < 3) + tilt (2.0.8) + +PLATFORMS + ruby + +DEPENDENCIES + rake + sinatra + thin + +BUNDLED WITH + 1.16.0