postpost 0.1.0
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 +7 -0
- data/.gitignore +11 -0
- data/.idea/encodings.xml +4 -0
- data/.idea/misc.xml +7 -0
- data/.idea/modules.xml +8 -0
- data/.idea/postpost.iml +20 -0
- data/.idea/workspace.xml +197 -0
- data/.rspec +3 -0
- data/.travis.yml +7 -0
- data/Gemfile +6 -0
- data/LICENSE.txt +21 -0
- data/README.md +39 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/exe/postpost +8 -0
- data/lib/postpost/version.rb +3 -0
- data/lib/postpost.rb +8 -0
- data/postpost.gemspec +34 -0
- metadata +119 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 446ae760faf00a70808c9ab412759a0f2d3ac18c3d26513b330a2056673c6750
|
|
4
|
+
data.tar.gz: 530dc98152fb236e2c9f96ded3f463fb2c4e8791e015619abd119a62637dff57
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 72d857c702a19997e315e8427b76e7be56e5d3cf6ca55bc47ef044c21b1d2f2569003f4e4fbffb48cd7df7d50e8445bb7c40664e8d2f6a4f8af92b449494c6bc
|
|
7
|
+
data.tar.gz: 5e7715d6c83ece60d5743a3eaf9b16074138dc2d35953ad9f64371b9cbf4fe2110b7e8223d2a41b248484c34d8720e87f6a0006f2ab3cc3aa4ebb895d4a70850
|
data/.gitignore
ADDED
data/.idea/encodings.xml
ADDED
data/.idea/misc.xml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="JavaScriptSettings">
|
|
4
|
+
<option name="languageLevel" value="ES6" />
|
|
5
|
+
</component>
|
|
6
|
+
<component name="ProjectRootManager" version="2" project-jdk-name="RVM: ruby-2.3.6" project-jdk-type="RUBY_SDK" />
|
|
7
|
+
</project>
|
data/.idea/modules.xml
ADDED
data/.idea/postpost.iml
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<module type="RUBY_MODULE" version="4">
|
|
3
|
+
<component name="ModuleRunConfigurationManager">
|
|
4
|
+
<shared />
|
|
5
|
+
</component>
|
|
6
|
+
<component name="NewModuleRootManager">
|
|
7
|
+
<content url="file://$MODULE_DIR$" />
|
|
8
|
+
<orderEntry type="jdk" jdkName="RVM: ruby-2.5.1" jdkType="RUBY_SDK" />
|
|
9
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
|
10
|
+
<orderEntry type="library" scope="PROVIDED" name="bundler (v1.16.5, RVM: ruby-2.5.1) [gem]" level="application" />
|
|
11
|
+
<orderEntry type="library" scope="PROVIDED" name="clipboard (v1.3.3, RVM: ruby-2.5.1) [gem]" level="application" />
|
|
12
|
+
<orderEntry type="library" scope="PROVIDED" name="diff-lcs (v1.3, RVM: ruby-2.5.1) [gem]" level="application" />
|
|
13
|
+
<orderEntry type="library" scope="PROVIDED" name="rake (v10.5.0, RVM: ruby-2.5.1) [gem]" level="application" />
|
|
14
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec (v3.8.0, RVM: ruby-2.5.1) [gem]" level="application" />
|
|
15
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-core (v3.8.0, RVM: ruby-2.5.1) [gem]" level="application" />
|
|
16
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-expectations (v3.8.2, RVM: ruby-2.5.1) [gem]" level="application" />
|
|
17
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-mocks (v3.8.0, RVM: ruby-2.5.1) [gem]" level="application" />
|
|
18
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-support (v3.8.0, RVM: ruby-2.5.1) [gem]" level="application" />
|
|
19
|
+
</component>
|
|
20
|
+
</module>
|
data/.idea/workspace.xml
ADDED
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project version="4">
|
|
3
|
+
<component name="ChangeListManager">
|
|
4
|
+
<list default="true" id="e7d13d44-e1e2-4e7e-ac15-27c604cef65e" name="Default Changelist" comment="">
|
|
5
|
+
<change afterPath="$PROJECT_DIR$/.gitignore" afterDir="false" />
|
|
6
|
+
<change afterPath="$PROJECT_DIR$/.idea/encodings.xml" afterDir="false" />
|
|
7
|
+
<change afterPath="$PROJECT_DIR$/.idea/misc.xml" afterDir="false" />
|
|
8
|
+
<change afterPath="$PROJECT_DIR$/.idea/modules.xml" afterDir="false" />
|
|
9
|
+
<change afterPath="$PROJECT_DIR$/.idea/postpost.iml" afterDir="false" />
|
|
10
|
+
<change afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
|
|
11
|
+
<change afterPath="$PROJECT_DIR$/.rspec" afterDir="false" />
|
|
12
|
+
<change afterPath="$PROJECT_DIR$/.travis.yml" afterDir="false" />
|
|
13
|
+
<change afterPath="$PROJECT_DIR$/Gemfile" afterDir="false" />
|
|
14
|
+
<change afterPath="$PROJECT_DIR$/LICENSE.txt" afterDir="false" />
|
|
15
|
+
<change afterPath="$PROJECT_DIR$/README.md" afterDir="false" />
|
|
16
|
+
<change afterPath="$PROJECT_DIR$/Rakefile" afterDir="false" />
|
|
17
|
+
<change afterPath="$PROJECT_DIR$/bin/console" afterDir="false" />
|
|
18
|
+
<change afterPath="$PROJECT_DIR$/bin/setup" afterDir="false" />
|
|
19
|
+
<change afterPath="$PROJECT_DIR$/exe/postpost" afterDir="false" />
|
|
20
|
+
<change afterPath="$PROJECT_DIR$/lib/postpost.rb" afterDir="false" />
|
|
21
|
+
<change afterPath="$PROJECT_DIR$/lib/postpost/version.rb" afterDir="false" />
|
|
22
|
+
<change afterPath="$PROJECT_DIR$/postpost.gemspec" afterDir="false" />
|
|
23
|
+
<change afterPath="$PROJECT_DIR$/spec/postpost_spec.rb" afterDir="false" />
|
|
24
|
+
<change afterPath="$PROJECT_DIR$/spec/spec_helper.rb" afterDir="false" />
|
|
25
|
+
</list>
|
|
26
|
+
<option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
|
|
27
|
+
<option name="SHOW_DIALOG" value="false" />
|
|
28
|
+
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
29
|
+
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
|
30
|
+
<option name="LAST_RESOLUTION" value="IGNORE" />
|
|
31
|
+
</component>
|
|
32
|
+
<component name="FileEditorManager">
|
|
33
|
+
<leaf SIDE_TABS_SIZE_LIMIT_KEY="300">
|
|
34
|
+
<file pinned="false" current-in-tab="false">
|
|
35
|
+
<entry file="file://$PROJECT_DIR$/postpost.gemspec">
|
|
36
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
37
|
+
<state relative-caret-position="82">
|
|
38
|
+
<caret line="13" column="51" selection-start-line="13" selection-start-column="51" selection-end-line="13" selection-end-column="51" />
|
|
39
|
+
</state>
|
|
40
|
+
</provider>
|
|
41
|
+
</entry>
|
|
42
|
+
</file>
|
|
43
|
+
<file pinned="false" current-in-tab="true">
|
|
44
|
+
<entry file="file://$PROJECT_DIR$/exe/postpost">
|
|
45
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
46
|
+
<state relative-caret-position="120">
|
|
47
|
+
<caret line="8" lean-forward="true" selection-start-line="8" selection-end-line="8" />
|
|
48
|
+
</state>
|
|
49
|
+
</provider>
|
|
50
|
+
</entry>
|
|
51
|
+
</file>
|
|
52
|
+
<file pinned="false" current-in-tab="false">
|
|
53
|
+
<entry file="file://$PROJECT_DIR$/lib/postpost.rb">
|
|
54
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
55
|
+
<state relative-caret-position="45">
|
|
56
|
+
<caret line="3" column="26" lean-forward="true" selection-start-line="3" selection-start-column="26" selection-end-line="3" selection-end-column="26" />
|
|
57
|
+
</state>
|
|
58
|
+
</provider>
|
|
59
|
+
</entry>
|
|
60
|
+
</file>
|
|
61
|
+
</leaf>
|
|
62
|
+
</component>
|
|
63
|
+
<component name="Git.Settings">
|
|
64
|
+
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
|
65
|
+
</component>
|
|
66
|
+
<component name="IdeDocumentHistory">
|
|
67
|
+
<option name="CHANGED_PATHS">
|
|
68
|
+
<list>
|
|
69
|
+
<option value="$PROJECT_DIR$/postpost.gemspec" />
|
|
70
|
+
<option value="$PROJECT_DIR$/lib/postpost.rb" />
|
|
71
|
+
<option value="$PROJECT_DIR$/exe/postpost" />
|
|
72
|
+
</list>
|
|
73
|
+
</option>
|
|
74
|
+
</component>
|
|
75
|
+
<component name="ProjectFrameBounds" fullScreen="true">
|
|
76
|
+
<option name="y" value="23" />
|
|
77
|
+
<option name="width" value="1280" />
|
|
78
|
+
<option name="height" value="777" />
|
|
79
|
+
</component>
|
|
80
|
+
<component name="ProjectLevelVcsManager" settingsEditedManually="true" />
|
|
81
|
+
<component name="ProjectView">
|
|
82
|
+
<navigator proportions="" version="1">
|
|
83
|
+
<foldersAlwaysOnTop value="true" />
|
|
84
|
+
</navigator>
|
|
85
|
+
<panes>
|
|
86
|
+
<pane id="Scope" />
|
|
87
|
+
<pane id="ProjectPane">
|
|
88
|
+
<subPane>
|
|
89
|
+
<expand>
|
|
90
|
+
<path>
|
|
91
|
+
<item name="postpost" type="b2602c69:ProjectViewProjectNode" />
|
|
92
|
+
<item name="postpost" type="462c0819:PsiDirectoryNode" />
|
|
93
|
+
</path>
|
|
94
|
+
<path>
|
|
95
|
+
<item name="postpost" type="b2602c69:ProjectViewProjectNode" />
|
|
96
|
+
<item name="postpost" type="462c0819:PsiDirectoryNode" />
|
|
97
|
+
<item name="exe" type="462c0819:PsiDirectoryNode" />
|
|
98
|
+
</path>
|
|
99
|
+
<path>
|
|
100
|
+
<item name="postpost" type="b2602c69:ProjectViewProjectNode" />
|
|
101
|
+
<item name="postpost" type="462c0819:PsiDirectoryNode" />
|
|
102
|
+
<item name="lib" type="462c0819:PsiDirectoryNode" />
|
|
103
|
+
</path>
|
|
104
|
+
</expand>
|
|
105
|
+
<select />
|
|
106
|
+
</subPane>
|
|
107
|
+
</pane>
|
|
108
|
+
</panes>
|
|
109
|
+
</component>
|
|
110
|
+
<component name="PropertiesComponent">
|
|
111
|
+
<property name="WebServerToolWindowFactoryState" value="false" />
|
|
112
|
+
<property name="nodejs_interpreter_path.stuck_in_default_project" value="undefined stuck path" />
|
|
113
|
+
<property name="nodejs_npm_path_reset_for_default_project" value="true" />
|
|
114
|
+
</component>
|
|
115
|
+
<component name="RunDashboard">
|
|
116
|
+
<option name="ruleStates">
|
|
117
|
+
<list>
|
|
118
|
+
<RuleState>
|
|
119
|
+
<option name="name" value="ConfigurationTypeDashboardGroupingRule" />
|
|
120
|
+
</RuleState>
|
|
121
|
+
<RuleState>
|
|
122
|
+
<option name="name" value="StatusDashboardGroupingRule" />
|
|
123
|
+
</RuleState>
|
|
124
|
+
</list>
|
|
125
|
+
</option>
|
|
126
|
+
</component>
|
|
127
|
+
<component name="SpringUtil" SPRING_PRE_LOADER_OPTION="true" />
|
|
128
|
+
<component name="TaskManager">
|
|
129
|
+
<task active="true" id="Default" summary="Default task">
|
|
130
|
+
<changelist id="e7d13d44-e1e2-4e7e-ac15-27c604cef65e" name="Default Changelist" comment="" />
|
|
131
|
+
<created>1553151809881</created>
|
|
132
|
+
<option name="number" value="Default" />
|
|
133
|
+
<option name="presentableId" value="Default" />
|
|
134
|
+
<updated>1553151809881</updated>
|
|
135
|
+
<workItem from="1553151816849" duration="537000" />
|
|
136
|
+
<workItem from="1553152363379" duration="201000" />
|
|
137
|
+
</task>
|
|
138
|
+
<servers />
|
|
139
|
+
</component>
|
|
140
|
+
<component name="TimeTrackingManager">
|
|
141
|
+
<option name="totallyTimeSpent" value="738000" />
|
|
142
|
+
</component>
|
|
143
|
+
<component name="ToolWindowManager">
|
|
144
|
+
<frame x="0" y="0" width="1280" height="800" extended-state="0" />
|
|
145
|
+
<editor active="true" />
|
|
146
|
+
<layout>
|
|
147
|
+
<window_info active="true" content_ui="combo" id="Project" order="0" visible="true" weight="0.2536349" />
|
|
148
|
+
<window_info id="Structure" order="1" side_tool="true" weight="0.25" />
|
|
149
|
+
<window_info id="Favorites" order="2" side_tool="true" />
|
|
150
|
+
<window_info anchor="bottom" id="Message" order="0" />
|
|
151
|
+
<window_info anchor="bottom" id="Find" order="1" />
|
|
152
|
+
<window_info anchor="bottom" id="Run" order="2" sideWeight="0.49919224" weight="0.329927" />
|
|
153
|
+
<window_info anchor="bottom" id="Debug" order="3" weight="0.4" />
|
|
154
|
+
<window_info anchor="bottom" id="Cvs" order="4" weight="0.25" />
|
|
155
|
+
<window_info anchor="bottom" id="Inspection" order="5" weight="0.4" />
|
|
156
|
+
<window_info anchor="bottom" id="TODO" order="6" />
|
|
157
|
+
<window_info anchor="bottom" id="Docker" order="7" show_stripe_button="false" />
|
|
158
|
+
<window_info anchor="bottom" id="Database Changes" order="8" />
|
|
159
|
+
<window_info anchor="bottom" id="Version Control" order="9" />
|
|
160
|
+
<window_info anchor="bottom" id="Terminal" order="10" sideWeight="0.4983845" visible="true" weight="0.30958903" />
|
|
161
|
+
<window_info anchor="bottom" id="Event Log" order="11" sideWeight="0.5016155" side_tool="true" visible="true" weight="0.30958903" />
|
|
162
|
+
<window_info anchor="right" id="Commander" internal_type="SLIDING" order="0" type="SLIDING" weight="0.4" />
|
|
163
|
+
<window_info anchor="right" id="Ant Build" order="1" weight="0.25" />
|
|
164
|
+
<window_info anchor="right" content_ui="combo" id="Hierarchy" order="2" weight="0.25" />
|
|
165
|
+
<window_info anchor="right" id="Database" order="3" />
|
|
166
|
+
</layout>
|
|
167
|
+
</component>
|
|
168
|
+
<component name="TypeScriptGeneratedFilesManager">
|
|
169
|
+
<option name="version" value="1" />
|
|
170
|
+
</component>
|
|
171
|
+
<component name="editorHistoryManager">
|
|
172
|
+
<entry file="file://$PROJECT_DIR$/Gemfile">
|
|
173
|
+
<provider selected="true" editor-type-id="text-editor" />
|
|
174
|
+
</entry>
|
|
175
|
+
<entry file="file://$PROJECT_DIR$/postpost.gemspec">
|
|
176
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
177
|
+
<state relative-caret-position="82">
|
|
178
|
+
<caret line="13" column="51" selection-start-line="13" selection-start-column="51" selection-end-line="13" selection-end-column="51" />
|
|
179
|
+
</state>
|
|
180
|
+
</provider>
|
|
181
|
+
</entry>
|
|
182
|
+
<entry file="file://$PROJECT_DIR$/lib/postpost.rb">
|
|
183
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
184
|
+
<state relative-caret-position="45">
|
|
185
|
+
<caret line="3" column="26" lean-forward="true" selection-start-line="3" selection-start-column="26" selection-end-line="3" selection-end-column="26" />
|
|
186
|
+
</state>
|
|
187
|
+
</provider>
|
|
188
|
+
</entry>
|
|
189
|
+
<entry file="file://$PROJECT_DIR$/exe/postpost">
|
|
190
|
+
<provider selected="true" editor-type-id="text-editor">
|
|
191
|
+
<state relative-caret-position="120">
|
|
192
|
+
<caret line="8" lean-forward="true" selection-start-line="8" selection-end-line="8" />
|
|
193
|
+
</state>
|
|
194
|
+
</provider>
|
|
195
|
+
</entry>
|
|
196
|
+
</component>
|
|
197
|
+
</project>
|
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2019 adworse
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# Postpost
|
|
2
|
+
|
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/postpost`. To experiment with that code, run `bin/console` for an interactive prompt.
|
|
4
|
+
|
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
Add this line to your application's Gemfile:
|
|
10
|
+
|
|
11
|
+
```ruby
|
|
12
|
+
gem 'postpost'
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
And then execute:
|
|
16
|
+
|
|
17
|
+
$ bundle
|
|
18
|
+
|
|
19
|
+
Or install it yourself as:
|
|
20
|
+
|
|
21
|
+
$ gem install postpost
|
|
22
|
+
|
|
23
|
+
## Usage
|
|
24
|
+
|
|
25
|
+
TODO: Write usage instructions here
|
|
26
|
+
|
|
27
|
+
## Development
|
|
28
|
+
|
|
29
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
|
30
|
+
|
|
31
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
|
32
|
+
|
|
33
|
+
## Contributing
|
|
34
|
+
|
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/postpost.
|
|
36
|
+
|
|
37
|
+
## License
|
|
38
|
+
|
|
39
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
data/bin/console
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
|
|
3
|
+
require "bundler/setup"
|
|
4
|
+
require "postpost"
|
|
5
|
+
|
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
|
8
|
+
|
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
|
10
|
+
# require "pry"
|
|
11
|
+
# Pry.start
|
|
12
|
+
|
|
13
|
+
require "irb"
|
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
data/exe/postpost
ADDED
data/lib/postpost.rb
ADDED
data/postpost.gemspec
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
lib = File.expand_path('lib', __dir__)
|
|
4
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
5
|
+
require 'postpost/version'
|
|
6
|
+
|
|
7
|
+
Gem::Specification.new do |spec|
|
|
8
|
+
spec.name = 'postpost'
|
|
9
|
+
spec.version = Postpost::VERSION
|
|
10
|
+
spec.authors = ['adworse']
|
|
11
|
+
spec.email = ['wlaer@wlaer.com']
|
|
12
|
+
|
|
13
|
+
spec.summary = 'A very specific clipboard editor'
|
|
14
|
+
spec.description = 'A very specific clipboard editor'
|
|
15
|
+
spec.homepage = 'https://postpost.media'
|
|
16
|
+
spec.license = 'MIT'
|
|
17
|
+
|
|
18
|
+
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
|
19
|
+
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
|
20
|
+
|
|
21
|
+
# Specify which files should be added to the gem when it is released.
|
|
22
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
|
23
|
+
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
|
24
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
25
|
+
end
|
|
26
|
+
spec.bindir = 'exe'
|
|
27
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
28
|
+
spec.require_paths = ['lib']
|
|
29
|
+
|
|
30
|
+
spec.add_dependency 'clipboard'
|
|
31
|
+
spec.add_development_dependency 'bundler', '~> 1.16'
|
|
32
|
+
spec.add_development_dependency 'rake', '~> 10.0'
|
|
33
|
+
spec.add_development_dependency 'rspec', '~> 3.0'
|
|
34
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: postpost
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- adworse
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: exe
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2019-03-21 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: clipboard
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '0'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ">="
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '0'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: bundler
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '1.16'
|
|
34
|
+
type: :development
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '1.16'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: rake
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '10.0'
|
|
48
|
+
type: :development
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '10.0'
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: rspec
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - "~>"
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '3.0'
|
|
62
|
+
type: :development
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - "~>"
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: '3.0'
|
|
69
|
+
description: A very specific clipboard editor
|
|
70
|
+
email:
|
|
71
|
+
- wlaer@wlaer.com
|
|
72
|
+
executables:
|
|
73
|
+
- postpost
|
|
74
|
+
extensions: []
|
|
75
|
+
extra_rdoc_files: []
|
|
76
|
+
files:
|
|
77
|
+
- ".gitignore"
|
|
78
|
+
- ".idea/encodings.xml"
|
|
79
|
+
- ".idea/misc.xml"
|
|
80
|
+
- ".idea/modules.xml"
|
|
81
|
+
- ".idea/postpost.iml"
|
|
82
|
+
- ".idea/workspace.xml"
|
|
83
|
+
- ".rspec"
|
|
84
|
+
- ".travis.yml"
|
|
85
|
+
- Gemfile
|
|
86
|
+
- LICENSE.txt
|
|
87
|
+
- README.md
|
|
88
|
+
- Rakefile
|
|
89
|
+
- bin/console
|
|
90
|
+
- bin/setup
|
|
91
|
+
- exe/postpost
|
|
92
|
+
- lib/postpost.rb
|
|
93
|
+
- lib/postpost/version.rb
|
|
94
|
+
- postpost.gemspec
|
|
95
|
+
homepage: https://postpost.media
|
|
96
|
+
licenses:
|
|
97
|
+
- MIT
|
|
98
|
+
metadata: {}
|
|
99
|
+
post_install_message:
|
|
100
|
+
rdoc_options: []
|
|
101
|
+
require_paths:
|
|
102
|
+
- lib
|
|
103
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
104
|
+
requirements:
|
|
105
|
+
- - ">="
|
|
106
|
+
- !ruby/object:Gem::Version
|
|
107
|
+
version: '0'
|
|
108
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
109
|
+
requirements:
|
|
110
|
+
- - ">="
|
|
111
|
+
- !ruby/object:Gem::Version
|
|
112
|
+
version: '0'
|
|
113
|
+
requirements: []
|
|
114
|
+
rubyforge_project:
|
|
115
|
+
rubygems_version: 2.7.6
|
|
116
|
+
signing_key:
|
|
117
|
+
specification_version: 4
|
|
118
|
+
summary: A very specific clipboard editor
|
|
119
|
+
test_files: []
|