eris 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +20 -0
- data/lib/eris/templates/ci_build.sh +1 -1
- data/lib/eris/templates/specHelper.js +9 -0
- data/lib/eris/version.rb +1 -1
- metadata +5 -4
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2011, Hewlett-Packard Development Company, L.P.
|
2
|
+
All rights reserved.
|
3
|
+
|
4
|
+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
|
5
|
+
following conditions are met:
|
6
|
+
|
7
|
+
- Redistributions of source code must retain the above copyright notice, this list of conditions and the following
|
8
|
+
disclaimer.
|
9
|
+
- Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following
|
10
|
+
disclaimer in the documentation and/or other materials provided with the distribution.
|
11
|
+
- Neither the name of Hewlett-Packard Development Company, L.P. nor the names of its contributors may be used to endorse or
|
12
|
+
promote products derived from this software without specific prior written permission.
|
13
|
+
|
14
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
15
|
+
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
16
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
17
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
18
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
19
|
+
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
20
|
+
USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
@@ -11,6 +11,6 @@ gem list --local bundler | grep bundler || gem install bundler || exit 1
|
|
11
11
|
echo USER=$USER && ruby --version && which ruby && which bundle
|
12
12
|
|
13
13
|
# conditionally install project gems from Gemfile
|
14
|
-
bundle check || bundle install
|
14
|
+
bundle check || bundle install || exit 1
|
15
15
|
|
16
16
|
IS_CI_BOX=true bundle exec rake jasmine:ci
|
@@ -1,3 +1,12 @@
|
|
1
|
+
function addCss(cssCode) {
|
2
|
+
var styleElement = document.createElement("style");
|
3
|
+
styleElement.type = "text/css";
|
4
|
+
styleElement.appendChild(document.createTextNode(cssCode));
|
5
|
+
document.getElementsByTagName("head")[0].appendChild(styleElement);
|
6
|
+
}
|
7
|
+
|
8
|
+
addCss("body { overflow: auto !important; }");
|
9
|
+
|
1
10
|
function getJson(filename) {
|
2
11
|
return enyo.g11n.Utils.getJsonFile({path: 'spec/unit/source/mock', locale: filename});
|
3
12
|
}
|
data/lib/eris/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: eris
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 25
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 3
|
10
|
+
version: 0.0.3
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- HP webOS
|
@@ -16,7 +16,7 @@ autorequire:
|
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
18
|
|
19
|
-
date: 2011-07-
|
19
|
+
date: 2011-07-22 00:00:00 -07:00
|
20
20
|
default_executable:
|
21
21
|
dependencies:
|
22
22
|
- !ruby/object:Gem::Dependency
|
@@ -215,6 +215,7 @@ files:
|
|
215
215
|
- .rspec
|
216
216
|
- .rvmrc
|
217
217
|
- Gemfile
|
218
|
+
- LICENSE
|
218
219
|
- README.md
|
219
220
|
- Rakefile
|
220
221
|
- bin/eris
|