ruboto 1.4.1 → 1.5.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -7,8 +7,8 @@ module Ruboto
7
7
  include Ruboto::Util::Verify
8
8
  REPOSITORY_BASE = 'http://dl-ssl.google.com/android/repository'
9
9
  REPOSITORY_URL = "#{REPOSITORY_BASE}/repository-10.xml"
10
- SDK_DOWNLOAD_PAGE = 'http://developer.android.com/sdk/index.html?hl=sk'
11
10
  ADDONS_URL = "#{REPOSITORY_BASE}/extras/intel/addon.xml"
11
+ SDK_DOWNLOAD_PAGE = 'https://developer.android.com/studio/index.html'
12
12
 
13
13
  RUBOTO_GEM_ROOT = File.expand_path '../../../..', __FILE__
14
14
  WINDOWS_ELEVATE_CMD = "#{RUBOTO_GEM_ROOT}/bin/elevate_32.exe -c -w"
@@ -110,23 +110,27 @@ module Ruboto
110
110
  end
111
111
  end
112
112
 
113
- def get_tools_version(type='tool', repo_url = REPOSITORY_URL)
113
+ def get_tools_version(type='tool', repo_url = REPOSITORY_URL, host_os = nil)
114
114
  require 'rexml/document'
115
115
  require 'open-uri'
116
116
 
117
117
  doc = REXML::Document.new(open(repo_url))
118
- doc.root.elements.to_a("sdk:#{type}/sdk:revision").map do |t|
119
- major = t.elements['sdk:major']
120
- minor = t.elements['sdk:minor']
121
- micro = t.elements['sdk:micro']
122
- prev = t.elements['sdk:preview']
118
+ doc.root.elements.to_a("sdk:#{type}").map do |t|
119
+ r = t.elements['sdk:revision']
120
+ major = r.elements['sdk:major']
121
+ minor = r.elements['sdk:minor']
122
+ micro = r.elements['sdk:micro']
123
+ prev = r.elements['sdk:preview']
123
124
  next if prev
125
+ url = t.elements['sdk:archives/sdk:archive/sdk:url'].text
126
+ pkg_host_os = t.elements['sdk:archives/sdk:archive/sdk:host-os'].text
127
+ next if host_os && pkg_host_os != host_os
124
128
  version = major.text
125
129
  version += ".#{minor.text}" if minor
126
130
  version += ".#{micro.text}" if micro
127
131
  version += "_rc#{prev.text}" if prev
128
- version
129
- end.compact.sort_by { |v| Gem::Version.new(v.gsub('_', '.')) }.last
132
+ [version, url]
133
+ end.compact.sort_by { |v| Gem::Version.new(v[0].gsub('_', '.')) }.last
130
134
  end
131
135
 
132
136
  def get_android_sdk_version
@@ -613,7 +617,7 @@ module Ruboto
613
617
  end
614
618
  if accept_all || a == 'Y' || a.empty?
615
619
  android_cmd = windows? ? 'android.bat' : 'android'
616
- update_cmd = "#{android_cmd} --silent update sdk --no-ui --filter build-tools-#{get_tools_version('build-tool')},extra-intel-Hardware_Accelerated_Execution_Manager,platform-tool,tool"
620
+ update_cmd = "#{android_cmd} --silent update sdk --no-ui --filter build-tools-#{get_tools_version('build-tool')},extra-intel-Hardware_Accelerated_Execution_Manager,platform-tool,tool -a"
617
621
  update_sdk(update_cmd, accept_all)
618
622
  check_for_build_tools
619
623
  check_for_platform_tools
@@ -624,27 +628,21 @@ module Ruboto
624
628
  end
625
629
 
626
630
  def get_new_haxm_filename
627
- version = get_tools_version('extra', ADDONS_URL)
628
- zip_version = version.gsub(/\./, '_')
629
- haxm_file_name = ''
630
-
631
631
  case android_package_os_id
632
- when MAC_OS_X
633
- haxm_file_name = "haxm-macosx_v#{zip_version}.zip"
634
- when WINDOWS
635
- haxm_file_name = "haxm-windows_v#{zip_version}.zip"
632
+ when MAC_OS_X, WINDOWS
633
+ version, file_name = get_tools_version('extra', ADDONS_URL, android_package_os_id)
636
634
  when LINUX
