rake_tasks 2.0.3 → 2.0.4

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.
Files changed (3) hide show
  1. data/rake_tasks.gemspec +3 -3
  2. metadata +23 -22
  3. data/Gemfile.lock +0 -20
data/rake_tasks.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'rake_tasks'
3
- s.version = '2.0.3'
3
+ s.version = '2.0.4'
4
4
 
5
5
  s.summary = 'Basic rake tasks. You know you want some.'
6
6
  s.description =%Q{
@@ -16,11 +16,11 @@ mmmm yummy
16
16
 
17
17
  s.license = 'LGPLv3'
18
18
 
19
- s.extra_rdoc_files << 'README'
19
+ s.extra_rdoc_files = ['README', 'license/gplv3', 'license/lgplv3']
20
20
 
21
21
  s.require_paths = ['lib']
22
22
  s.files = Dir['*', 'lib/**/*.rb', 'lib/**/rubies.sh',
23
- 'lib/**/bundle_install.sh', 'license/*']
23
+ 'lib/**/bundle_install.sh', 'license/*'] - Dir['Gemfile.lock']
24
24
  s.test_files = Dir['test/**/*.rb']
25
25
 
26
26
  s.add_development_dependency 'mocha' , '~> 0.10.0'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rake_tasks
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.3
4
+ version: 2.0.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-12-09 00:00:00.000000000 Z
12
+ date: 2011-12-12 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: mocha
16
- requirement: &10791340 !ruby/object:Gem::Requirement
16
+ requirement: &17658200 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ~>
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: 0.10.0
22
22
  type: :development
23
23
  prerelease: false
24
- version_requirements: *10791340
24
+ version_requirements: *17658200
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: fakefs
27
- requirement: &10790600 !ruby/object:Gem::Requirement
27
+ requirement: &17656940 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ~>
@@ -32,7 +32,7 @@ dependencies:
32
32
  version: 0.4.0
33
33
  type: :development
34
34
  prerelease: false
35
- version_requirements: *10790600
35
+ version_requirements: *17656940
36
36
  description: ! 'RakeTasks provides basic rake tasks for generating documentation,
37
37
 
38
38
  building and installing gems, and running tests.
@@ -45,8 +45,9 @@ executables: []
45
45
  extensions: []
46
46
  extra_rdoc_files:
47
47
  - README
48
+ - license/gplv3
49
+ - license/lgplv3
48
50
  files:
49
- - Gemfile.lock
50
51
  - Gemfile
51
52
  - README
52
53
  - rakefile
@@ -56,24 +57,24 @@ files:
56
57
  - lib/rake_tasks/gem.rb
57
58
  - lib/rake_tasks/doc.rb
58
59
  - lib/rake_tasks/test.rb
59
- - lib/rake_tasks/lib/tests.rb
60
- - lib/rake_tasks/lib/gem.rb
61
60
  - lib/rake_tasks/lib/doc.rb
61
+ - lib/rake_tasks/lib/gem.rb
62
62
  - lib/rake_tasks/lib/parser.rb
63
+ - lib/rake_tasks/lib/tests.rb
63
64
  - lib/rake_tasks/lib/rubies.sh
64
65
  - lib/rake_tasks/lib/bundle_install.sh
66
+ - license/gplv3
65
67
  - license/lgplv3
66
68
  - license/lgplv3.png
67
- - license/gplv3
69
+ - test/integration/doc_integration_test.rb
70
+ - test/integration/gem_integration_test.rb
71
+ - test/integration/tests_integration_test.rb
72
+ - test/lib/rake_tasks_shared.rb
68
73
  - test/require.rb
69
- - test/unit/gem_unit_test.rb
70
- - test/unit/tests_unit_test.rb
71
74
  - test/unit/doc_unit_test.rb
75
+ - test/unit/gem_unit_test.rb
72
76
  - test/unit/parser_test.rb
73
- - test/integration/tests_integration_test.rb
74
- - test/integration/gem_integration_test.rb
75
- - test/integration/doc_integration_test.rb
76
- - test/lib/rake_tasks_shared.rb
77
+ - test/unit/tests_unit_test.rb
77
78
  homepage: http://www.bitbucket.org/ToadJamb/gems_rake_tasks
78
79
  licenses:
79
80
  - LGPLv3
@@ -100,12 +101,12 @@ signing_key:
100
101
  specification_version: 3
101
102
  summary: Basic rake tasks. You know you want some.
102
103
  test_files:
104
+ - test/integration/doc_integration_test.rb
105
+ - test/integration/gem_integration_test.rb
106
+ - test/integration/tests_integration_test.rb
107
+ - test/lib/rake_tasks_shared.rb
103
108
  - test/require.rb
104
- - test/unit/gem_unit_test.rb
105
- - test/unit/tests_unit_test.rb
106
109
  - test/unit/doc_unit_test.rb
110
+ - test/unit/gem_unit_test.rb
107
111
  - test/unit/parser_test.rb
108
- - test/integration/tests_integration_test.rb
109
- - test/integration/gem_integration_test.rb
110
- - test/integration/doc_integration_test.rb
111
- - test/lib/rake_tasks_shared.rb
112
+ - test/unit/tests_unit_test.rb
data/Gemfile.lock DELETED
@@ -1,20 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- rake_tasks (2.0.3)
5
-
6
- GEM
7
- remote: http://rubygems.org/
8
- specs:
9
- fakefs (0.4.0)
10
- metaclass (0.0.1)
11
- mocha (0.10.0)
12
- metaclass (~> 0.0.1)
13
-
14
- PLATFORMS
15
- ruby
16
-
17
- DEPENDENCIES
18
- fakefs (~> 0.4.0)
19
- mocha (~> 0.10.0)
20
- rake_tasks!