Skip to content

Commit b88867d

Browse files
committed
Bump to version 0.2.5.
1 parent 52b905e commit b88867d

3 files changed

Lines changed: 14 additions & 18 deletions

File tree

Rakefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ Jeweler::Tasks.new do |gem|
2020
gem.description = %Q{Caches retrieved information to your user profile and reuses it when you query again.}
2121
gem.email = "[email protected]"
2222
gem.authors = ["Jakub Okoński"]
23+
24+
gem.files = [Dir.glob('lib/**/*'), Dir.glob('db/**/*'), 'VERSION']
25+
gem.executables = ['api-browser.rb']
26+
27+
gem.test_files = [Dir.glob('features/**/*'), Dir.glob('spec/**/*')]
2328
end
2429
Jeweler::RubygemsDotOrgTasks.new
2530

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.4
1+
0.2.5

github-api-client.gemspec

Lines changed: 8 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -5,54 +5,45 @@
55

66
Gem::Specification.new do |s|
77
s.name = %q{github-api-client}
8-
s.version = "0.2.4"
8+
s.version = "0.2.5"
99

1010
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
1111
s.authors = ["Jakub Okoński"]
12-
s.date = %q{2010-12-23}
12+
s.date = %q{2010-12-26}
13+
s.default_executable = %q{api-browser.rb}
1314
s.description = %q{Caches retrieved information to your user profile and reuses it when you query again.}
1415
s.email = %q{[email protected]}
16+
s.executables = ["api-browser.rb"]
1517
s.extra_rdoc_files = [
1618
"LICENSE.txt",
1719
"README.rdoc"
1820
]
1921
s.files = [
20-
".rspec",
21-
"Gemfile",
22-
"Gemfile.lock",
23-
"LICENSE.txt",
24-
"README.rdoc",
25-
"Rakefile",
2622
"VERSION",
27-
"api-browser.rb",
2823
"db/migrate/001_create_users.rb",
2924
"db/migrate/002_create_user_followings.rb",
3025
"db/migrate/003_create_repos.rb",
3126
"db/migrate/004_create_repo_watchings.rb",
3227
"db/migrate/005_create_organizations.rb",
3328
"db/migrate/006_create_organizations_members.rb",
34-
"features/fetching.feature",
35-
"features/step_definitions/fetching_steps.rb",
36-
"features/support/env.rb",
37-
"gemspec.old.orig",
38-
"github-api-client.gemspec",
3929
"lib/core_ext/habtm.rb",
4030
"lib/github-api-client.rb",
4131
"lib/github-api-client/base.rb",
4232
"lib/github-api-client/browser.rb",
4333
"lib/github-api-client/config.rb",
4434
"lib/github-api-client/organization.rb",
4535
"lib/github-api-client/repo.rb",
46-
"lib/github-api-client/user.rb",
47-
"spec/github-api-client_spec.rb",
48-
"spec/spec_helper.rb"
36+
"lib/github-api-client/user.rb"
4937
]
5038
s.homepage = %q{http://github.com/farnoy/github-api-client}
5139
s.licenses = ["MIT"]
5240
s.require_paths = ["lib"]
5341
s.rubygems_version = %q{1.3.7}
5442
s.summary = %q{Library for easy GitHub API browsing}
5543
s.test_files = [
44+
"features/fetching.feature",
45+
"features/step_definitions/fetching_steps.rb",
46+
"features/support/env.rb",
5647
"spec/github-api-client_spec.rb",
5748
"spec/spec_helper.rb"
5849
]

0 commit comments

Comments
 (0)