637
635
  puts 'HAXM installation on Linux is not supported, yet.'
638
- version = ''
636
+ file_name = version = ''
639
637
  else
640
638
  raise "Unknown host os: #{RbConfig::CONFIG['host_os']}"
641
639
  end
642
- return haxm_file_name, version
640
+
641
+ return file_name, version
643
642
  end
644
643
 
645
644
  def download_haxm(accept_all, haxm_file_name)
646
- uri = 'https://software.intel.com/sites/default/files/managed/dd/21'
647
- download_third_party(haxm_file_name, uri)
645
+ download_third_party(haxm_file_name, ADDONS_URL)
648
646
  unzip(accept_all, "#{android_haxm_directory}/#{haxm_file_name}", "#{android_haxm_directory}")
649
647
  FileUtils.rm_f "#{android_haxm_directory}/#{haxm_file_name}"
650
648
  end
@@ -791,7 +789,7 @@ module Ruboto
791
789
 
792
790
  old_config = File.read(config_file_name)
793
791
  new_config = old_config.dup
794
- new_config.gsub! /\n*# BEGIN Ruboto setup\n.*?\n# END Ruboto setup\n*/m, ''
792
+ new_config.gsub! /\n*# BEGIN Ruboto setup\n.*?\n# END Ruboto setup\n*/m, "\n\n"
795
793
  new_config << "\n\n# BEGIN Ruboto setup\n"
796
794
  new_config << "source #{rubotorc}\n"
797
795
  new_config << "# END Ruboto setup\n\n"
@@ -217,7 +217,7 @@ module Ruboto
217
217
 
218
218
  def install_jruby_jars_gem(jruby_jars_version = ENV['JRUBY_JARS_VERSION'])
219
219
  if jruby_jars_version
220
- version_requirement = " -v '#{jruby_jars_version}'"
220
+ version_requirement = %{ -v "#{jruby_jars_version}"}
221
221
  end
222
222
  `gem query -i -n jruby-jars#{version_requirement}`
223
223
  unless $? == 0
@@ -341,45 +341,31 @@ module Ruboto
341
341
 
342
342
  def update_manifest(min_sdk, target, force = false)
343
343
  log_action("\nAdding RubotoActivity, RubotoDialog, RubotoService, and SDK versions to the manifest") do
344
- # FIXME(uwe): Remove the special case 'L' when Android L is released.
345
- if target == 'L'
346
- min_sdk = 'L'
344
+ sdk_element = verify_manifest.elements['uses-sdk']
345
+ if project_api_level
346
+ min_sdk ||= project_api_level
347
+ target ||= project_api_level
348
+ elsif sdk_element
349
+ min_sdk ||= sdk_element.attributes['android:minSdkVersion']
350
+ target ||= sdk_element.attributes['android:targetSdkVersion']
347
351
  else
348
- sdk_element = verify_manifest.elements['uses-sdk']
349
- if project_api_level
350
- min_sdk ||= project_api_level
351
- target ||= project_api_level
352
- elsif sdk_element
353
- min_sdk ||= sdk_element.attributes['android:minSdkVersion']
354
- target ||= sdk_element.attributes['android:targetSdkVersion']
355
- else
356
- min_sdk ||= MINIMUM_SUPPORTED_SDK_LEVEL
357
- target ||= MINIMUM_SUPPORTED_SDK_LEVEL
358
- end
352
+ min_sdk ||= MINIMUM_SUPPORTED_SDK_LEVEL
353
+ target ||= MINIMUM_SUPPORTED_SDK_LEVEL
354
+ end
359
355
 
360
- # FIXME(uwe): Remove the L special case when Android L has been released
361
- if min_sdk == 'L'
362
- puts "Android L detected."
363
- elsif min_sdk.to_i < MINIMUM_SUPPORTED_SDK_LEVEL
364
- min_sdk = MINIMUM_SUPPORTED_SDK_LEVEL
365
- end
356
+ if min_sdk.to_i < MINIMUM_SUPPORTED_SDK_LEVEL
357
+ min_sdk = MINIMUM_SUPPORTED_SDK_LEVEL
358
+ end
366
359
 
