apogee 0.2.1 → 0.2.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
  SHA256:
3
- metadata.gz: 75c5dd9629b1fb857fffa42119f04a6668f2463ac89ba525dc35cd685814cf6e
4
- data.tar.gz: 9045b545e9706d623871bc4dc46b6816cc5d562056f068a12a2e5cf662c6be23
3
+ metadata.gz: aad917a3d71843e1a634fa4b6c87961000093e9a3c016d4612f4a920ed86a5d9
4
+ data.tar.gz: 01004ef453a34bab1b334ede7f4969914e028cb95250f57216e1272c873e153c
5
5
  SHA512:
6
- metadata.gz: d6de622084e5632200c5dd104c1606957f5a6d8fab1958c8ff18ce4249876ac8eb33aa8d498ecd04b1f734c0da41f4b98224d5547befe66b5f80427abcc297e1
7
- data.tar.gz: 607a82963e6510f571c79937c602ec3d68b42b8792fb9b14bc75a7bdd3601096d702f6168de650822eda38b329f35d6191606a887d01403bf9d89cb9fdb5b346
6
+ metadata.gz: 2382da1c114c76b7d5dd8a5d01f1c3a067df5f5ff0cd9593626310b500e059b445c4780ebf9bd237258a2c261ace115841b92c9386fac512118ad240d97c8a19
7
+ data.tar.gz: 171097d2ba84ac9bf8084a9e8f2f90ba16932fe5fc87865f8bafa6a0a4a618f03f5f36f07df805c4c187cba4b6047c28ec81a9792493520fc35baa02340c1cc1
@@ -1,3 +1,7 @@
1
+ ## 0.2.2
2
+ - Improve README.md
3
+ - Switch to bundled dependencies in template now that gem is avaialbe on rubygems.org
4
+
1
5
  ## 0.2.1
2
6
  - Remove bundling from installation process
3
7
  - Clean up gemspec
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- apogee (0.2.0)
4
+ apogee (0.2.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -21,7 +21,13 @@ You may create a new site from the command line with:
21
21
  $ apogee new site_name
22
22
  ```
23
23
 
24
- Your site is now fully configured and ready to use:
24
+ Next, install the Ruby dependencies:
25
+ ```bash
26
+ $ cd site_name
27
+ $ bundle install
28
+ ```
29
+
30
+ Your site is now ready to use:
25
31
  ```
26
32
  site_name
27
33
  ├── dist <---------------- Rendered final site
@@ -44,7 +50,7 @@ site_name
44
50
  ### Build the final deployable site from your source files:
45
51
  Render your deployable site using:
46
52
  ```bash
47
- $ apogee build
53
+ $ bundle exec apogee build
48
54
  ```
49
55
 
50
56
  Pages are rendered inside their respective layouts.
@@ -8,8 +8,9 @@ Gem::Specification.new do |spec|
8
8
  spec.authors = ['Brian Davies']
9
9
  spec.email = ['brian@disjunct.io']
10
10
 
11
- spec.summary = 'Static site generator for people in a hurry.'
12
- spec.description = 'Static site generator for people in a hurry.'
11
+ spec.summary = 'Apogee is a static site generator for people in a hurry.'
12
+ spec.description = 'Apogee is a static site generator for people in a hurry. ' \
13
+ "Sometimes you just don't need the hassle of a full framework"
13
14
  spec.homepage = 'https://github.com/bdavi/apogee'
14
15
  spec.license = 'MIT'
15
16
  spec.required_ruby_version = Gem::Requirement.new('>= 2.6.0')
@@ -2,6 +2,7 @@
2
2
 
3
3
  source 'https://rubygems.org'
4
4
 
5
+ gem 'apogee'
5
6
  gem 'guard'
6
7
  gem 'guard-livereload'
7
8
  gem 'guard-yield'
@@ -2,7 +2,7 @@
2
2
 
3
3
  WATCH_PATTERN = %r{^src/.*}.freeze
4
4
 
5
- run_build = proc { system('apogee build') }
5
+ run_build = proc { system('bundle exec apogee build') }
6
6
 
7
7
  guard :yield, { run_on_modifications: run_build } do
8
8
  watch(WATCH_PATTERN)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Apogee
4
- VERSION = '0.2.1'
4
+ VERSION = '0.2.2'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: apogee
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Davies
@@ -10,7 +10,8 @@ bindir: exe
10
10
  cert_chain: []
11
11
  date: 2020-12-15 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: Static site generator for people in a hurry.
13
+ description: Apogee is a static site generator for people in a hurry. Sometimes you
14
+ just don't need the hassle of a full framework
14
15
  email:
15
16
  - brian@disjunct.io
16
17
  executables:
@@ -80,5 +81,5 @@ requirements: []
80
81
  rubygems_version: 3.0.3
81
82
  signing_key:
82
83
  specification_version: 4
83
- summary: Static site generator for people in a hurry.
84
+ summary: Apogee is a static site generator for people in a hurry.
84
85
  test_files: []