Skip to content

Commit

Permalink
Changed PodSpec
Browse files Browse the repository at this point in the history
  • Loading branch information
Mario Hahn committed Nov 27, 2013
1 parent b27619a commit c53a684
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 9 deletions.
20 changes: 13 additions & 7 deletions MHDismissModalView.podspec
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
Pod::Spec.new do |s|
s.name = 'MHDismissModalView'
s.version = '1.0'
s.license = 'MIT'
s.platform = :ios, '7.0'

s.summary = 'automatically sets the background with a blur effect and you can dismiss all modal views with a gesture'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.homepage = 'https://github.com/mariohahn/MHDismissModalView'
s.author = { 'Mario Hahn' => 'https://twitter.com/mario_hahn' }
s.authors = 'Mario Hahn' => '[email protected]'
s.summary = 'automatically sets the background with a blur effect and you can dismiss all modal views with a gesture''
# Source Info
s.platform = :ios, '7.0'
s.source = :git => 'https://github.com/mariohahn/MHDismissModalView.git', :tag => '1.1'
s.source_files = ['MHDismissModalView/MHDismiss/']
s.source = { :git => 'https://github.com/mariohahn/MHDismissModalView.git', :tag => 'v1.0' }

s.requires_arc = true
end

# Pod Dependencies
s.dependencies = pod "MHDismissModalView"

end
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ @implementation ExampleModalViewWithoutScrollViewController
- (void)viewDidLoad
{
[super viewDidLoad];
self.title = @"Modal view without a scrollView";


self.title = @"Modal view without a scrollView";

self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc]initWithTitle:@"present" style:UIBarButtonItemStyleBordered target:self action:@selector(presentAgain)];
// [self.navigationController installMHDismissModalViewWithOptions:[[MHDismissModalViewOptions alloc] initWithScrollView:nil
// theme:MHModalThemeWhite]];
Expand Down

0 comments on commit c53a684

Please sign in to comment.