Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 344
- Log:
Massive changeset which brings the old, ROOL customised Instiki
version up to date, but without any ROOL customisations in this
latest checked-in version (which is 0.19.1). This is deliberate,
so that it's easy to see the changes made for the ROOL version
in a subsequent changeset. The 'app/views/shared' directory is not
part of Instiki but is kept to maintain the change history with
updated ROOL customisations, some of which involve the same files
in that same directory.
- Author:
- rool
- Date:
- Sat Mar 19 19:52:13 +0000 2011
- Size:
- 3993 Bytes
1 | # -*- encoding: utf-8 -*- |
2 | |
3 | Gem::Specification.new do |s| |
4 | s.name = %q{bundler} |
5 | s.version = "1.0.0" |
6 | |
7 | s.required_rubygems_version = Gem::Requirement.new(">= 1.3.6") if s.respond_to? :required_rubygems_version= |
8 | s.authors = ["Carl Lerche", "Yehuda Katz", "Andr\303\251 Arko"] |
9 | s.date = %q{2010-08-29} |
10 | s.default_executable = %q{bundle} |
11 | s.description = %q{Bundler manages an application's dependencies through its entire life, across many machines, systematically and repeatably} |
12 | s.email = ["carlhuda@engineyard.com"] |
13 | s.executables = ["bundle"] |
14 | s.files = ["bin/bundle", "lib/bundler/capistrano.rb", "lib/bundler/cli.rb", "lib/bundler/definition.rb", "lib/bundler/dependency.rb", "lib/bundler/dsl.rb", "lib/bundler/environment.rb", "lib/bundler/gem_helper.rb", "lib/bundler/graph.rb", "lib/bundler/index.rb", "lib/bundler/installer.rb", "lib/bundler/lazy_specification.rb", "lib/bundler/lockfile_parser.rb", "lib/bundler/man/bundle", "lib/bundler/man/bundle-config", "lib/bundler/man/bundle-config.txt", "lib/bundler/man/bundle-exec", "lib/bundler/man/bundle-exec.txt", "lib/bundler/man/bundle-install", "lib/bundler/man/bundle-install.txt", "lib/bundler/man/bundle-package", "lib/bundler/man/bundle-package.txt", "lib/bundler/man/bundle-update", "lib/bundler/man/bundle-update.txt", "lib/bundler/man/bundle.txt", "lib/bundler/man/gemfile.5", "lib/bundler/man/gemfile.5.txt", "lib/bundler/remote_specification.rb", "lib/bundler/resolver.rb", "lib/bundler/rubygems_ext.rb", "lib/bundler/runtime.rb", "lib/bundler/settings.rb", "lib/bundler/setup.rb", "lib/bundler/shared_helpers.rb", "lib/bundler/source.rb", "lib/bundler/spec_set.rb", "lib/bundler/templates/Executable", "lib/bundler/templates/Gemfile", "lib/bundler/templates/newgem/Gemfile.tt", "lib/bundler/templates/newgem/gitignore.tt", "lib/bundler/templates/newgem/lib/newgem/version.rb.tt", "lib/bundler/templates/newgem/lib/newgem.rb.tt", "lib/bundler/templates/newgem/newgem.gemspec.tt", "lib/bundler/templates/newgem/Rakefile.tt", "lib/bundler/ui.rb", "lib/bundler/vendor/thor/actions/create_file.rb", "lib/bundler/vendor/thor/actions/directory.rb", "lib/bundler/vendor/thor/actions/empty_directory.rb", "lib/bundler/vendor/thor/actions/file_manipulation.rb", "lib/bundler/vendor/thor/actions/inject_into_file.rb", "lib/bundler/vendor/thor/actions.rb", "lib/bundler/vendor/thor/base.rb", "lib/bundler/vendor/thor/core_ext/file_binary_read.rb", "lib/bundler/vendor/thor/core_ext/hash_with_indifferent_access.rb", "lib/bundler/vendor/thor/core_ext/ordered_hash.rb", "lib/bundler/vendor/thor/error.rb", "lib/bundler/vendor/thor/invocation.rb", "lib/bundler/vendor/thor/parser/argument.rb", "lib/bundler/vendor/thor/parser/arguments.rb", "lib/bundler/vendor/thor/parser/option.rb", "lib/bundler/vendor/thor/parser/options.rb", "lib/bundler/vendor/thor/parser.rb", "lib/bundler/vendor/thor/shell/basic.rb", "lib/bundler/vendor/thor/shell/color.rb", "lib/bundler/vendor/thor/shell/html.rb", "lib/bundler/vendor/thor/shell.rb", "lib/bundler/vendor/thor/task.rb", "lib/bundler/vendor/thor/util.rb", "lib/bundler/vendor/thor/version.rb", "lib/bundler/vendor/thor.rb", "lib/bundler/version.rb", "lib/bundler.rb", "LICENSE", "README.md", "ROADMAP.md", "CHANGELOG.md", "ISSUES.md"] |
15 | s.homepage = %q{http://gembundler.com} |
16 | s.require_paths = ["lib"] |
17 | s.rubyforge_project = %q{bundler} |
18 | s.rubygems_version = %q{1.3.7} |
19 | s.summary = %q{The best way to manage your application's dependencies} |
20 | |
21 | if s.respond_to? :specification_version then |
22 | current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION |
23 | s.specification_version = 3 |
24 | |
25 | if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then |
26 | s.add_development_dependency(%q<ronn>, [">= 0"]) |
27 | s.add_development_dependency(%q<rspec>, [">= 0"]) |
28 | else |
29 | s.add_dependency(%q<ronn>, [">= 0"]) |
30 | s.add_dependency(%q<rspec>, [">= 0"]) |
31 | end |
32 | else |
33 | s.add_dependency(%q<ronn>, [">= 0"]) |
34 | s.add_dependency(%q<rspec>, [">= 0"]) |
35 | end |
36 | end |