File tree 3 files changed +15
-13
lines changed
3 files changed +15
-13
lines changed Original file line number Diff line number Diff line change @@ -3,10 +3,11 @@ source 'https://rubygems.org'
3
3
gem 'bundler' , '2.3.4'
4
4
5
5
# Main site dependencies
6
- gem 'awestruct' , '0.6.1 '
6
+ gem 'awestruct' , '0.6.5 '
7
7
gem 'htmlcompressor'
8
8
gem 'uglifier'
9
9
gem 'json'
10
+ gem 'haml' , '< 6.0' # Haml 6 would require udpating our filter registration code
10
11
11
12
# Enable a Markdown gem (only rdiscount seems to work w/ the site):
12
13
gem 'rdiscount' , '~> 2.0.7' , :platforms => [ :ruby ]
Original file line number Diff line number Diff line change 1
1
GEM
2
2
remote: https://rubygems.org/
3
3
specs:
4
- addressable (2.8.1 )
4
+ addressable (2.8.3 )
5
5
public_suffix (>= 2.0.2 , < 6.0 )
6
6
ansi (1.5.0 )
7
7
asciidoctor (2.0.18 )
8
8
ast (2.4.2 )
9
- awestruct (0.6.1 )
10
- asciidoctor (>= 1.5.2 , < 3.0 )
9
+ awestruct (0.6.5 )
10
+ asciidoctor (>= 1.5.2 )
11
11
git (~> 1.2 , >= 1.2.6 )
12
12
guard (~> 2.0 , >= 2.13.0 )
13
13
guard-livereload (~> 2.0 , >= 2.1.2 )
14
- haml (>= 4.0.5 , < 6.0 )
14
+ haml (>= 4.0.5 )
15
15
listen (~> 3.1 )
16
16
logging (~> 2.2 )
17
17
mime-types (~> 3.0 )
30
30
execjs (2.8.1 )
31
31
ffi (1.15.5 )
32
32
formatador (1.1.0 )
33
- git (1.13.1 )
33
+ git (1.18.0 )
34
34
addressable (~> 2.8 )
35
35
rchardet (~> 1.8 )
36
36
guard (2.18.0 )
68
68
method_source (1.0.0 )
69
69
mime-types (3.4.1 )
70
70
mime-types-data (~> 3.2015 )
71
- mime-types-data (3.2022.0105 )
71
+ mime-types-data (3.2023.0218.1 )
72
72
multi_json (1.15.0 )
73
73
nenv (0.3.0 )
74
74
netrc (0.11.0 )
83
83
coderay (~> 1.1 )
84
84
method_source (~> 1.0 )
85
85
public_suffix (5.0.1 )
86
- rack (2.2.6.2 )
86
+ rack (2.2.6.4 )
87
87
rake (13.0.6 )
88
88
rb-fsevent (0.11.2 )
89
89
rb-inotify (0.10.1 )
@@ -108,22 +108,23 @@ GEM
108
108
shellany (0.0.1 )
109
109
temple (0.10.0 )
110
110
thor (1.2.1 )
111
- tilt (2.0.11 )
111
+ tilt (2.1.0 )
112
112
uglifier (4.2.0 )
113
113
execjs (>= 0.3.0 , < 3 )
114
114
unf (0.1.4 )
115
115
unf_ext
116
116
unf_ext (0.0.8.2 )
117
- webrick (1.7.0 )
117
+ webrick (1.8.1 )
118
118
119
119
PLATFORMS
120
120
ruby
121
121
122
122
DEPENDENCIES
123
- awestruct (= 0.6.1 )
123
+ awestruct (= 0.6.5 )
124
124
bundler (= 2.3.4 )
125
125
guard
126
126
guard-livereload
127
+ haml (< 6.0 )
127
128
htmlcompressor
128
129
json
129
130
rake
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ task :default => :preview
31
31
task :init do
32
32
cmd = "bundle check"
33
33
msg cmd
34
- system cmd or raise "Bundle dependencies not satisfied. Run 'rake setup' first" , :warn
34
+ system cmd or raise StandardError , "Bundle dependencies not satisfied. Run 'rake setup' first"
35
35
end
36
36
37
37
desc 'Setup the environment to run Awestruct using Bundler'
102
102
def run_awestruct ( args )
103
103
cmd = "bundle exec awestruct #{ args } "
104
104
msg cmd
105
- system cmd or raise "ERROR: Running Awestruct failed."
105
+ system cmd or raise StandardError , "ERROR: Running Awestruct failed."
106
106
end
107
107
108
108
def get_profile ( args )
You can’t perform that action at this time.
0 commit comments