aureus 2.1.1 → 2.1.2

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: 95e3e11deaed614618370e136f416ab65bbf82a4
4
- data.tar.gz: 525620ab390ca74d07490588cdabb5e780991a6c
3
+ metadata.gz: d57307368f24ba868423689b307f4ec1e1dd60cd
4
+ data.tar.gz: ea24f5fb6685da3e39e81494a7ec959c59933a7c
5
5
  SHA512:
6
- metadata.gz: b2fc0f1804b51077eb7fdd679ed13dd147c008eab69d544c34afe0b8ccb862e1af8a9040e840e8c670ed8c81cec2ca8f808ad74f002d4f167edb2fe8581e3091
7
- data.tar.gz: 09e6503a322dd38f6e5897bacda89d80059c21aa22d9dedab3ce56e633a1e9aaeb85ca0d0fbc928ec750dc7321e70f0d9195856544c37dca37003b45be584d6d
6
+ metadata.gz: 744f9f23c8684384ca2ece50e19b02e43969281ce18ed13d9a3165796f09bf6400e2f654f8530b1f90f1d68f48d6ea004258f17b7fc1c88e5247868640afa6db
7
+ data.tar.gz: 8f26ddf988fcc78c02b6247e8c82206b6e4a344a9b1fa8d018da6b98d80cb2c8318250aafb02e58bcb63eb875c4c0a725f3928af552f0b3f7a19be04f36816b4
data/Gemfile CHANGED
@@ -1,7 +1,7 @@
1
1
  source 'http://rubygems.org'
2
2
  gemspec
3
3
 
4
- group :test do
4
+ group :development, :test do
5
5
  gem 'rspec-rails'
6
6
  gem 'combustion'
7
7
  gem 'actionpack'
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- aureus (2.1.1)
4
+ aureus (2.1.2)
5
5
  formtastic (= 2.3.0.rc2)
6
6
  haml-rails (~> 0.5)
7
7
  jquery-datatables-rails (~> 1.12)
@@ -92,20 +92,20 @@ GEM
92
92
  rspec-core (~> 2.14.0)
93
93
  rspec-expectations (~> 2.14.0)
94
94
  rspec-mocks (~> 2.14.0)
95
- sass (3.2.18)
96
- sass-rails (4.0.2)
95
+ sass (3.2.19)
96
+ sass-rails (4.0.3)
97
97
  railties (>= 4.0.0, < 5.0)
98
98
  sass (~> 3.2.0)
99
99
  sprockets (~> 2.8, <= 2.11.0)
100
- sprockets-rails (~> 2.0.0)
100
+ sprockets-rails (~> 2.0)
101
101
  sprockets (2.10.1)
102
102
  hike (~> 1.2)
103
103
  multi_json (~> 1.0)
104
104
  rack (~> 1.0)
105
105
  tilt (~> 1.1, != 1.3.0)
106
- sprockets-rails (2.0.1)
107
- actionpack (>= 3.0)
108
- activesupport (>= 3.0)
106
+ sprockets-rails (2.1.0)
107
+ actionpack (>= 4.0)
108
+ activesupport (>= 4.0)
109
109
  sprockets (~> 2.8)
110
110
  sqlite3 (1.3.8)
111
111
  thor (0.18.1)
@@ -9,8 +9,8 @@ var aureus_default_options = {
9
9
  };
10
10
 
11
11
  function aureus(options) {
12
- window.aureus = { options: jQuery.extend({}, aureus_default_options, options || {}) };
13
- _aureus_remove_messages_after(window.aureus.options.remove_messages_after);
12
+ window.__aureus = { options: jQuery.extend({}, aureus_default_options, options || {}) };
13
+ _aureus_remove_messages_after(window.__aureus.options.remove_messages_after);
14
14
  _aureus_datatables_decorate();
15
15
  _aureus_simple_map();
16
16
  _aureus_dropdown();
@@ -66,7 +66,7 @@ function _aureus_simple_map() {
66
66
  var el = $(this);
67
67
  el.height(el.data('height'));
68
68
  var pos = [el.data('latitude'), el.data('longitude')];
69
- var lmap = L.mapbox.map(this, window.aureus.options['mapbox_id'],{attributionControl: false}).setView(pos, el.data('zoom'));
69
+ var lmap = L.mapbox.map(this, window.__aureus.options['mapbox_id'],{attributionControl: false}).setView(pos, el.data('zoom'));
70
70
  L.marker(pos).addTo(lmap);
71
71
  });
72
72
  }
@@ -1,3 +1,3 @@
1
1
  module Aureus
2
- VERSION = '2.1.1'
2
+ VERSION = '2.1.2'
3
3
  end
@@ -1,4 +1,4 @@
1
- ActiveRecord::Schema.define version: 20120717133935 do
1
+ ActiveRecord::Schema.define do
2
2
  create_table 'resources', force: true do |t|
3
3
  t.string 'title'
4
4
  t.string 'text'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aureus
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.1
4
+ version: 2.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joël Gähhwiler
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-03-23 00:00:00.000000000 Z
11
+ date: 2014-04-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sass-rails