bastion 3.3.5 → 3.3.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 05ff44d4550c21ed07abe4397f2cb266157a3bb7
4
- data.tar.gz: bc8c1e7414eb123f406dc781543933ba2a695c8f
3
+ metadata.gz: 12794d0712a757cd81bce19294ac444dc7e20356
4
+ data.tar.gz: ed8170194c3c93d63299a808f5943be843983a27
5
5
  SHA512:
6
- metadata.gz: fd455b12ca5b6a5dc8489328af7920e7bdd77b105447d9c87e1898143298ecb096d165f1ff0474c9e899267b51fbf5a6596dde3a2a36094aa0e5239e424def2a
7
- data.tar.gz: 385d580c66ec06868fc5538d8acdb7551c8554245abdbe042acc638ccdc8cf692892f15dcc6308541124aa4ec72b06f521be2c9287429a8e3bd213289f725f09
6
+ metadata.gz: 34bed473e8ccf71a7d303f03f6019edc335e94230ae242b414da34804e7f1b3cc50d30472a0516ff33f0af59128f01a3d5e2b7a922f2ee0fc4500b27317383f5
7
+ data.tar.gz: b85b42a966143b65a3569eced0fc2a78989fc1c7a4450b7a52daa8764165d5254a040e6f772bb992bbdc688e47d0691fd8338d3a9b74c3985e30e2482fdb548f
data/Rakefile CHANGED
@@ -37,7 +37,7 @@ def setup_npm
37
37
  syscall('sudo npm -g install grunt-cli bower yo phantomjs')
38
38
 
39
39
  puts "Installing NPM dependencies"
40
- syscall("npm install #{Bastion::Engine.root} grunt") if !bastion_core?
40
+ syscall("npm install #{Bastion::Engine.root}") if !bastion_core?
41
41
  syscall("npm install") if File.exist?('package.json')
42
42
  syscall("bower install") if bastion_core?
43
43
  end
data/bastion.js CHANGED
@@ -3,11 +3,11 @@ var requireDir = require('require-dir');
3
3
  module.exports = function (grunt) {
4
4
  var configs = requireDir('./grunt');
5
5
 
6
- grunt.loadTasks(__dirname + '/node_modules/grunt-eslint/tasks');
7
- grunt.loadTasks(__dirname + '/node_modules/grunt-htmlhint/tasks');
8
- grunt.loadTasks(__dirname + '/node_modules/grunt-bower-task/tasks');
9
- grunt.loadTasks(__dirname + '/node_modules/grunt-karma/tasks');
10
- grunt.loadTasks(__dirname + '/node_modules/grunt-angular-gettext/tasks');
6
+ grunt.loadTasks('node_modules/grunt-eslint/tasks');
7
+ grunt.loadTasks('node_modules/grunt-htmlhint/tasks');
8
+ grunt.loadTasks('node_modules/grunt-bower-task/tasks');
9
+ grunt.loadTasks('node_modules/grunt-karma/tasks');
10
+ grunt.loadTasks('node_modules/grunt-angular-gettext/tasks');
11
11
 
12
12
  grunt.initConfig(configs);
13
13
 
@@ -1,3 +1,3 @@
1
1
  module Bastion
2
- VERSION = "3.3.5"
2
+ VERSION = "3.3.6"
3
3
  end
@@ -1,3 +1,4 @@
1
+ BASTION_MODULES = [];
1
2
  angular.module('Bastion').value('currentLocale', 'Here');
2
3
  angular.module('Bastion').value('CurrentOrganization', "ACME");
3
4
  angular.module('Bastion').value('Authorization', {});
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bastion
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.3.5
4
+ version: 3.3.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric D Helms
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-10-20 00:00:00.000000000 Z
12
+ date: 2016-10-21 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: angular-rails-templates