apogee 0.2.0 → 0.2.1

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: 55c20d8b520abe0413950e3edbbae220ce1fbcdd1c8638f6db0e4036a55f7940
4
- data.tar.gz: 333cf3e36c4ce96a5f9e8ba9d836da7f953649a063e3af874057750b7f783eb8
3
+ metadata.gz: 75c5dd9629b1fb857fffa42119f04a6668f2463ac89ba525dc35cd685814cf6e
4
+ data.tar.gz: 9045b545e9706d623871bc4dc46b6816cc5d562056f068a12a2e5cf662c6be23
5
5
  SHA512:
6
- metadata.gz: b637a99eb82bc4c06f82373313cdc78e50d066f19f16b282343fa58897972b77d0d42f4f2d63df6c030802826886155343d04b9eb31f4ee80f673087406c9469
7
- data.tar.gz: f02aa1ab7f489385890fed0e2877272ef68fb6b17431e9342a32ba287aaf9ce3fe8b43eade9a6a6969cc1114e67378d23bb64432b8aceec9df8eb48ff72726bc
6
+ metadata.gz: d6de622084e5632200c5dd104c1606957f5a6d8fab1958c8ff18ce4249876ac8eb33aa8d498ecd04b1f734c0da41f4b98224d5547befe66b5f80427abcc297e1
7
+ data.tar.gz: 607a82963e6510f571c79937c602ec3d68b42b8792fb9b14bc75a7bdd3601096d702f6168de650822eda38b329f35d6191606a887d01403bf9d89cb9fdb5b346
@@ -0,0 +1,6 @@
1
+ ## 0.2.1
2
+ - Remove bundling from installation process
3
+ - Clean up gemspec
4
+
5
+ ## 0.2.0
6
+ - First working build
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- apogee (0.1.0)
4
+ apogee (0.2.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -8,15 +8,15 @@ Gem::Specification.new do |spec|
8
8
  spec.authors = ['Brian Davies']
9
9
  spec.email = ['brian@disjunct.io']
10
10
 
11
- spec.summary = 'Dead simple static sites'
12
- spec.description = "Sometimes you don't need the complexity of a full web framework."
11
+ spec.summary = 'Static site generator for people in a hurry.'
12
+ spec.description = 'Static site generator for people in a hurry.'
13
13
  spec.homepage = 'https://github.com/bdavi/apogee'
14
14
  spec.license = 'MIT'
15
15
  spec.required_ruby_version = Gem::Requirement.new('>= 2.6.0')
16
16
 
17
17
  spec.metadata['homepage_uri'] = spec.homepage
18
18
  spec.metadata['source_code_uri'] = 'https://github.com/bdavi/apogee'
19
- spec.metadata['changelog_uri'] = 'https://github.com/bdavi/apogee/blob/main/CODE_OF_CONDUCT.md'
19
+ spec.metadata['changelog_uri'] = 'https://github.com/bdavi/apogee/blob/main/CHANGELOG.md'
20
20
 
21
21
  # Specify which files should be added to the gem when it is released.
22
22
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
@@ -23,7 +23,6 @@ module Apogee
23
23
  def install
24
24
  copy_template_files
25
25
  gsub_site_name
26
- bundle_dependencies
27
26
  end
28
27
 
29
28
  def validate
@@ -43,11 +42,6 @@ module Apogee
43
42
  end
44
43
  end
45
44
 
46
- def bundle_dependencies
47
- Kernel.system "cd #{destination_dir}"
48
- Kernel.system 'bundle install'
49
- end
50
-
51
45
  private
52
46
 
53
47
  def destination_dir
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Apogee
4
- VERSION = '0.2.0'
4
+ VERSION = '0.2.1'
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.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Davies
@@ -10,7 +10,7 @@ bindir: exe
10
10
  cert_chain: []
11
11
  date: 2020-12-15 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: Sometimes you don't need the complexity of a full web framework.
13
+ description: Static site generator for people in a hurry.
14
14
  email:
15
15
  - brian@disjunct.io
16
16
  executables:
@@ -61,7 +61,7 @@ licenses:
61
61
  metadata:
62
62
  homepage_uri: https://github.com/bdavi/apogee
63
63
  source_code_uri: https://github.com/bdavi/apogee
64
- changelog_uri: https://github.com/bdavi/apogee/blob/main/CODE_OF_CONDUCT.md
64
+ changelog_uri: https://github.com/bdavi/apogee/blob/main/CHANGELOG.md
65
65
  post_install_message:
66
66
  rdoc_options: []
67
67
  require_paths:
@@ -80,5 +80,5 @@ requirements: []
80
80
  rubygems_version: 3.0.3
81
81
  signing_key:
82
82
  specification_version: 4
83
- summary: Dead simple static sites
83
+ summary: Static site generator for people in a hurry.
84
84
  test_files: []