367
- if target.to_i < MINIMUM_SUPPORTED_SDK_LEVEL
368
- target = MINIMUM_SUPPORTED_SDK_LEVEL
369
- end
360
+ if target.to_i < MINIMUM_SUPPORTED_SDK_LEVEL
361
+ target = MINIMUM_SUPPORTED_SDK_LEVEL
370
362
  end
371
- # EMXIF
372
363
 
373
364
  app_element = verify_manifest.elements['application']
374
365
  app_element.attributes['android:icon'] ||= '@drawable/ic_launcher'
375
366
 
376
- # FIXME(uwe): Simplify when we stop supporting Android 2.3.x
377
- # FIXME(uwe): Simplify when Android L is released
378
- if min_sdk == 'L' || min_sdk.to_i >= 11
379
- app_element.attributes['android:hardwareAccelerated'] ||= 'true'
380
- app_element.attributes['android:largeHeap'] ||= 'true'
381
- end
382
- # EMXIF
367
+ app_element.attributes['android:hardwareAccelerated'] ||= 'true'
368
+ app_element.attributes['android:largeHeap'] ||= 'true'
383
369
 
384
370
  unless app_element.elements["activity[@android:name='org.ruboto.RubotoActivity']"]
385
371
  app_element.add_element 'activity', {'android:name' => 'org.ruboto.RubotoActivity', 'android:exported' => 'false'}
@@ -1,4 +1,4 @@
1
1
  module Ruboto
2
- VERSION = '1.4.1'
2
+ VERSION = '1.5.0'
3
3
  UPDATE_VERSION_LIMIT = '0.7.0'
4
4
  end
@@ -15,10 +15,13 @@ module AppTestMethods
15
15
  # FIXME(uwe): We should try using YAML as well
16
16
  assert_code 'YamlLoads', "require 'yaml'" unless has_stupid_crash
17
17
 
18
- assert_code 'ReadSourceFile', 'File.read(__FILE__)'
19
- # noinspection RubyExpressionInStringInspection
20
- assert_code 'DirListsFilesInApk', 'Dir["#{File.dirname(__FILE__)}/*"].each{|f| raise "File #{f.inspect} not found" unless File.exists?(f)}'
21
- assert_code('RepeatRubotoImportWidget', 'ruboto_import_widget :TextView ; ruboto_import_widget :TextView') unless has_stupid_crash
18
+ # FIXME(uwe): Remove condition when we stop testing api level <= 15 or JRuby <= 1.7.13
19
+ unless ANDROID_OS <= 15 && ON_LINUX && JRUBY_JARS_VERSION <= Gem::Version.new('1.7.13')
20
+ assert_code 'ReadSourceFile', 'File.read(__FILE__)'
21
+ # noinspection RubyExpressionInStringInspection
22
+ assert_code 'DirListsFilesInApk', 'Dir["#{File.dirname(__FILE__)}/*"].each{|f| raise "File #{f.inspect} not found" unless File.exists?(f)}'
23
+ assert_code('RepeatRubotoImportWidget', 'ruboto_import_widget :TextView ; ruboto_import_widget :TextView') unless has_stupid_crash
24
+ end
22
25
  end
23
26
  run_activity_tests('activity')
24
27
  end
@@ -39,26 +42,31 @@ module AppTestMethods
39
42
  def run_activity_tests(activity_dir)
40
43
  Dir[File.expand_path("#{activity_dir}/*", File.dirname(__FILE__))].each do |file|
41
44
  # FIXME(uwe): Remove when we stop testing JRuby 1.7.24 or api level 19
42
- next if file =~ /rss/ && JRUBY_JARS_VERSION <= Gem::Version.new('1.7.24') &&
43
- (RUBOTO_PLATFORM == 'STANDALONE' || RUBOTO_PLATFORM == 'CURRENT') && ANDROID_OS == 19
45
+ next if file =~ /rss|ssl/ && JRUBY_JARS_VERSION <= Gem::Version.new('1.7.25') &&
46
+ ANDROID_OS == 19 && ON_LINUX
44
47
  # EMXIF
45
48
 
46
- # FIXME(uwe): Remove when we stop testing api level < 16
49
+ # FIXME(uwe): Remove when we stop testing api level <= 15
47
50
  # FIXME(uwe): Remove when we release RubotoCore with SSL included
