texy 0.9.0 → 0.9.1
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.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/texy.rb +0 -13
- data/lib/texy/version.rb +1 -1
- metadata +1 -2
- data/lib/texy/documents/change_order.rb +0 -30
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 902e7ad49a4ea647683fb8bdc04e1c1bc45997a9c5f50531e9754d84e387fe30
|
|
4
|
+
data.tar.gz: 1b48a30dd447e048f578d57e6935bfa0ce8e1e0f61ddd9cb5e427cddabc511e7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bc3c5fc24a0079703a0d7aea7d400b7dc9726f7548fbfc75be8685b8dc9c147a8b03bb7d9fe3b506c45c5ae8ad241f41579c4865a8cacfc4a3c59145955182c5
|
|
7
|
+
data.tar.gz: 6b5d96f7799211196b2b8572fad0f282ba149e53562ebd524ab6c22a964dc4dbb0bd7d0629667c799f00c703c907ebb47166c3bd070c14eb2bcd12c8572259b1
|
data/Gemfile.lock
CHANGED
data/lib/texy.rb
CHANGED
|
@@ -40,19 +40,6 @@ module Texy
|
|
|
40
40
|
exit
|
|
41
41
|
end
|
|
42
42
|
|
|
43
|
-
desc "new-change", "Create a new Change Order"
|
|
44
|
-
def new_change
|
|
45
|
-
@repository = Documents::ChangeOrder.repository
|
|
46
|
-
@object = Documents::ChangeOrder.new
|
|
47
|
-
|
|
48
|
-
set_up_environment
|
|
49
|
-
|
|
50
|
-
populate_code(object: @object)
|
|
51
|
-
rescue SystemExit, Interrupt
|
|
52
|
-
say "Exiting"
|
|
53
|
-
exit
|
|
54
|
-
end
|
|
55
|
-
|
|
56
43
|
desc "new-release-notes", "Create new Release Notes"
|
|
57
44
|
def new_release_notes
|
|
58
45
|
@repository = Documents::ReleaseNotes.repository
|
data/lib/texy/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: texy
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stephen Dolan
|
|
@@ -147,7 +147,6 @@ files:
|
|
|
147
147
|
- lib/texy/configuration/company.rb
|
|
148
148
|
- lib/texy/configuration/person.rb
|
|
149
149
|
- lib/texy/document.rb
|
|
150
|
-
- lib/texy/documents/change_order.rb
|
|
151
150
|
- lib/texy/documents/release_notes.rb
|
|
152
151
|
- lib/texy/documents/statement_of_work.rb
|
|
153
152
|
- lib/texy/version.rb
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Texy
|
|
4
|
-
module Documents
|
|
5
|
-
class ChangeOrder < Document
|
|
6
|
-
def initialize
|
|
7
|
-
super
|
|
8
|
-
end
|
|
9
|
-
|
|
10
|
-
def self.repository
|
|
11
|
-
"git@bitbucket.org:neadwerx/leads.git"
|
|
12
|
-
end
|
|
13
|
-
|
|
14
|
-
def type_humanized
|
|
15
|
-
"Change Order"
|
|
16
|
-
end
|
|
17
|
-
|
|
18
|
-
def type
|
|
19
|
-
"change_order"
|
|
20
|
-
end
|
|
21
|
-
|
|
22
|
-
def config_placeholders
|
|
23
|
-
super.merge(
|
|
24
|
-
/TEMPLATE-PLACEHOLDER-CLIENT-HOURLY-RATE/ => ->(config) { config.client.rate },
|
|
25
|
-
/TEMPLATE-PLACEHOLDER-CLIENT-RATE-MULTIPLIER/ => ->(config) { config.client.rate_multiplier }
|
|
26
|
-
)
|
|
27
|
-
end
|
|
28
|
-
end
|
|
29
|
-
end
|
|
30
|
-
end
|