rda 0.3.2 → 0.3.3
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +14 -0
- data/Gemfile.lock +1 -1
- data/Rakefile +3 -16
- data/lib/rda/version.rb +1 -1
- data/rda.gemspec +1 -1
- metadata +5 -5
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,17 @@
|
|
1
|
+
**0.3.3 (Fri, Nov 9, 2012)**
|
2
|
+
|
3
|
+
* Added a rake task for running specs
|
4
|
+
* Removed rake tasks of rdoc
|
5
|
+
* Fixed the description
|
6
|
+
|
7
|
+
**0.3.2 (Thu, Nov 8, 2012)**
|
8
|
+
|
9
|
+
* Ruby 1.8.7 compatible
|
10
|
+
|
11
|
+
**0.3.1 (Tue, Nov 8, 2012)**
|
12
|
+
|
13
|
+
* Do not run as a rails plugin, it is a plain gem.
|
14
|
+
|
1
15
|
**0.3.0 (Tue, Oct 9, 2012)**
|
2
16
|
|
3
17
|
* Removed the rake tasks
|
data/Gemfile.lock
CHANGED
data/Rakefile
CHANGED
@@ -4,23 +4,10 @@ begin
|
|
4
4
|
rescue LoadError
|
5
5
|
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
|
6
6
|
end
|
7
|
-
begin
|
8
|
-
require 'rdoc/task'
|
9
|
-
rescue LoadError
|
10
|
-
require 'rdoc/rdoc'
|
11
|
-
require 'rake/rdoctask'
|
12
|
-
RDoc::Task = Rake::RDocTask
|
13
|
-
end
|
14
|
-
|
15
|
-
RDoc::Task.new(:rdoc) do |rdoc|
|
16
|
-
rdoc.rdoc_dir = 'rdoc'
|
17
|
-
rdoc.title = 'Rda'
|
18
|
-
rdoc.options << '--line-numbers'
|
19
|
-
rdoc.rdoc_files.include('README.rdoc')
|
20
|
-
rdoc.rdoc_files.include('lib/**/*.rb')
|
21
|
-
end
|
22
|
-
|
23
7
|
|
8
|
+
require 'rspec/core/rake_task'
|
9
|
+
RSpec::Core::RakeTask.new(:spec)
|
10
|
+
task :default => :spec
|
24
11
|
|
25
12
|
Bundler::GemHelper.install_tasks
|
26
13
|
|
data/lib/rda/version.rb
CHANGED
data/rda.gemspec
CHANGED
@@ -11,7 +11,7 @@ Gem::Specification.new do |s|
|
|
11
11
|
s.email = ['towerhe@gmail.com']
|
12
12
|
s.homepage = 'https://github.com/towerhe/rda'
|
13
13
|
s.summary = 'Rails Development Assist'
|
14
|
-
s.description = 'Rda(Rails Development Assist) is combined with lots of useful
|
14
|
+
s.description = 'Rda(Rails Development Assist) is combined with lots of useful commands which can help you to setup your development enviroments and tools more quickly.'
|
15
15
|
|
16
16
|
s.executables = `git ls-files -- bin/*`.split("\n").map{|f| File.basename(f)}
|
17
17
|
s.files = `git ls-files`.split("\n")
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rda
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-11-
|
12
|
+
date: 2012-11-09 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: pry
|
@@ -171,7 +171,7 @@ dependencies:
|
|
171
171
|
- - ~>
|
172
172
|
- !ruby/object:Gem::Version
|
173
173
|
version: '0.2'
|
174
|
-
description: Rda(Rails Development Assist) is combined with lots of useful
|
174
|
+
description: Rda(Rails Development Assist) is combined with lots of useful commands
|
175
175
|
which can help you to setup your development enviroments and tools more quickly.
|
176
176
|
email:
|
177
177
|
- towerhe@gmail.com
|
@@ -223,7 +223,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
223
223
|
version: '0'
|
224
224
|
segments:
|
225
225
|
- 0
|
226
|
-
hash: -
|
226
|
+
hash: -3989471672367132046
|
227
227
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
228
228
|
none: false
|
229
229
|
requirements:
|
@@ -232,7 +232,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
232
232
|
version: '0'
|
233
233
|
segments:
|
234
234
|
- 0
|
235
|
-
hash: -
|
235
|
+
hash: -3989471672367132046
|
236
236
|
requirements: []
|
237
237
|
rubyforge_project:
|
238
238
|
rubygems_version: 1.8.24
|