48
- next if file =~ /ssl/ && (ANDROID_OS < 16 ||
49
- RUBOTO_PLATFORM == 'CURRENT' || RUBOTO_PLATFORM == 'FROM_GEM' ||
50
- JRUBY_JARS_VERSION < Gem::Version.new('1.7.13') ||
51
- JRUBY_JARS_VERSION < Gem::Version.new('9.0.0.0.SNAPSHOT')) # FIXME(uwe): JRuby 9K should contain the SSLSocket fix.
51
+ # FIXME(uwe): Remove when we stop testing JRuby <= 1.7.13
52
+ next if file =~ /ssl/ && (ANDROID_OS <= 15 ||
53
+ JRUBY_JARS_VERSION <= Gem::Version.new('1.7.13') ||
54
+ RUBOTO_PLATFORM == 'CURRENT' || RUBOTO_PLATFORM == 'FROM_GEM'
55
+ )
52
56
  # EMXIF
53
57
 
54
- # FIXME(uwe): Remove when we stop testing JRuby < 1.7.4.dev
55
- next if file =~ /dir_and_file/ && (RUBOTO_PLATFORM == 'CURRENT' || JRUBY_JARS_VERSION < Gem::Version.new('1.7.4.dev'))
58
+ # FIXME(uwe): Remove when we stop testing JRuby <= 1.7.13
59
+ next if file =~ /dir_and_file/ && JRUBY_JARS_VERSION <= Gem::Version.new('1.7.13')
56
60
  # EMXIF
57
61
 
58
- # FIXME(uwe): Remove when we stop testing api level < 11
59
- next if file =~ /fragment/ && ANDROID_OS < 11
62
+ # FIXME(uwe): Remove when we stop testing JRuby <= 1.7.13
63
+ next if file =~ /read_source_file/ && JRUBY_JARS_VERSION <= Gem::Version.new('1.7.13')
60
64
  # EMXIF
61
65
 
66
+ # FIXME(uwe): Remove when we stop testing JRuby <= 1.7.13
67
+ next if file =~ /button|fragment|json|margins|navigation|no_on_create|padding|psych|rss|spinner|stack|startup_exception|subclass/ &&
68
+ ANDROID_OS <= 15 && JRUBY_JARS_VERSION <= Gem::Version.new('1.7.13') && ON_LINUX
69
+
62
70
  # FIXME(uwe): Weird total app crash when running these tests together
63
71
  # FIXME(uwe): Remove when we stop testing api level <= 15
64
72
  next if file =~ /button|fragment|margins|navigation|psych|rss|spinner|startup_exception|subclass/ && has_stupid_crash
@@ -3,7 +3,7 @@ require_relative 'test_helper'
3
3
  class ArjdbcTest < Minitest::Test
4
4
  def setup
5
5
  generate_app bundle: [
6
- [:activerecord, '<4.2.0'],
6
+ [:activerecord, '~>4.2.5'],
7
7
  :'activerecord-jdbc-adapter',
8
8
  :sqldroid,
9
9
  ]
@@ -1,4 +1,5 @@
1
1
  require File.expand_path('test_helper', File.dirname(__FILE__))
2
+ require_relative '../assets/rakelib/ruboto.device'
2
3
 
3
4
  class RakeTest < Minitest::Test
4
5
  def setup
@@ -20,8 +21,6 @@ class RakeTest < Minitest::Test
20
21
  s2 = File.read(test_filename)
21
22
  s2.gsub!(/What hath Matz wrought\?/, 'This text was changed by script!')
22
23
  File.open(test_filename, 'w') { |f| f << s2 }
23
-
24
- apk_timestamp = File.mtime("bin/#{APP_NAME}-debug.apk")
25
24
  end
26
25
  run_app_tests
27
26
 
@@ -29,29 +28,34 @@ class RakeTest < Minitest::Test
29
28
  # assert_equal apk_timestamp, File.mtime("bin/#{APP_NAME}-debug.apk"), 'APK should not have been rebuilt'
30
29
  # EMXIF
31
30
 
