lyberteam-capistrano-devel 3.0.0.pre1 → 3.0.0

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
  SHA1:
3
- metadata.gz: 963d376df29067f0dbbc015ad16c253becb80314
4
- data.tar.gz: a95d95f53a5a784ee569d017aec57b33df52c5a2
3
+ metadata.gz: 4e2b9e46acbd3e9dcd3155e326693c3b40fc21c4
4
+ data.tar.gz: 483a2257c7d5c6b8e3c10e5ad87395e0e05a99f0
5
5
  SHA512:
6
- metadata.gz: d7de32fe0dbcd6e41e3f25f0aae804a82f6171ba7d8194f357ab6ff4af9291a3b21f328366d4987340004d7de775926fed820206ae3ff795ced0349722ce5f50
7
- data.tar.gz: f519a54f0cbddc3c2914dcf9a1de9582aaf380c6694ddcc105415526b643e3fa376da12f9a234075c26437086330be545f01abaf8c8854fa2278e2a0ec7cac54
6
+ metadata.gz: 8adde8f834638c0bdd2400817aca7d9fef31105d5fec084d3bf85486913eb497c8a6bc9c8b88710ad009698dee45fc516600e1835868045f21e2a1bdc19e6588
7
+ data.tar.gz: 0d42d060b99fdeece2e986624cabc1537092dc0efd6ff0f518375f90a87f248db33e037d9329a8ff39034ea4cbd3640f6acaa4104263f2b7f021e7831b8de2ea
data/.gitignore CHANGED
@@ -1,6 +1,36 @@
1
- Gemfile.lock
2
- pkg
3
- .DS_Store
4
- .idea
5
- .bundle
6
- bin
1
+ *.gem
2
+ *.rbc
3
+ /.config
4
+ /coverage/
5
+ /InstalledFiles
6
+ /pkg/
7
+ /spec/reports/
8
+ /test/tmp/
9
+ /test/version_tmp/
10
+ /tmp/
11
+
12
+ ## Specific to RubyMotion:
13
+ .dat*
14
+ .repl_history
15
+ build/
16
+
17
+ ## Documentation cache and generated files:
18
+ /.yardoc/
19
+ /_yardoc/
20
+ /doc/
21
+ /rdoc/
22
+
23
+ ## Environment normalisation:
24
+ /.bundle/
25
+ /lib/bundler/man/
26
+
27
+ # for a library or gem, you might want to ignore these files since the code is
28
+ # intended to run in multiple environments; otherwise, check them in:
29
+ # Gemfile.lock
30
+ # .ruby-version
31
+ # .ruby-gemset
32
+
33
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
34
+ .rvmrc
35
+
36
+ /Gemfile.lock
data/Gemfile CHANGED
@@ -1,5 +1,4 @@
1
1
  source "https://rubygems.org"
2
- source "http://sul-gems.stanford.edu"
3
2
 
4
3
  # Dependencies are defined in lyberteam-devel.gemspec
5
- gemspec
4
+ gemspec
data/README.rdoc CHANGED
@@ -2,13 +2,11 @@
2
2
 
3
3
  This gem contains classes that deal with the Capistrano deployment of SUL DLSS Ruby projects.
4
4
 
5
- == Latest Documentation
6
- - See https://consul.stanford.edu/display/dlssdev/Capistrano+Deployment+and+the+lyberteam-capistrano-devel+gem for the most recent documentation about this gem
7
-
8
5
  == Capfile assumptions
9
6
 
10
- This gem makes the following assumptions about your Ruby project (lyberteam-capistrano-devel >= 1.0)
7
+ This gem makes the following assumptions about your Ruby project (lyberteam-capistrano-devel >= 3.0)
11
8
 
9
+ - You are using Capistrano 3+
12
10
  - You use git for source control
13
11
  - The server you deploy to uses rvm, it is installed systemwide, and is the default system ruby
14
12
  - You do not have an .rvmrc checked into git (should be in your .gitignore)
@@ -16,11 +14,6 @@ This gem makes the following assumptions about your Ruby project (lyberteam-capi
16
14
  - Bundler will install specified gems into {your_project_home}/shared/bundle directory
17
15
  - You have a VERSION file that contains an x.y.z version number. This will get passed to the DLSS release board
18
16
  - Will deploy from the master branch, unless you set :branch to another branch or tag
19
- - The latest version of the gem is not compatible with scripts written before 1.0.0!!!!!
20
- -You need to remove any rvm references
21
- -whenever gem support has been removed. See section the "Setting up crontab with the whenever gem" section below
22
- - If you use ruby 1.9.x, you need to add net-ssh-krb to your gemfile
23
-
24
17
 
25
18
  == Releases
26
19
  * *0.1.0* Initial release, with Dlss::Release rake task pulled in from the lyber-core gem project.
@@ -38,7 +31,7 @@ This gem makes the following assumptions about your Ruby project (lyberteam-capi
38
31
  flat directory layout
39
32
  * *0.6.1* deploy:finalize_update task in capistrano/robots creates links to flat "shared" directory
40
33
  * *0.6.2* dlss:update_crontab runs after deploy:create_symlink
41
- * *0.7.0* Client support for the DLSS Release Board at http://dlss-releases.stanford.edu including
34
+ * *0.7.0* Client support for the DLSS Release Board including
42
35
  a command-line client (bin/post_dlss_release) as well as baked-in support within the gem
43
36
  release task (rake dlss_release) and the capistrano deployment library (dlss:log_release)
44
37
  * *0.7.1* Remove leftover send_release_announcement call from rake task
data/Rakefile CHANGED
@@ -12,8 +12,4 @@ rescue Bundler::BundlerError => e
12
12
  exit e.status_code
13
13
  end
14
14
 
15
- # To release the gem to the DLSS gemserver, run 'rake dlss_release'
16
- require 'dlss/rake/dlss_release'
17
- Dlss::Release.new
18
-
19
-
15
+ require "bundler/gem_tasks"
@@ -4,7 +4,7 @@ $:.unshift lib unless $:.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |s|
6
6
  s.name = "lyberteam-capistrano-devel"
7
- s.version = "3.0.0.pre1"
7
+ s.version = "3.0.0"
8
8
 
9
9
  s.platform = Gem::Platform::RUBY
10
10
  s.authors = ["Chris Beer","Willy Mene"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lyberteam-capistrano-devel
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0.pre1
4
+ version: 3.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Beer
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-01-16 00:00:00.000000000 Z
12
+ date: 2014-06-24 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: capistrano
@@ -117,7 +117,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
117
117
  version: 1.3.6
118
118
  requirements: []
119
119
  rubyforge_project:
120
- rubygems_version: 2.2.0
120
+ rubygems_version: 2.2.2
121
121
  signing_key:
122
122
  specification_version: 4
123
123
  summary: Capistrano recipies for use in SUL/DLSS projects