Skip to content

Commit

Permalink
update dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
gutenye committed Aug 27, 2012
1 parent eabcb56 commit 52a7562
Show file tree
Hide file tree
Showing 7 changed files with 38 additions and 30 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
*rag (1.3.1)*

* update dependencies

5 changes: 3 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
source :rubygems
source "https://rubygems.org"
#source "http://ruby.taobao.org"

gem "tagen", "~>1.1.0"
#gem "tagen", "~>1.1.0"
gem "tagen", path: "/home/guten/dev/one/tagen"
gem "pd"
gem "pa", "~>1.3.0"
gem "optimism", "~>3.2.0"
Expand Down
42 changes: 22 additions & 20 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,35 +1,37 @@
PATH
remote: /home/guten/dev/one/tagen
specs:
tagen (2.0.0)
activesupport (~> 3.2.8)
pd

GEM
remote: http://rubygems.org/
remote: https://rubygems.org/
specs:
activesupport (3.1.4)
activesupport (3.2.8)
i18n (~> 0.6)
multi_json (~> 1.0)
awesome_print (1.0.2)
diff-lcs (1.1.3)
hike (1.2.1)
i18n (0.6.0)
multi_json (1.3.5)
optimism (3.2.0)
multi_json (1.3.6)
optimism (3.2.1)
hike (~> 1.2.0)
pa (1.3.0)
pd
pd (1.0.5)
awesome_print
rspec (2.10.0)
rspec-core (~> 2.10.0)
rspec-expectations (~> 2.10.0)
rspec-mocks (~> 2.10.0)
rspec-core (2.10.0)
rspec-expectations (2.10.0)
pd (1.1.0)
rspec (2.11.0)
rspec-core (~> 2.11.0)
rspec-expectations (~> 2.11.0)
rspec-mocks (~> 2.11.0)
rspec-core (2.11.1)
rspec-expectations (2.11.2)
diff-lcs (~> 1.1.3)
rspec-mocks (2.10.1)
tagen (1.1.7)
activesupport (~> 3.1.0)
i18n
pd
rspec-mocks (2.11.2)
thor (0.15.4)
tilt (1.3.3)
watchr (0.7)
yard (0.7.5)
yard (0.8.2.1)

PLATFORMS
ruby
Expand All @@ -39,7 +41,7 @@ DEPENDENCIES
pa (~> 1.3.0)
pd
rspec
tagen (~> 1.1.0)
tagen!
thor
tilt
watchr
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Rag, a project helper [![Build Status](https://secure.travis-ci.org/GutenYe/rag.png)](http://travis-ci.org/GutenYe/rag)
# Rag, a modular project helper [![Build Status](https://secure.travis-ci.org/GutenYe/rag.png)](http://travis-ci.org/GutenYe/rag)

| Homepage: | https://github.com/GutenYe/rag |
|----------------|---------------------------------------|
Expand All @@ -12,7 +12,7 @@ a project helper, include create, develop, test and release.
Features
--------

* easy to extend.
* modularity: easy to create a plugin.
* use thor as default task DSL.
* with vim support. see resources

Expand All @@ -38,7 +38,7 @@ there are two places you can set up settings, ~/.ragrc, APP/.ragrc
author: foo
email: foo@bar.com

Extension
Extension & Plugin
---------

you can write your own task in Ragfile, APP/tasks/\*.rag
Expand Down
3 changes: 2 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
sudo = Process.pid==0 ? "" : "sudo"
require "rbconfig"
sudo = Process.pid != 0 && RbConfig::CONFIG["host_os"] !~ /mswin|mingw/ ? "sudo" : ""

desc "build a gem file"
task :release do
Expand Down
2 changes: 1 addition & 1 deletion lib/rag/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
class Rag
VERSION = "1.2.1"
VERSION = "1.3.1"
end
6 changes: 3 additions & 3 deletions rag.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ A project helper, include create, develop, test, release helper.
s.executables = %w(rag)

s.add_dependency "pd"
s.add_dependency "tagen", "~>1.1.0"
s.add_dependency "pa", "~>1.2.0"
s.add_dependency "optimism", "~>3.1.0"
s.add_dependency "tagen", "~>2.0.0"
s.add_dependency "pa", "~>1.3.0"
s.add_dependency "optimism", "~>3.2.0"
s.add_dependency "thor"
s.add_dependency "tilt"
end

0 comments on commit 52a7562

Please sign in to comment.