32
- assert_match %r{^/sdcard/Android/data/#{PACKAGE}/files/scripts$}, `adb shell ls -d /sdcard/Android/data/#{PACKAGE}/files/scripts`.chomp
31
+ assert_match %r{^#{scripts_path(PACKAGE)}$}, `adb shell ls -d #{scripts_path(PACKAGE)}`.chomp
32
+ end
33
+
34
+ def test_that_apk_is_not_built_if_nothing_has_changed
35
+ Dir.chdir APP_DIR do
36
+ apk_timestamp = apk_mtime
37
+ system 'rake debug'
38
+ assert apk_timestamp == apk_mtime, 'APK should not have been rebuilt'
39
+ end
33
40
  end
34
41
 
35
42
  # FIXME(uwe): This is actually a case where we want to just update the Ruby
36
43
  # source file instead of rebuilding the apk.
37
44
  def test_that_apk_is_built_if_only_one_ruby_source_file_has_changed
38
45
  Dir.chdir APP_DIR do
39
- apk_timestamp = File.mtime("bin/#{APP_NAME}-debug.apk")
40
- sleep 1
41
- FileUtils.touch 'src/ruboto_test_app_activity.rb'
42
- sleep 1
46
+ apk_timestamp = apk_mtime
47
+ FileUtils.touch 'src/ruboto_test_app_activity.rb', mtime: apk_timestamp + 1
43
48
  system 'rake debug'
44
- assert apk_timestamp != File.mtime("bin/#{APP_NAME}-debug.apk"),
45
- 'APK should have been rebuilt'
49
+ assert apk_timestamp != apk_mtime, 'APK should have been rebuilt'
46
50
  end
47
51
  end
48
52
 
49
53
  def test_that_apk_is_built_if_only_one_non_ruby_source_file_has_changed
50
54
  Dir.chdir APP_DIR do
51
- apk_timestamp = File.mtime("bin/#{APP_NAME}-debug.apk")
52
- FileUtils.touch 'src/not_ruby_source.properties'
55
+ apk_timestamp = apk_mtime
56
+ FileUtils.touch 'src/not_ruby_source.properties', mtime: apk_timestamp + 1
53
57
  system 'rake debug'
54
- assert apk_timestamp != File.mtime("bin/#{APP_NAME}-debug.apk"),
58
+ assert apk_timestamp != apk_mtime,
55
59
  'APK should have been rebuilt'
56
60
  end
57
61
  end
@@ -89,4 +93,10 @@ class RakeTest < Minitest::Test
89
93
  system 'adb logcat >> adb_logcat.log&' if File.exists?('adb_logcat.log')
90
94
  end
91
95
 
96
+ private
97
+
98
+ def apk_mtime
99
+ File.mtime("bin/#{APP_NAME}-debug.apk")
100
+ end
101
+
92
102
  end
@@ -4,11 +4,6 @@ require 'net/http'
4
4
  class RubotoSetupTest < Minitest::Test
5
5
  include Ruboto::Util::Setup
6
6
 
7
- SDK_DOWNLOAD_PAGE = 'http://developer.android.com/sdk/index.html?hl=sk'
8
- REPOSITORY_BASE = 'http://dl-ssl.google.com/android/repository'
9
- ADDONS_URL = "#{REPOSITORY_BASE}/extras/intel/addon.xml"
10
- HAXM_URL = 'https://software.intel.com/sites/default/files/managed/dd/21'
11
-
12
7
  def test_if_sdk_page_still_exists?
13
8
  uri = URI.parse(SDK_DOWNLOAD_PAGE)
14
9
  res = Net::HTTP.get_response(uri)
@@ -24,9 +19,9 @@ class RubotoSetupTest < Minitest::Test
24
19
  def test_if_haxm_download_still_exists?
25
20
  filename, version = get_new_haxm_filename
26
21
  unless (filename.empty? || version.empty?)
27
- uri = URI.parse("#{HAXM_URL}/#{filename}")
22
+ uri = URI.parse("#{File.dirname(ADDONS_URL)}/#{filename}")
28
23
  res = Net::HTTP.get_response(uri)
29
- assert_equal 200, res.code.to_i
24
+ assert_equal 200, res.code.to_i, uri
30
25
  end
31
26
  end
32
27
 
@@ -15,6 +15,8 @@ module RubotoTest
15
15
  include Ruboto::SdkLocations
16
16
  include Ruboto::Util::Update
17
17
 
18
+ ON_LINUX = RbConfig::CONFIG['host_os'].downcase.include?('linux')
19
+
18
20
  PROJECT_DIR = File.expand_path('..', File.dirname(__FILE__))
19
21
  $LOAD_PATH << PROJECT_DIR
20
22
 
@@ -92,9 +94,8 @@ module RubotoTest
92
94
  # FIXME(uwe): Remove when stupid crash is resolved
93
95
  def has_stupid_crash
94
96
  require 'rbconfig'
95
- ANDROID_OS <= 15 &&
96
- JRUBY_JARS_VERSION >= Gem::Version.new('1.7.19') &&
97
- RbConfig::CONFIG['host_os'].downcase.include?('linux')
97
+ ANDROID_OS <= 15 && JRUBY_JARS_VERSION >= Gem::Version.new('1.7.19') &&
98
+ ON_LINUX
98
99
  end
99
100
  # EMXIF
100
101
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruboto
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.1
4
+ version: 1.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Jackoway
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2016-01-22 00:00:00.000000000 Z
14
+ date: 2016-11-17 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: main
@@ -27,20 +27,34 @@ dependencies:
27
27
  - - "~>"
28
28
  - !ruby/object:Gem::Version
29
29
  version: '5.2'
30
+ - !ruby/object:Gem::Dependency
31
+ name: net-telnet
32
+ requirement: !ruby/object:Gem::Requirement
33
+ requirements:
34
+ - - "~>"
35
+ - !ruby/object:Gem::Version
36
+ version: 0.1.1
37
+ type: :runtime
38
+ prerelease: false
39
+ version_requirements: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - "~>"
42
+ - !ruby/object:Gem::Version
43
+ version: 0.1.1
30
44
  - !ruby/object:Gem::Dependency
31
45
  name: rake
32
46
  requirement: !ruby/object:Gem::Requirement
33
47
  requirements:
34
48
  - - "~>"
35
49
  - !ruby/object:Gem::Version
36
- version: '10.0'
50
+ version: '11.3'
37
51
  type: :runtime
38
52
  prerelease: false
39
53
  version_requirements: !ruby/object:Gem::Requirement
40
54
  requirements:
41
55
  - - "~>"
42
56
  - !ruby/object:Gem::Version
43
- version: '10.0'
57
+ version: '11.3'
44
58
  - !ruby/object:Gem::Dependency
45
59
  name: rubyzip
46
60
  requirement: !ruby/object:Gem::Requirement
@@ -80,6 +94,7 @@ executables:
80
94
  extensions: []
81
95
  extra_rdoc_files: []
82
96
  files:
97
+ - CONTRIBUTING.md
83
98
  - Gemfile
84
99
  - Gemfile.lock
85
100
  - LICENSE
@@ -90,12 +105,14 @@ files:
90
105
  - Vagrantfile
91
106
  - assets/.gitignore
92
107
  - assets/Rakefile
108
+ - assets/bin/LAST_UPDATE
93
109
  - assets/libs/dx.jar
94
110
  - assets/rakelib/ruboto.device.rb
95
111
  - assets/rakelib/ruboto.rake
96
112
  - assets/rakelib/ruboto.stdlib.rake
97
113
  - assets/rakelib/ruboto.stdlib.rb
98
114
  - assets/rakelib/ruboto.stdlib.yml
115
+ - assets/res/.DS_Store
99
116
  - assets/res/drawable-hdpi/ic_launcher.png
100
117
  - assets/res/drawable-ldpi/ic_launcher.png
101
118
  - assets/res/drawable-mdpi/ic_launcher.png
@@ -117,6 +134,7 @@ files:
117
134
  - assets/src/RubotoActivity.java
118
135
  - assets/src/RubotoBroadcastReceiver.java
119
136
  - assets/src/RubotoService.java
137
+ - assets/src/org/jruby/ext/openssl/OpenSSL.java
120
138
  - assets/src/org/ruboto/DexDex.java
121
139
  - assets/src/org/ruboto/EntryPointActivity.java
122
140
  - assets/src/org/ruboto/FrameworkHack.java
@@ -255,7 +273,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
255
273
  version: '0'
256
274
  requirements: []
257
275
  rubyforge_project: ruboto/ruboto
258
- rubygems_version: 2.4.8
276
+ rubygems_version: 2.5.1
259
277
  signing_key:
260
278
  specification_version: 4
261
279
  summary: A platform for developing apps using JRuby on Android.