Skip to content
This repository has been archived by the owner on Mar 24, 2022. It is now read-only.

Commit

Permalink
Merge pull request #42 from eugie/bump_to_0.7
Browse files Browse the repository at this point in the history
Bump version to 0.7.0 since testflightapp.com is officially gone 😢
  • Loading branch information
Daniel Shusta committed Feb 27, 2015
2 parents f10b4df + de8bff5 commit 2a4e79a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ The Apple ID is a unique identifier assigned to your app in iTunes Connect. Fin
## Example thrust.yml for iOS

```yaml
thrust_version: 0.6
thrust_version: 0.7
project_name: My Great Project # do not use if building with an xcode workspace
# workspace_name: My Workspace # use if building with an xcode workspace
# path_to_xcodeproj: 'App/MyApp.xcodeproj' # use if xcodeproj is not in the same directory as this yaml file. Optional.
Expand Down
2 changes: 1 addition & 1 deletion lib/config/thrust_example.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
thrust_version: 0.6
thrust_version: 0.7
project_name: My Great Project # do not use if building with an xcode workspace
# workspace_name: My Workspace # use if building with an xcode workspace
# path_to_xcodeproj: 'App/MyApp.xcodeproj' # use if xcodeproj is not in the same directory as this yaml file. Optional.
Expand Down
2 changes: 1 addition & 1 deletion lib/thrust/config_loader.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class MissingConfigError < ConfigError ; end
class MalformedConfigError < ConfigError ; end
class InvalidVersionConfigError < ConfigError ; end

THRUST_VERSION = '0.6'
THRUST_VERSION = '0.7'

def self.load_configuration(relative_project_root, config_file, out = STDERR)
begin
Expand Down
4 changes: 2 additions & 2 deletions spec/lib/thrust/config_loader_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
context 'when the thrust configuration is valid' do
before do
File.open 'config.yml', 'w+' do |f|
f.write(YAML.dump({'thrust_version' => 0.6}))
f.write(YAML.dump({'thrust_version' => 0.7}))
end
end

it 'returns a configured AppConfig for the given configured file' do
app_config = subject
expect(app_config).to be_instance_of(Thrust::AppConfig)

expect(app_config.thrust_version).to eq('0.6')
expect(app_config.thrust_version).to eq('0.7')
expect(app_config.project_root).to eq('/relative_project_root')
expect(app_config.build_directory).to eq('/relative_project_root/build')
end
Expand Down
4 changes: 2 additions & 2 deletions thrust.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ require 'rake'

Gem::Specification.new do |s|
s.name = 'thrust'
s.version = '0.6.0'
s.version = '0.7.0'
s.summary = 'Thrust is a collection of rake tasks for iOS development and deployment'
s.description = 'Thrust provides a collection of rake tasks for iOS projects. These include tasks for running Cedar test suites and for building iOS app archives for deployment.'
s.authors = [
Expand Down Expand Up @@ -38,7 +38,7 @@ Gem::Specification.new do |s|
s.add_runtime_dependency 'colorize', '~> 0.6'
s.add_runtime_dependency 'auto_tagger', '~> 0.2'
s.add_runtime_dependency 'rake', '~> 10.1'
s.add_runtime_dependency 'nori', '~> 2.4.0'
s.add_runtime_dependency 'nori', '~> 2.4'
s.add_development_dependency 'fakefs', '~> 0.5'
s.add_development_dependency 'rspec', '3.1.0'
s.add_development_dependency 'timecop', '~> 0.7'
Expand Down

0 comments on commit 2a4e79a

Please sign in to comment.