oneis 1.2.1-java → 1.2.2-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/CertificateBundle.pem +0 -0
- data/lib/js.jar +0 -0
- data/lib/manifest.rb +2 -0
- data/lib/version.txt +1 -1
- data/oneis.gemspec +2 -2
- metadata +2 -2
data/lib/CertificateBundle.pem
CHANGED
|
File without changes
|
data/lib/js.jar
CHANGED
|
File without changes
|
data/lib/manifest.rb
CHANGED
|
@@ -9,6 +9,8 @@ module PluginTool
|
|
|
9
9
|
Dir.glob("#{directory}/**/*").sort.each do |pathname|
|
|
10
10
|
# Ignore directories
|
|
11
11
|
next unless File.file? pathname
|
|
12
|
+
# Ignore Emacs backup files
|
|
13
|
+
next if pathname =~ /\~\z/
|
|
12
14
|
# Check file
|
|
13
15
|
filename = pathname.slice(directory.length + 1, pathname.length)
|
|
14
16
|
raise "Bad filename for #{filename}" unless filename =~ /\A([a-zA-Z0-9_\/\-]+\/)?([a-z0-9_-]+\.[a-z0-9]+)\z/
|
data/lib/version.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
b7aeea18fc
|
data/oneis.gemspec
CHANGED
|
@@ -3,8 +3,8 @@ Gem::Specification.new do |s|
|
|
|
3
3
|
files = Dir.glob("#{root_dir}/**/*.*").map { |x| x[root_dir.length + 1, x.length]}
|
|
4
4
|
|
|
5
5
|
s.name = 'oneis'
|
|
6
|
-
s.version = '1.2.
|
|
7
|
-
s.date = '2014-12-
|
|
6
|
+
s.version = '1.2.2'
|
|
7
|
+
s.date = '2014-12-11'
|
|
8
8
|
s.summary = "ONEIS Tools"
|
|
9
9
|
s.description = "ONEIS Developer Tools"
|
|
10
10
|
s.authors = ["ONEIS"]
|
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: oneis
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 1.2.
|
|
5
|
+
version: 1.2.2
|
|
6
6
|
platform: java
|
|
7
7
|
authors:
|
|
8
8
|
- ONEIS
|
|
@@ -10,7 +10,7 @@ autorequire:
|
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
12
|
|
|
13
|
-
date: 2014-12-
|
|
13
|
+
date: 2014-12-11 00:00:00 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: jruby-openssl
|