mailshears 0.0.1 → 0.0.2
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/Rakefile +1 -1
- data/mailshears.gemspec +7 -4
- data/{bin → test/bin}/install-fixtures.sh +5 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e15c8726d061b6406ce5f7213d52fc8b1f9ae3e7
|
|
4
|
+
data.tar.gz: 7c04d8bd79a8894ce919856dc2abb0f87b7b9870
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b30cbd27cd0004bd2eccab8537c4cf55304713f7ba8fa588a56e6acf4884425f9fd86113b431665f1850bc64cfae0927a26c6ee09fbb24f90888b11957f2de6d
|
|
7
|
+
data.tar.gz: efcae9b45e44aa41b132dfa6971a211531f43c3774b7d0be9522c3de8c23875e2bb682457bc52f3bb1b7593b46f56cb819e63b4f1025e1b6de325c507be25442
|
data/Rakefile
CHANGED
data/mailshears.gemspec
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
|
|
3
3
|
s.name = 'mailshears'
|
|
4
|
-
s.version = '0.0.
|
|
4
|
+
s.version = '0.0.2'
|
|
5
5
|
s.platform = Gem::Platform::RUBY
|
|
6
6
|
s.authors = ['Michael Orlitzky']
|
|
7
7
|
s.email = ['michael@orlitzky.com']
|
|
@@ -30,9 +30,12 @@ Gem::Specification.new do |s|
|
|
|
30
30
|
# If you have runtime dependencies, add them here
|
|
31
31
|
s.add_runtime_dependency 'pg', '~> 0.11'
|
|
32
32
|
|
|
33
|
-
# The list of files to be contained in the gem
|
|
34
|
-
|
|
35
|
-
|
|
33
|
+
# The list of files to be contained in the gem. We can obtain it
|
|
34
|
+
# from git as long as we remember that this magic will happen and we
|
|
35
|
+
# don't add any files in weird locations or build the gem before
|
|
36
|
+
# running `git add`.
|
|
37
|
+
s.files = `git ls-files`.split("\n")
|
|
38
|
+
s.executables = ['mailshears']
|
|
36
39
|
|
|
37
40
|
s.require_path = 'lib'
|
|
38
41
|
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
#!/bin/sh
|
|
2
|
-
|
|
2
|
+
#
|
|
3
|
+
# This script installs the test fixtures into the default databases on
|
|
4
|
+
# localhost assuming everything is configured just right. Don't worry
|
|
5
|
+
# about this, go play with something else.
|
|
6
|
+
#
|
|
3
7
|
rm -rf /tmp/mailshears-test
|
|
4
8
|
mkdir -p /tmp/mailshears-test/example.com/alice
|
|
5
9
|
mkdir -p /tmp/mailshears-test/example.com/booger
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mailshears
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michael Orlitzky
|
|
@@ -47,7 +47,6 @@ extensions: []
|
|
|
47
47
|
extra_rdoc_files: []
|
|
48
48
|
files:
|
|
49
49
|
- Rakefile
|
|
50
|
-
- bin/install-fixtures.sh
|
|
51
50
|
- bin/mailshears
|
|
52
51
|
- doc/LICENSE
|
|
53
52
|
- doc/TODO
|
|
@@ -93,6 +92,7 @@ files:
|
|
|
93
92
|
- lib/rm/rm_plugin.rb
|
|
94
93
|
- lib/rm/rm_runner.rb
|
|
95
94
|
- mailshears.gemspec
|
|
95
|
+
- test/bin/install-fixtures.sh
|
|
96
96
|
- test/mailshears.test.conf.yml
|
|
97
97
|
- test/mailshears_test.rb
|
|
98
98
|
- test/sql/agendav-fixtures.sql
|