Browse Source

рефакторинг

kpmy 10 years ago
parent
commit
c4570f49aa
4 changed files with 8 additions and 8 deletions
  1. 2 2
      example/sim3.dart
  2. 3 3
      lib/sim3.dart
  3. 1 1
      lib/src/sim3_base.dart
  4. 2 2
      test/all_test.dart

+ 2 - 2
example/si3m.dart → example/sim3.dart

@@ -1,9 +1,9 @@
 // Copyright (c) 2015, <your name>. All rights reserved. Use of this source code
 // is governed by a BSD-style license that can be found in the LICENSE file.
 
-library si3m.example;
+library sim3.example;
 
-import 'package:si3m/si3m.dart';
+import 'package:sim3/sim3.dart';
 
 main() {
   var awesome = new Awesome();

+ 3 - 3
lib/si3m.dart → lib/sim3.dart

@@ -1,11 +1,11 @@
 // Copyright (c) 2015, <your name>. All rights reserved. Use of this source code
 // is governed by a BSD-style license that can be found in the LICENSE file.
 
-/// The si3m library.
+/// The sim3 library.
 ///
 /// This is an awesome library. More dartdocs go here.
-library si3m;
+library sim3;
 
 // TODO: Export any libraries intended for clients of this package.
 
-export 'src/si3m_base.dart';
+export 'src/sim3_base.dart';

+ 1 - 1
lib/src/si3m_base.dart → lib/src/sim3_base.dart

@@ -3,7 +3,7 @@
 
 // TODO: Put public facing types in this file.
 
-library si3m.base;
+library sim3.base;
 
 /// Checks if you are awesome. Spoiler: you are.
 class Awesome {

+ 2 - 2
test/all_test.dart

@@ -1,10 +1,10 @@
 // Copyright (c) 2015, <your name>. All rights reserved. Use of this source code
 // is governed by a BSD-style license that can be found in the LICENSE file.
 
-library si3m.test;
+library sim3.test;
 
 import 'package:unittest/unittest.dart';
-import 'package:si3m/si3m.dart';
+import 'package:sim3/sim3.dart';
 
 main() {
   group('A group of tests', () {