svn_log 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore ADDED
@@ -0,0 +1,4 @@
1
+ *.gem
2
+ .bundle
3
+ Gemfile.lock
4
+ pkg/*
data/.rvmrc ADDED
@@ -0,0 +1 @@
1
+ rvm use 1.9.2@svn_log
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in svn_log.gemspec
4
+ gemspec
data/README ADDED
File without changes
data/Rakefile ADDED
@@ -0,0 +1,15 @@
1
+ require 'rspec/core/rake_task'
2
+ require 'bundler/gem_tasks'
3
+
4
+ RSpec::Core::RakeTask.new(:spec) do |t|
5
+ t.rspec_opts = ['--format', 'progress' ]
6
+ end
7
+
8
+ desc "Run all specs with RCov"
9
+ RSpec::Core::RakeTask.new(:rcov) do |t|
10
+ t.rcov = true
11
+ t.rcov_opts = ['--text-report', '--save', 'coverage.info', '--exclude', 'spec_helper', '--exclude', '^/']
12
+ end
13
+
14
+ task :default => [:spec]
15
+
@@ -0,0 +1,5 @@
1
+ module SvnLog
2
+ def raw_log
3
+ `svn log -vq | grep -ve '^---\|^Changed path'`
4
+ end
5
+ end
@@ -0,0 +1,3 @@
1
+ module SvnLog
2
+ VERSION = "0.0.1"
3
+ end
data/lib/svn_log.rb ADDED
@@ -0,0 +1,5 @@
1
+ require "svn_log/version"
2
+
3
+ module SvnLog
4
+ require 'svn_log/raw'
5
+ end
data/svn_log.gemspec ADDED
@@ -0,0 +1,24 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "svn_log/version"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "svn_log"
7
+ s.version = SvnLog::VERSION
8
+ s.authors = ["Mark Simpson"]
9
+ s.email = ["verdammelt@gmail.com"]
10
+ s.homepage = ""
11
+ s.summary = %q{Gather info from an SVN repository.}
12
+ s.description = %q{Gather info from an SVN repository from the svn log command.}
13
+
14
+ s.rubyforge_project = "svn_log"
15
+
16
+ s.files = `git ls-files`.split("\n")
17
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
18
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
19
+ s.require_paths = ["lib"]
20
+
21
+ # specify any dependencies here; for example:
22
+ s.add_development_dependency "rspec"
23
+ s.add_development_dependency "rcov"
24
+ end
metadata ADDED
@@ -0,0 +1,76 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: svn_log
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Mark Simpson
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2011-09-22 00:00:00.000000000Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rspec
16
+ requirement: &2153830260 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: *2153830260
25
+ - !ruby/object:Gem::Dependency
26
+ name: rcov
27
+ requirement: &2153829840 !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ! '>='
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
33
+ type: :development
34
+ prerelease: false
35
+ version_requirements: *2153829840
36
+ description: Gather info from an SVN repository from the svn log command.
37
+ email:
38
+ - verdammelt@gmail.com
39
+ executables: []
40
+ extensions: []
41
+ extra_rdoc_files: []
42
+ files:
43
+ - .gitignore
44
+ - .rvmrc
45
+ - Gemfile
46
+ - README
47
+ - Rakefile
48
+ - lib/svn_log.rb
49
+ - lib/svn_log/raw.rb
50
+ - lib/svn_log/version.rb
51
+ - svn_log.gemspec
52
+ homepage: ''
53
+ licenses: []
54
+ post_install_message:
55
+ rdoc_options: []
56
+ require_paths:
57
+ - lib
58
+ required_ruby_version: !ruby/object:Gem::Requirement
59
+ none: false
60
+ requirements:
61
+ - - ! '>='
62
+ - !ruby/object:Gem::Version
63
+ version: '0'
64
+ required_rubygems_version: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ! '>='
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ requirements: []
71
+ rubyforge_project: svn_log
72
+ rubygems_version: 1.8.10
73
+ signing_key:
74
+ specification_version: 3
75
+ summary: Gather info from an SVN repository.
76
+ test_files: []