cortex-reaver 0.2.5 → 0.2.6

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/cortex_reaver.rb CHANGED
@@ -73,8 +73,8 @@ module CortexReaver
73
73
  stock_dir,
74
74
  custom_dir,
75
75
  /^((?!style).)*\.css$/,
76
- :first => config.css.first,
77
- :last => config.css.last
76
+ :first => config.css[:first],
77
+ :last => config.css[:last]
78
78
  )
79
79
 
80
80
  # Write minified CSS
@@ -95,8 +95,8 @@ module CortexReaver
95
95
  stock_dir,
96
96
  custom_dir,
97
97
  /^((?!site).)*\.js$/,
98
- :first => config.js.first,
99
- :last => config.js.last
98
+ :first => config.js[:first],
99
+ :last => config.js[:last]
100
100
  )
101
101
 
102
102
  # Write minified JS
@@ -6,8 +6,8 @@
6
6
  font-size: 80%;
7
7
  text-align: center;
8
8
  display: none;
9
- -webkit-box-shadow: 0 0px 10px #000;
10
- -moz-box-shadow: 0 0px 10px #000;
9
+ -webkit-box-shadow: 0 0px 3px #000;
10
+ -moz-box-shadow: 0 0px 3px #000;
11
11
  }
12
12
 
13
13
  .admin.bar p {
@@ -1,6 +1,6 @@
1
1
  module CortexReaver
2
2
  APP_NAME = 'Cortex Reaver'
3
- APP_VERSION = '0.2.5'
3
+ APP_VERSION = '0.2.6'
4
4
  APP_AUTHOR = 'Kyle Kingsbury'
5
5
  APP_EMAIL = 'aphyr@aphyr.com'
6
6
  APP_URL = 'http://aphyr.com'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cortex-reaver
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.5
4
+ version: 0.2.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kyle Kingsbury