jekyll-attendease 0.0.0 → 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +13 -0
- data/lib/jekyll-attendease.rb +8 -2
- metadata +1 -1
data/README.md
CHANGED
@@ -38,6 +38,19 @@ attendease:
|
|
38
38
|
|
39
39
|
Remember to replace `https://your-event-subdomain.attendease.com/` with your actual event url, or crazy things will happen!
|
40
40
|
|
41
|
+
## Usage
|
42
|
+
|
43
|
+
Now the event name can easily be used in your site like so:
|
44
|
+
|
45
|
+
`{{ site.attendease.data.attendease_event_name }}`
|
46
|
+
|
47
|
+
We can also use logical expressions like so:
|
48
|
+
|
49
|
+
```
|
50
|
+
{% if site.attendease.data.attendease_has_registration %}
|
51
|
+
We have registration!
|
52
|
+
{% endif %}
|
53
|
+
```
|
41
54
|
|
42
55
|
## Contributing
|
43
56
|
|
data/lib/jekyll-attendease.rb
CHANGED
@@ -8,10 +8,16 @@ module Jekyll
|
|
8
8
|
def generate(site)
|
9
9
|
if attendease_config = site.config['attendease']
|
10
10
|
|
11
|
-
if attendease_config['api_host'] && !attendease_config['api_host'].match(/^http/)
|
11
|
+
if attendease_config['api_host'] && !attendease_config['api_host'].match(/^http(.*).attendease.com/)
|
12
12
|
raise "Is your Attendease api_host site properly in _config.yml? Needs to be something like https://myevent.attendease.com/"
|
13
13
|
else
|
14
|
-
|
14
|
+
# add a trailing slash if we are missing one.
|
15
|
+
if attendease_config['api_host'][-1, 1] != '/'
|
16
|
+
attendease_config['api_host'] += '/'
|
17
|
+
end
|
18
|
+
|
19
|
+
attendease_data_path = "#{site.config['source']}/_attendease_data"
|
20
|
+
|
15
21
|
FileUtils.mkdir_p(attendease_data_path)
|
16
22
|
|
17
23
|
update_data = true
|