albacore 1.0.0.rc.3 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -18,55 +18,55 @@ Be sure to set your [line-endings][4] correctly for your platform, *before* you
18
18
 
19
19
  tl;dr
20
20
 
21
- ```bat
22
- cmd> git clone git://github.com/Albacore/albacore.git -b dev
23
- cmd> gem install bundler
24
- cmd> bundle
25
- cmd> rake install
21
+ ```batch
22
+ > git clone git://github.com/Albacore/albacore.git -b dev
23
+ > gem install bundler
24
+ > bundle
25
+ > rake install
26
26
  ```
27
27
 
28
28
  The full instructions for building the Albacore package should be similar to other Github and Ruby gem projects. Fork or clone the Albacore/albacore repository and immediately use the *dev* branch.
29
29
 
30
- ```bat
31
- cmd> git clone git://github.com/Albacore/albacore.git -b dev
30
+ ```batch
31
+ > git clone git://github.com/Albacore/albacore.git -b dev
32
32
  ```
33
33
 
34
34
  You need the Bundler gem to install all of the Albacore development and runtime dependencies.
35
35
 
36
- ```bat
37
- cmd> gem install bundler
36
+ ```batch
37
+ > gem install bundler
38
38
  ```
39
39
 
40
40
  If you are developing on the Windows platform, you will also need the [RubyInstaller Development Kit][8] (DevKit). There are complicated [manual install instructions][9], but we recommend using the [DevKit package][10] from Chocolatey. Then, you can ask Bundler to install the dependencies listed in the `Gemfile` and `albacore.gemspec`.
41
41
 
42
- ```bat
43
- cmd> bundle install
42
+ ```batch
43
+ > bundle install
44
44
  ```
45
45
 
46
46
  You can build the Albacore `.gem` package using the built-in rake task.
47
47
 
48
- ```bat
49
- cmd> rake build
48
+ ```batch
49
+ > rake build
50
50
  ```
51
51
 
52
52
  And you may install that same gem on your local system
53
53
 
54
- ```bat
55
- cmd> gem install --local path/to/albacore.x.y.z.gem
54
+ ```batch
55
+ > gem install --local path/to/albacore.x.y.z.gem
56
56
  ```
57
57
 
58
58
  Or, you can build & install in one step
59
59
 
60
- ```bat
61
- cmd> rake install
60
+ ```batch
61
+ > rake install
62
62
  ```
63
63
 
64
64
  ## Running Tests with RSpec
65
65
 
66
66
  You can get a list of the available spec categories by running `rake -T`, they start with `specs:`. The `specs:all` task will run *all* of the specs. You can colorize the spec run output on your console with RSpec `~>2.7` and [ansicon][5]. We recommend installing the [ansicon package][6] using the [Chocolatey][7] package manager.
67
67
 
68
- ```bat
69
- cmd> rake specs:all
68
+ ```batch
69
+ > rake specs:all
70
70
  ```
71
71
 
72
72
  The NCover and NDepend specs categories require a valid license to be installed on your system or they will fail. You can ignore those failures or run the special specs category `specs:except_ncover`.
