organize 1.1.0 → 1.1.1

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.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- organize (1.0.1)
4
+ organize (1.1.1)
5
5
  optitron (~> 0.2)
6
6
 
7
7
  GEM
data/Rakefile CHANGED
@@ -2,20 +2,4 @@ require 'bundler'
2
2
  Bundler::GemHelper.install_tasks
3
3
 
4
4
  require 'rspec/core/rake_task'
5
- RSpec::Core::RakeTask.new :rspec
6
-
7
- def gemspec
8
- file = 'organize.gemspec'
9
- @gemspec ||= eval(File.read(file), binding, file)
10
- end
11
-
12
- desc 'Build the gem'
13
- task :gem do
14
- sh 'gem build organize.gemspec'
15
- mv "#{gemspec.full_name}.gem", 'pkg'
16
- end
17
-
18
- desc 'Install organize'
19
- task :install => :gem do
20
- sh "gem install pkg/#{gemspec.full_name}.gem"
21
- end
5
+ RSpec::Core::RakeTask.new :rspec
@@ -1,3 +1,3 @@
1
1
  module Organize
2
- VERSION = '1.1.0'
2
+ VERSION = '1.1.1'
3
3
  end
data/organize.gemspec CHANGED
@@ -1,5 +1,5 @@
1
1
  # -*- encoding: utf-8 -*-
2
- $LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
2
+ $:.push File.expand_path('../lib', __FILE__)
3
3
  require 'organize/version'
4
4
 
5
5
  Gem::Specification.new do |s|
@@ -12,8 +12,7 @@ Gem::Specification.new do |s|
12
12
  s.summary = 'Organize your Mac filesystem.'
13
13
  s.description = 'Creates directories and links to manage your Mac consistently.'
14
14
 
15
- s.required_rubygems_version = '~> 1.3.6'
16
- s.rubyforge_project = 'organize'
15
+ s.rubyforge_project = 'organize'
17
16
 
18
17
  s.add_dependency 'optitron', '~> 0.2'
19
18
 
@@ -21,7 +20,8 @@ Gem::Specification.new do |s|
21
20
  s.add_development_dependency 'rspec', '~> 2.4'
22
21
  s.add_development_dependency 'fakefs', '~> 0.2'
23
22
 
24
- s.files = `git ls-files`.split("\n")
25
- s.executables = `git ls-files`.split("\n").map { |f| f[%r{^bin/(.*)}, 1] }.compact
26
- s.require_path = 'lib'
23
+ s.files = `git ls-files`.split("\n")
24
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
25
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
26
+ s.require_paths = ['lib']
27
27
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: organize
3
3
  version: !ruby/object:Gem::Version
4
- hash: 19
4
+ hash: 17
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 1
9
- - 0
10
- version: 1.1.0
9
+ - 1
10
+ version: 1.1.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Alexander Kern
@@ -126,14 +126,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
126
126
  required_rubygems_version: !ruby/object:Gem::Requirement
127
127
  none: false
128
128
  requirements:
129
- - - ~>
129
+ - - ">="
130
130
  - !ruby/object:Gem::Version
131
- hash: 23
131
+ hash: 3
132
132
  segments:
133
- - 1
134
- - 3
135
- - 6
136
- version: 1.3.6
133
+ - 0
134
+ version: "0"
137
135
  requirements: []
138
136
 
139
137
  rubyforge_project: organize
@@ -141,5 +139,8 @@ rubygems_version: 1.4.1
141
139
  signing_key:
142
140
  specification_version: 3
143
141
  summary: Organize your Mac filesystem.
144
- test_files: []
145
-
142
+ test_files:
143
+ - spec/organize/project_spec.rb
144
+ - spec/organize/runner_spec.rb
145
+ - spec/spec_helper.rb
146
+ - spec/support/helpers.rb