gitpartyguest 0.0.9 → 0.0.10
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.
@@ -0,0 +1,11 @@
|
|
1
|
+
#Synch Increment is a way to indicate how often a rollback point will be set in git.
|
2
|
+
#The default is minutes which means a new clone will be
|
3
|
+
#created if the previous synch was longer than one minute ago.
|
4
|
+
# the other increments are:
|
5
|
+
# 'second'
|
6
|
+
# 'minute'
|
7
|
+
# 'hour'
|
8
|
+
# 'day'
|
9
|
+
::SYNCHINC = 'minute'
|
10
|
+
|
11
|
+
::REPOSERVER = 'git@github.com:sfweb/SFBlogSite.git'
|
data/config/routes.rb
ADDED
data/gitpartyguest.gemspec
CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |gem|
|
|
10
10
|
gem.summary = %q{gonna start out small to make a gem}
|
11
11
|
gem.homepage = ""
|
12
12
|
|
13
|
-
gem.files = `git ls-files`.split($\) + Dir["lib/generators/*"]
|
13
|
+
gem.files = `git ls-files`.split($\) + Dir["config/*"] + Dir["lib/generators/*"]
|
14
14
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
15
15
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
16
16
|
gem.name = "gitpartyguest"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gitpartyguest
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.10
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -23,6 +23,8 @@ files:
|
|
23
23
|
- LICENSE
|
24
24
|
- README.md
|
25
25
|
- Rakefile
|
26
|
+
- config/initializers/repo_init.rb
|
27
|
+
- config/routes.rb
|
26
28
|
- gitpartyguest.gemspec
|
27
29
|
- lib/generators/gitpartyguest/initializer/USAGE
|
28
30
|
- lib/generators/gitpartyguest/initializer/initializer_generator.rb
|