data/Guardfile CHANGED
@@ -0,0 +1,9 @@
1
+ # A sample Guardfile
2
+ # More info at https://github.com/guard/guard#readme
3
+
4
+ guard 'rspec', :version => 2 do
5
+ watch(%r{^spec/.+_spec\.rb$})
6
+ watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
7
+ watch('spec/spec_helper.rb') { "spec" }
8
+ end
9
+
data/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # Albacore
2
- [![Build Status](https://secure.travis-ci.org/Albacore/albacore.png?branch=dev)](http://travis-ci.org/Albacore/albacore) [![Gem Version](https://badge.fury.io/rb/albacore.png)](http://badge.fury.io/rb/albacore) [![Dependency Status](https://gemnasium.com/Albacore/albacore.png)](https://gemnasium.com/Albacore/albacore) [![Code Climate](https://codeclimate.com/github/Albacore/albacore.png)](https://codeclimate.com/github/Albacore/albacore)
2
+ [![Build Status](https://travis-ci.org/Albacore/albacore.svg?branch=releases%2Fv1.x)](https://travis-ci.org/Albacore/albacore) [![Gem Version](https://badge.fury.io/rb/albacore.png)](http://badge.fury.io/rb/albacore) [![Dependency Status](https://gemnasium.com/Albacore/albacore.png)](https://gemnasium.com/Albacore/albacore) [![Code Climate](https://codeclimate.com/github/Albacore/albacore.png)](https://codeclimate.com/github/Albacore/albacore)
3
3
 
4
4
  Albacore is a professional quality suite of Rake tasks for building .NET or Mono based systems. It's like MSBuild or NAnt without all the stabby-bracket XML hell! The tasks are built using a test-first approach and all tests are included in the gem. If you're new to Ruby/Rake read the [quick start][2]. Or, browse the [detailed instructions][1] for each task in our wiki.
5
5
 
@@ -10,18 +10,18 @@ Details about goals and releases can be found at [albacorebuild.net](http://alba
10
10
  Add this line to the Gemfile where you maintain the dependencies for your build (we recommend the latest RC for RubyZip 1.0 support, only remove the version spec if you know what you're doing!):
11
11
 
12
12
  ```ruby
13
- gem "albacore", "~> 1.0.rc"
13
+ gem "albacore", "~> 1.0.0"
14
14
  ```
15
15
 
16
16
  And then execute
17
17
 
18
- ```bat
19
- > bundle
18
+ ```batch
19
+ > bundle install
20
20
  ```
21
21
 
22
22
  Or install it yourself:
23
23
 
24
- ```bat
24
+ ```batch
25
25
  > gem install albacore
26
26
  ```
27
27
 
@@ -20,10 +20,10 @@ Gem::Specification.new do |spec|
20
20
  spec.require_paths = ["lib"]
21
21
 
22
22
  spec.add_dependency "nokogiri", "~> 1.5"
23
- spec.add_dependency "rake"
23
+ spec.add_dependency "rake", "~> 10.0"
24
24
  spec.add_dependency "rubyzip", "~> 1.0"
25
25
 
26
- spec.add_development_dependency "rspec"
26
+ spec.add_development_dependency "rspec", "~> 2.99"
27
27
 
28
28
  spec.rubyforge_project = "albacore"
29
29
  end
@@ -1,3 +1,3 @@
1
1
  module Albacore
2
- VERSION = "1.0.0.rc.3"
2
+ VERSION = "1.0.0"
3
3
  end
metadata CHANGED
@@ -1,8 +1,8 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: albacore
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.rc.3
5
- prerelease: 6
4
+ version: 1.0.0
5
+ prerelease:
6
6
  platform: ruby
7
7
  authors:
8
8
  - Henrik Feldt
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2014-02-13 00:00:00.000000000 Z
14
+ date: 2014-08-21 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: nokogiri
@@ -34,17 +34,17 @@ dependencies:
34
34
  requirement: !ruby/object:Gem::Requirement
35
35
  none: false
36
36
  requirements:
37
- - - ! '>='
37
+ - - ~>
38
38
  - !ruby/object:Gem::Version
39
- version: '0'
39
+ version: '10.0'
40
40
  type: :runtime
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  none: false
44
44
  requirements:
45
- - - ! '>='
45
+ - - ~>
46
46
  - !ruby/object:Gem::Version
47
- version: '0'
47
+ version: '10.0'
48
48
  - !ruby/object:Gem::Dependency
49
49
  name: rubyzip
50
50
  requirement: !ruby/object:Gem::Requirement
@@ -66,17 +66,17 @@ dependencies:
66
66
  requirement: !ruby/object:Gem::Requirement
67
67
  none: false
68
68
  requirements:
69
- - - ! '>='
69
+ - - ~>
70
70
  - !ruby/object:Gem::Version
71
- version: '0'
71
+ version: '2.99'
72
72
  type: :development
73
73
  prerelease: false
74
74
  version_requirements: !ruby/object:Gem::Requirement
75
75
  none: false
76
76
  requirements:
77
- - - ! '>='
77
+ - - ~>
78
78
  - !ruby/object:Gem::Version
79
- version: '0'
79
+ version: '2.99'
80
80
  description: Albacore is a professional quality suite of Rake tasks for building .NET
81
81
  or Mono based systems.
82
82
  email:
@@ -252,9 +252,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
252
252
  required_rubygems_version: !ruby/object:Gem::Requirement
253
253
  none: false
254
254
  requirements:
255
- - - ! '>'
255
+ - - ! '>='
256
256
  - !ruby/object:Gem::Version
257
- version: 1.3.1
257
+ version: '0'
258
258
  requirements: []
259
259
  rubyforge_project: albacore
260
260
  rubygems_version: 1.8.28